Content Views – Post Grid & List for WordPress - Version 1.7.0

Version Description

  • Improvement: Completely avoid layout issues or style conflict with theme
  • Bug fixed: Collapsible layout does not animate smoothly
  • Improvement: Disable annoy scroll when select content type
  • Tweak: Update text, description of some settings
  • Tweak: Add filter 'post_types_taxonomies', 'view_executed', filter to hide output if No post found
Download this release

Release Info

Developer PT Guy
Plugin Icon 128x128 Content Views – Post Grid & List for WordPress
Version 1.7.0
Comparing to
See all releases

Code changes from version 1.6.8.4 to 1.7.0

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: post, display, recent, posts, recent post, page, pages, query, queries, search, display, show, grid, column, layout, author, blog, categories, category, comment, content, custom, editor, filter, Formatting, image, list, meta, plugin, responsive, shortcode, excerpt, title, tag, term, Taxonomy, thumbnail, pagination, date, scrollable, slider, collapsible
5
  Requires at least: 3.3
6
  Tested up to: 4.3.1
7
- Stable tag: 1.6.8.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -121,10 +121,10 @@ You will be forwarded to editing page of View.
121
 
122
  You can create Unlimited Views, in Unlimited websites
123
 
124
- = How can I add View to homepage? =
125
 
126
- If you are using a static page as homepage, you should add View shortcode to editor of that page.
127
- If you are using a dynamic page (you created a front page template, such as front-page.php), you should paste this code `<?php echo do_shortcode('[pt_view id="VIEW_ID"]'); ?>` to appropriate line in that file.
128
 
129
  = session_start() error =
130
 
@@ -147,18 +147,6 @@ function my_session_start() {
147
  }
148
  `
149
 
150
- = [BUG] When I use Cache plugin (W3TC, WP-Super-Cache...), the grid columns does not work. How to fix it? =
151
-
152
- Please add this code to file **functions.php** of your theme
153
- `
154
- // CV plugin - Fix Bootstrap undefined error
155
- add_filter( 'pt_cv_move_bootstrap', 'my_move_bootstrap' );
156
- function my_move_bootstrap( $args ) {
157
- $args = 0;
158
- return $args;
159
- }
160
- `
161
-
162
 
163
 
164
  == Screenshots ==
@@ -174,6 +162,13 @@ function my_move_bootstrap( $args ) {
174
 
175
  == Changelog ==
176
 
 
 
 
 
 
 
 
177
  = 1.6.8.4 =
178
  * Bug fixed: Solve problems with category/tag name in non-latin languages
179
  * Improvement: Use cleaner loading icon
4
  Tags: post, display, recent, posts, recent post, page, pages, query, queries, search, display, show, grid, column, layout, author, blog, categories, category, comment, content, custom, editor, filter, Formatting, image, list, meta, plugin, responsive, shortcode, excerpt, title, tag, term, Taxonomy, thumbnail, pagination, date, scrollable, slider, collapsible
5
  Requires at least: 3.3
6
  Tested up to: 4.3.1
7
+ Stable tag: 1.7.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
121
 
122
  You can create Unlimited Views, in Unlimited websites
123
 
124
+ = How can I use View for my Front page (home page)? =
125
 
126
+ If you are assigning a static page for your Front page, you should add View shortcode to editor of that page.
127
+ Otherwise, if you are choosing "Your latest posts" for Front page, you should add this code `<?php echo do_shortcode('[pt_view id="VIEW_ID"]'); ?>` to one of these files: front-page.php, home.php or index.php.
128
 
129
  = session_start() error =
130
 
147
  }
148
  `
149
 
 
 
 
 
 
 
 
 
 
 
 
 
150
 
151
 
152
  == Screenshots ==
162
 
163
  == Changelog ==
164
 
165
+ = 1.7.0 =
166
+ * Improvement: Completely avoid layout issues or style conflict with theme
167
+ * Bug fixed: Collapsible layout does not animate smoothly
168
+ * Improvement: Disable annoy scroll when select content type
169
+ * Tweak: Update text, description of some settings
170
+ * Tweak: Add filter 'post_types_taxonomies', 'view_executed', filter to hide output if No post found
171
+
172
  = 1.6.8.4 =
173
  * Bug fixed: Solve problems with category/tag name in non-latin languages
174
  * Improvement: Use cleaner loading icon
admin/assets/js/admin.js CHANGED
@@ -208,18 +208,18 @@
208
  * @param {type} id_prefix
209
  * @returns {undefined}
210
  */
211
- toggle_group: function ( selector, id_prefix ) {
212
  var $self = this;
213
  // Run on page load
214
  $( selector ).each( function () {
215
- $self._toggle_each_group( $( this ), id_prefix );
216
  } );
217
  // Run on change
218
  $( selector ).each( function () {
219
  $( this ).change( function () {
220
  var this_ = $( this );
221
  setTimeout( function () {
222
- $self._toggle_each_group( this_, id_prefix );
223
  }, 200 );
224
  } );
225
  } );
@@ -231,7 +231,7 @@
231
  * @param {type} id_prefix
232
  * @returns {undefined}
233
  */
234
- _toggle_each_group: function ( $this, id_prefix ) {
235
  var $self = this;
236
  var _prefix = $self.options._prefix;
237
  if ( $this.is( 'select' ) || ( ( $this.is( ':checkbox' ) || $this.is( ':radio' ) ) && $this.is( ':checked' ) ) ) {
@@ -254,7 +254,7 @@
254
  $( toggle_id ).find( '.panel-body' ).show();
255
 
256
  // Scroll to
257
- if ( !$self.options.onload && !$( toggle_id ).hasClass( _prefix + 'no-animation' ) && $( toggle_id ).offset() ) {
258
  $( 'html, body' ).animate( {
259
  scrollTop: $( toggle_id ).offset().top - 40
260
  }, $self.options.scroll_time );
208
  * @param {type} id_prefix
209
  * @returns {undefined}
210
  */
211
+ toggle_group: function ( selector, id_prefix, toggle ) {
212
  var $self = this;
213
  // Run on page load
214
  $( selector ).each( function () {
215
+ $self._toggle_each_group( $( this ), id_prefix, toggle );
216
  } );
217
  // Run on change
218
  $( selector ).each( function () {
219
  $( this ).change( function () {
220
  var this_ = $( this );
221
  setTimeout( function () {
222
+ $self._toggle_each_group( this_, id_prefix, toggle );
223
  }, 200 );
224
  } );
225
  } );
231
  * @param {type} id_prefix
232
  * @returns {undefined}
233
  */
234
+ _toggle_each_group: function ( $this, id_prefix, toggle ) {
235
  var $self = this;
236
  var _prefix = $self.options._prefix;
237
  if ( $this.is( 'select' ) || ( ( $this.is( ':checkbox' ) || $this.is( ':radio' ) ) && $this.is( ':checked' ) ) ) {
254
  $( toggle_id ).find( '.panel-body' ).show();
255
 
256
  // Scroll to
257
+ if ( toggle !== false && !$self.options.onload && $( toggle_id ).offset() ) {
258
  $( 'html, body' ).animate( {
259
  scrollTop: $( toggle_id ).offset().top - 40
260
  }, $self.options.scroll_time );
admin/content-views-admin.php CHANGED
@@ -203,7 +203,7 @@ class PT_Content_Views_Admin {
203
  // Bootstrap for Admin
204
  PT_CV_Asset::enqueue(
205
  'bootstrap-admin', 'style', array(
206
- 'src' => plugins_url( 'assets/bootstrap/css/bootstrap.admin.css', PT_CV_FILE ),
207
  )
208
  );
209
 
203
  // Bootstrap for Admin
204
  PT_CV_Asset::enqueue(
205
  'bootstrap-admin', 'style', array(
206
+ 'src' => plugins_url( 'assets/bootstrap/css/bootstrap.full.css', PT_CV_FILE ),
207
  )
208
  );
209
 
admin/includes/options.php CHANGED
@@ -57,8 +57,7 @@ if ( !class_exists( 'PT_Options_Framework' ) ) {
57
  * @param string $random_id Random string
58
  * @param array $dependence_ Global dependence array
59
  */
60
- public static function _dependence_assign( $dependence, $random_id,
61
- &$dependence_ ) {
62
  $dependence_[ $dependence[ 0 ] ][] = array( $random_id, $dependence[ 1 ], isset( $dependence[ 2 ] ) ? $dependence[ 2 ] : '=' );
63
  }
64
 
@@ -328,8 +327,7 @@ if ( !class_exists( 'PT_Options_Framework' ) ) {
328
  *
329
  * @return string
330
  */
331
- static function sub_panel_group( $key, $param_group, $data, $parent_id,
332
- $settings = array() ) {
333
 
334
  // Content for body
335
  $content = self::do_settings( $param_group, $data );
@@ -338,7 +336,6 @@ if ( !class_exists( 'PT_Options_Framework' ) ) {
338
  $class .= ( isset( $settings[ 'show_all' ] ) ? '' : ' hidden' );
339
  $class .= ( isset( $settings[ 'show_only_one' ] ) ? ' ' . PT_CV_PREFIX . 'only-one' : '' );
340
  $class .= ( isset( $settings[ 'no_panel' ] ) ? ' ' . PT_CV_PREFIX . 'no-panel' : '' );
341
- $class .= ( isset( $settings[ 'no_animation' ] ) ? ' ' . PT_CV_PREFIX . 'no-animation' : '' );
342
  // Id for wrapper
343
  $id = PT_CV_Html::html_group_id( $key );
344
 
@@ -379,10 +376,10 @@ if ( !class_exists( 'PT_Options_Framework' ) ) {
379
  $pt_cv_admin_js.toggle_group( '.' + _prefix + 'advanced-settings-item', group_prefix );
380
  // Toggle Panel group of 'Terms' (in "Taxonomy Settings")
381
  $pt_cv_admin_js.toggle_group( '.' + _prefix + 'taxonomy-item', group_prefix );
382
- // Toggle Panel group of 'Advanced Order by'
383
- $pt_cv_admin_js.toggle_group( '[name="' + _prefix + 'content-type' + '"]', group_prefix );
384
  // Toggle Panel group of 'View type settings'
385
- $pt_cv_admin_js.toggle_group( '[name="' + _prefix + 'view-type' + '"]', group_prefix );
386
 
387
  // Toggle dependence
388
  $pt_cv_admin_js.dependence_do_all( '<?php echo balanceTags( $toggle_data_js ); ?>' );
57
  * @param string $random_id Random string
58
  * @param array $dependence_ Global dependence array
59
  */
60
+ public static function _dependence_assign( $dependence, $random_id, &$dependence_ ) {
 
61
  $dependence_[ $dependence[ 0 ] ][] = array( $random_id, $dependence[ 1 ], isset( $dependence[ 2 ] ) ? $dependence[ 2 ] : '=' );
62
  }
63
 
327
  *
328
  * @return string
329
  */
330
+ static function sub_panel_group( $key, $param_group, $data, $parent_id, $settings = array() ) {
 
331
 
332
  // Content for body
333
  $content = self::do_settings( $param_group, $data );
336
  $class .= ( isset( $settings[ 'show_all' ] ) ? '' : ' hidden' );
337
  $class .= ( isset( $settings[ 'show_only_one' ] ) ? ' ' . PT_CV_PREFIX . 'only-one' : '' );
338
  $class .= ( isset( $settings[ 'no_panel' ] ) ? ' ' . PT_CV_PREFIX . 'no-panel' : '' );
 
339
  // Id for wrapper
340
  $id = PT_CV_Html::html_group_id( $key );
341
 
376
  $pt_cv_admin_js.toggle_group( '.' + _prefix + 'advanced-settings-item', group_prefix );
377
  // Toggle Panel group of 'Terms' (in "Taxonomy Settings")
378
  $pt_cv_admin_js.toggle_group( '.' + _prefix + 'taxonomy-item', group_prefix );
379
+ // Toggle Panel group of 'Content type'
380
+ $pt_cv_admin_js.toggle_group( '[name="' + _prefix + 'content-type' + '"]', group_prefix, false );
381
  // Toggle Panel group of 'View type settings'
382
+ $pt_cv_admin_js.toggle_group( '[name="' + _prefix + 'view-type' + '"]', group_prefix, false );
383
 
384
  // Toggle dependence
385
  $pt_cv_admin_js.dependence_do_all( '<?php echo balanceTags( $toggle_data_js ); ?>' );
admin/views/view.php CHANGED
@@ -189,7 +189,7 @@ PT_CV_Functions::view_submit();
189
  'type' => 'text',
190
  'name' => 'post__in',
191
  'std' => '',
192
- 'desc' => __( 'List of post ids to retrieve (comma-separated values, e.g. 1,2,3).<br>A post is displayed only if its ID is equal to any of the values IN this list', PT_CV_TEXTDOMAIN ),
193
  ),
194
  ),
195
  ),
@@ -491,7 +491,6 @@ PT_CV_Functions::view_submit();
491
  'type' => 'panel_group',
492
  'settings' => array(
493
  'no_panel' => 1,
494
- 'no_animation' => 1,
495
  'show_only_one' => 1,
496
  ),
497
  'params' => PT_CV_Values::view_type_settings(),
189
  'type' => 'text',
190
  'name' => 'post__in',
191
  'std' => '',
192
+ 'desc' => __( 'List of post ids to include (comma-separated values, e.g. 1,2,3)', PT_CV_TEXTDOMAIN ),
193
  ),
194
  ),
195
  ),
491
  'type' => 'panel_group',
492
  'settings' => array(
493
  'no_panel' => 1,
 
494
  'show_only_one' => 1,
495
  ),
496
  'params' => PT_CV_Values::view_type_settings(),
assets/bootstrap/css/bootstrap.custom.css ADDED
@@ -0,0 +1,3389 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Bootstrap v3.3.5 (http://getbootstrap.com)
3
+ * Copyright 2011-2015 Twitter, Inc.
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */
6
+ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
7
+ html {
8
+ font-family: sans-serif;
9
+ -ms-text-size-adjust: 100%;
10
+ -webkit-text-size-adjust: 100%;
11
+ }
12
+ body {
13
+ margin: 0;
14
+ }
15
+ .pt-cv-wrapper article,
16
+ .pt-cv-wrapper aside,
17
+ .pt-cv-wrapper details,
18
+ .pt-cv-wrapper figcaption,
19
+ .pt-cv-wrapper figure,
20
+ .pt-cv-wrapper footer,
21
+ .pt-cv-wrapper header,
22
+ .pt-cv-wrapper hgroup,
23
+ .pt-cv-wrapper main,
24
+ .pt-cv-wrapper menu,
25
+ .pt-cv-wrapper nav,
26
+ .pt-cv-wrapper section,
27
+ .pt-cv-wrapper summary {
28
+ display: block;
29
+ }
30
+ .pt-cv-wrapper audio,
31
+ .pt-cv-wrapper canvas,
32
+ .pt-cv-wrapper progress,
33
+ .pt-cv-wrapper video {
34
+ display: inline-block;
35
+ vertical-align: baseline;
36
+ }
37
+ .pt-cv-wrapper audio:not([controls]) {
38
+ display: none;
39
+ height: 0;
40
+ }
41
+ .pt-cv-wrapper [hidden],
42
+ .pt-cv-wrapper template {
43
+ display: none;
44
+ }
45
+ .pt-cv-wrapper a {
46
+ background-color: transparent;
47
+ }
48
+ .pt-cv-wrapper a:active,
49
+ .pt-cv-wrapper a:hover {
50
+ outline: 0;
51
+ }
52
+ .pt-cv-wrapper abbr[title] {
53
+ border-bottom: 1px dotted;
54
+ }
55
+ .pt-cv-wrapper b,
56
+ .pt-cv-wrapper strong {
57
+ font-weight: bold;
58
+ }
59
+ .pt-cv-wrapper dfn {
60
+ font-style: italic;
61
+ }
62
+ .pt-cv-wrapper h1 {
63
+ font-size: 2em;
64
+ margin: 0.67em 0;
65
+ }
66
+ .pt-cv-wrapper mark {
67
+ background: #ff0;
68
+ color: #000;
69
+ }
70
+ .pt-cv-wrapper small {
71
+ font-size: 80%;
72
+ }
73
+ .pt-cv-wrapper sub,
74
+ .pt-cv-wrapper sup {
75
+ font-size: 75%;
76
+ line-height: 0;
77
+ position: relative;
78
+ vertical-align: baseline;
79
+ }
80
+ .pt-cv-wrapper sup {
81
+ top: -0.5em;
82
+ }
83
+ .pt-cv-wrapper sub {
84
+ bottom: -0.25em;
85
+ }
86
+ .pt-cv-wrapper img {
87
+ border: 0;
88
+ }
89
+ .pt-cv-wrapper svg:not(:root) {
90
+ overflow: hidden;
91
+ }
92
+ .pt-cv-wrapper figure {
93
+ margin: 1em 40px;
94
+ }
95
+ .pt-cv-wrapper hr {
96
+ -webkit-box-sizing: content-box;
97
+ -moz-box-sizing: content-box;
98
+ box-sizing: content-box;
99
+ height: 0;
100
+ }
101
+ .pt-cv-wrapper pre {
102
+ overflow: auto;
103
+ }
104
+ .pt-cv-wrapper code,
105
+ .pt-cv-wrapper kbd,
106
+ .pt-cv-wrapper pre,
107
+ .pt-cv-wrapper samp {
108
+ font-family: monospace, monospace;
109
+ font-size: 1em;
110
+ }
111
+ .pt-cv-wrapper button,
112
+ .pt-cv-wrapper input,
113
+ .pt-cv-wrapper optgroup,
114
+ .pt-cv-wrapper select,
115
+ .pt-cv-wrapper textarea {
116
+ color: inherit;
117
+ font: inherit;
118
+ margin: 0;
119
+ }
120
+ .pt-cv-wrapper button {
121
+ overflow: visible;
122
+ }
123
+ .pt-cv-wrapper button,
124
+ .pt-cv-wrapper select {
125
+ text-transform: none;
126
+ }
127
+ .pt-cv-wrapper button,
128
+ .pt-cv-wrapper html input[type="button"],
129
+ .pt-cv-wrapper input[type="reset"],
130
+ .pt-cv-wrapper input[type="submit"] {
131
+ -webkit-appearance: button;
132
+ cursor: pointer;
133
+ }
134
+ .pt-cv-wrapper button[disabled],
135
+ .pt-cv-wrapper html input[disabled] {
136
+ cursor: default;
137
+ }
138
+ .pt-cv-wrapper button::-moz-focus-inner,
139
+ .pt-cv-wrapper input::-moz-focus-inner {
140
+ border: 0;
141
+ padding: 0;
142
+ }
143
+ .pt-cv-wrapper input {
144
+ line-height: normal;
145
+ }
146
+ .pt-cv-wrapper input[type="checkbox"],
147
+ .pt-cv-wrapper input[type="radio"] {
148
+ -webkit-box-sizing: border-box;
149
+ -moz-box-sizing: border-box;
150
+ box-sizing: border-box;
151
+ padding: 0;
152
+ }
153
+ .pt-cv-wrapper input[type="number"]::-webkit-inner-spin-button,
154
+ .pt-cv-wrapper input[type="number"]::-webkit-outer-spin-button {
155
+ height: auto;
156
+ }
157
+ .pt-cv-wrapper input[type="search"] {
158
+ -webkit-appearance: textfield;
159
+ -webkit-box-sizing: content-box;
160
+ -moz-box-sizing: content-box;
161
+ box-sizing: content-box;
162
+ }
163
+ .pt-cv-wrapper input[type="search"]::-webkit-search-cancel-button,
164
+ .pt-cv-wrapper input[type="search"]::-webkit-search-decoration {
165
+ -webkit-appearance: none;
166
+ }
167
+ .pt-cv-wrapper fieldset {
168
+ border: 1px solid #c0c0c0;
169
+ margin: 0 2px;
170
+ padding: 0.35em 0.625em 0.75em;
171
+ }
172
+ .pt-cv-wrapper legend {
173
+ border: 0;
174
+ padding: 0;
175
+ }
176
+ .pt-cv-wrapper textarea {
177
+ overflow: auto;
178
+ }
179
+ .pt-cv-wrapper optgroup {
180
+ font-weight: bold;
181
+ }
182
+ .pt-cv-wrapper table {
183
+ border-collapse: collapse;
184
+ border-spacing: 0;
185
+ }
186
+ .pt-cv-wrapper td,
187
+ .pt-cv-wrapper th {
188
+ padding: 0;
189
+ }
190
+ @media print {
191
+ .pt-cv-wrapper *,
192
+ .pt-cv-wrapper *:before,
193
+ .pt-cv-wrapper *:after {
194
+ background: transparent !important;
195
+ color: #000 !important;
196
+ -webkit-box-shadow: none !important;
197
+ box-shadow: none !important;
198
+ text-shadow: none !important;
199
+ }
200
+ .pt-cv-wrapper a,
201
+ .pt-cv-wrapper a:visited {
202
+ text-decoration: underline;
203
+ }
204
+ .pt-cv-wrapper a[href]:after {
205
+ content: " (" attr(href) ")";
206
+ }
207
+ .pt-cv-wrapper abbr[title]:after {
208
+ content: " (" attr(title) ")";
209
+ }
210
+ .pt-cv-wrapper a[href^="#"]:after,
211
+ .pt-cv-wrapper a[href^="javascript:"]:after {
212
+ content: "";
213
+ }
214
+ .pt-cv-wrapper pre,
215
+ .pt-cv-wrapper blockquote {
216
+ border: 1px solid #999;
217
+ page-break-inside: avoid;
218
+ }
219
+ .pt-cv-wrapper thead {
220
+ display: table-header-group;
221
+ }
222
+ .pt-cv-wrapper tr,
223
+ .pt-cv-wrapper img {
224
+ page-break-inside: avoid;
225
+ }
226
+ .pt-cv-wrapper img {
227
+ max-width: 100% !important;
228
+ }
229
+ .pt-cv-wrapper p,
230
+ .pt-cv-wrapper h2,
231
+ .pt-cv-wrapper h3 {
232
+ orphans: 3;
233
+ widows: 3;
234
+ }
235
+ .pt-cv-wrapper h2,
236
+ .pt-cv-wrapper h3 {
237
+ page-break-after: avoid;
238
+ }
239
+ .pt-cv-wrapper .navbar {
240
+ display: none;
241
+ }
242
+ .pt-cv-wrapper .btn > .caret,
243
+ .pt-cv-wrapper .dropup > .btn > .caret {
244
+ border-top-color: #000 !important;
245
+ }
246
+ .pt-cv-wrapper .label {
247
+ border: 1px solid #000;
248
+ }
249
+ .pt-cv-wrapper .table {
250
+ border-collapse: collapse !important;
251
+ }
252
+ .pt-cv-wrapper .table td,
253
+ .pt-cv-wrapper .table th {
254
+ background-color: #fff !important;
255
+ }
256
+ .pt-cv-wrapper .table-bordered th,
257
+ .pt-cv-wrapper .table-bordered td {
258
+ border: 1px solid #ddd !important;
259
+ }
260
+ }
261
+ @font-face {
262
+ font-family: 'Glyphicons Halflings';
263
+ src: url('../fonts/glyphicons-halflings-regular.eot');
264
+ src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
265
+ }
266
+ .pt-cv-wrapper .glyphicon {
267
+ position: relative;
268
+ top: 1px;
269
+ display: inline-block;
270
+ font-family: 'Glyphicons Halflings';
271
+ font-style: normal;
272
+ font-weight: normal;
273
+ line-height: 1;
274
+ -webkit-font-smoothing: antialiased;
275
+ -moz-osx-font-smoothing: grayscale;
276
+ }
277
+ .pt-cv-wrapper .glyphicon-asterisk:before {
278
+ content: "\2a";
279
+ }
280
+ .pt-cv-wrapper .glyphicon-plus:before {
281
+ content: "\2b";
282
+ }
283
+ .pt-cv-wrapper .glyphicon-euro:before,
284
+ .pt-cv-wrapper .glyphicon-eur:before {
285
+ content: "\20ac";
286
+ }
287
+ .pt-cv-wrapper .glyphicon-minus:before {
288
+ content: "\2212";
289
+ }
290
+ .pt-cv-wrapper .glyphicon-cloud:before {
291
+ content: "\2601";
292
+ }
293
+ .pt-cv-wrapper .glyphicon-envelope:before {
294
+ content: "\2709";
295
+ }
296
+ .pt-cv-wrapper .glyphicon-pencil:before {
297
+ content: "\270f";
298
+ }
299
+ .pt-cv-wrapper .glyphicon-glass:before {
300
+ content: "\e001";
301
+ }
302
+ .pt-cv-wrapper .glyphicon-music:before {
303
+ content: "\e002";
304
+ }
305
+ .pt-cv-wrapper .glyphicon-search:before {
306
+ content: "\e003";
307
+ }
308
+ .pt-cv-wrapper .glyphicon-heart:before {
309
+ content: "\e005";
310
+ }
311
+ .pt-cv-wrapper .glyphicon-star:before {
312
+ content: "\e006";
313
+ }
314
+ .pt-cv-wrapper .glyphicon-star-empty:before {
315
+ content: "\e007";
316
+ }
317
+ .pt-cv-wrapper .glyphicon-user:before {
318
+ content: "\e008";
319
+ }
320
+ .pt-cv-wrapper .glyphicon-film:before {
321
+ content: "\e009";
322
+ }
323
+ .pt-cv-wrapper .glyphicon-th-large:before {
324
+ content: "\e010";
325
+ }
326
+ .pt-cv-wrapper .glyphicon-th:before {
327
+ content: "\e011";
328
+ }
329
+ .pt-cv-wrapper .glyphicon-th-list:before {
330
+ content: "\e012";
331
+ }
332
+ .pt-cv-wrapper .glyphicon-ok:before {
333
+ content: "\e013";
334
+ }
335
+ .pt-cv-wrapper .glyphicon-remove:before {
336
+ content: "\e014";
337
+ }
338
+ .pt-cv-wrapper .glyphicon-zoom-in:before {
339
+ content: "\e015";
340
+ }
341
+ .pt-cv-wrapper .glyphicon-zoom-out:before {
342
+ content: "\e016";
343
+ }
344
+ .pt-cv-wrapper .glyphicon-off:before {
345
+ content: "\e017";
346
+ }
347
+ .pt-cv-wrapper .glyphicon-signal:before {
348
+ content: "\e018";
349
+ }
350
+ .pt-cv-wrapper .glyphicon-cog:before {
351
+ content: "\e019";
352
+ }
353
+ .pt-cv-wrapper .glyphicon-trash:before {
354
+ content: "\e020";
355
+ }
356
+ .pt-cv-wrapper .glyphicon-home:before {
357
+ content: "\e021";
358
+ }
359
+ .pt-cv-wrapper .glyphicon-file:before {
360
+ content: "\e022";
361
+ }
362
+ .pt-cv-wrapper .glyphicon-time:before {
363
+ content: "\e023";
364
+ }
365
+ .pt-cv-wrapper .glyphicon-road:before {
366
+ content: "\e024";
367
+ }
368
+ .pt-cv-wrapper .glyphicon-download-alt:before {
369
+ content: "\e025";
370
+ }
371
+ .pt-cv-wrapper .glyphicon-download:before {
372
+ content: "\e026";
373
+ }
374
+ .pt-cv-wrapper .glyphicon-upload:before {
375
+ content: "\e027";
376
+ }
377
+ .pt-cv-wrapper .glyphicon-inbox:before {
378
+ content: "\e028";
379
+ }
380
+ .pt-cv-wrapper .glyphicon-play-circle:before {
381
+ content: "\e029";
382
+ }
383
+ .pt-cv-wrapper .glyphicon-repeat:before {
384
+ content: "\e030";
385
+ }
386
+ .pt-cv-wrapper .glyphicon-refresh:before {
387
+ content: "\e031";
388
+ }
389
+ .pt-cv-wrapper .glyphicon-list-alt:before {
390
+ content: "\e032";
391
+ }
392
+ .pt-cv-wrapper .glyphicon-lock:before {
393
+ content: "\e033";
394
+ }
395
+ .pt-cv-wrapper .glyphicon-flag:before {
396
+ content: "\e034";
397
+ }
398
+ .pt-cv-wrapper .glyphicon-headphones:before {
399
+ content: "\e035";
400
+ }
401
+ .pt-cv-wrapper .glyphicon-volume-off:before {
402
+ content: "\e036";
403
+ }
404
+ .pt-cv-wrapper .glyphicon-volume-down:before {
405
+ content: "\e037";
406
+ }
407
+ .pt-cv-wrapper .glyphicon-volume-up:before {
408
+ content: "\e038";
409
+ }
410
+ .pt-cv-wrapper .glyphicon-qrcode:before {
411
+ content: "\e039";
412
+ }
413
+ .pt-cv-wrapper .glyphicon-barcode:before {
414
+ content: "\e040";
415
+ }
416
+ .pt-cv-wrapper .glyphicon-tag:before {
417
+ content: "\e041";
418
+ }
419
+ .pt-cv-wrapper .glyphicon-tags:before {
420
+ content: "\e042";
421
+ }
422
+ .pt-cv-wrapper .glyphicon-book:before {
423
+ content: "\e043";
424
+ }
425
+ .pt-cv-wrapper .glyphicon-bookmark:before {
426
+ content: "\e044";
427
+ }
428
+ .pt-cv-wrapper .glyphicon-print:before {
429
+ content: "\e045";
430
+ }
431
+ .pt-cv-wrapper .glyphicon-camera:before {
432
+ content: "\e046";
433
+ }
434
+ .pt-cv-wrapper .glyphicon-font:before {
435
+ content: "\e047";
436
+ }
437
+ .pt-cv-wrapper .glyphicon-bold:before {
438
+ content: "\e048";
439
+ }
440
+ .pt-cv-wrapper .glyphicon-italic:before {
441
+ content: "\e049";
442
+ }
443
+ .pt-cv-wrapper .glyphicon-text-height:before {
444
+ content: "\e050";
445
+ }
446
+ .pt-cv-wrapper .glyphicon-text-width:before {
447
+ content: "\e051";
448
+ }
449
+ .pt-cv-wrapper .glyphicon-align-left:before {
450
+ content: "\e052";
451
+ }
452
+ .pt-cv-wrapper .glyphicon-align-center:before {
453
+ content: "\e053";
454
+ }
455
+ .pt-cv-wrapper .glyphicon-align-right:before {
456
+ content: "\e054";
457
+ }
458
+ .pt-cv-wrapper .glyphicon-align-justify:before {
459
+ content: "\e055";
460
+ }
461
+ .pt-cv-wrapper .glyphicon-list:before {
462
+ content: "\e056";
463
+ }
464
+ .pt-cv-wrapper .glyphicon-indent-left:before {
465
+ content: "\e057";
466
+ }
467
+ .pt-cv-wrapper .glyphicon-indent-right:before {
468
+ content: "\e058";
469
+ }
470
+ .pt-cv-wrapper .glyphicon-facetime-video:before {
471
+ content: "\e059";
472
+ }
473
+ .pt-cv-wrapper .glyphicon-picture:before {
474
+ content: "\e060";
475
+ }
476
+ .pt-cv-wrapper .glyphicon-map-marker:before {
477
+ content: "\e062";
478
+ }
479
+ .pt-cv-wrapper .glyphicon-adjust:before {
480
+ content: "\e063";
481
+ }
482
+ .pt-cv-wrapper .glyphicon-tint:before {
483
+ content: "\e064";
484
+ }
485
+ .pt-cv-wrapper .glyphicon-edit:before {
486
+ content: "\e065";
487
+ }
488
+ .pt-cv-wrapper .glyphicon-share:before {
489
+ content: "\e066";
490
+ }
491
+ .pt-cv-wrapper .glyphicon-check:before {
492
+ content: "\e067";
493
+ }
494
+ .pt-cv-wrapper .glyphicon-move:before {
495
+ content: "\e068";
496
+ }
497
+ .pt-cv-wrapper .glyphicon-step-backward:before {
498
+ content: "\e069";
499
+ }
500
+ .pt-cv-wrapper .glyphicon-fast-backward:before {
501
+ content: "\e070";
502
+ }
503
+ .pt-cv-wrapper .glyphicon-backward:before {
504
+ content: "\e071";
505
+ }
506
+ .pt-cv-wrapper .glyphicon-play:before {
507
+ content: "\e072";
508
+ }
509
+ .pt-cv-wrapper .glyphicon-pause:before {
510
+ content: "\e073";
511
+ }
512
+ .pt-cv-wrapper .glyphicon-stop:before {
513
+ content: "\e074";
514
+ }
515
+ .pt-cv-wrapper .glyphicon-forward:before {
516
+ content: "\e075";
517
+ }
518
+ .pt-cv-wrapper .glyphicon-fast-forward:before {
519
+ content: "\e076";
520
+ }
521
+ .pt-cv-wrapper .glyphicon-step-forward:before {
522
+ content: "\e077";
523
+ }
524
+ .pt-cv-wrapper .glyphicon-eject:before {
525
+ content: "\e078";
526
+ }
527
+ .pt-cv-wrapper .glyphicon-chevron-left:before {
528
+ content: "\e079";
529
+ }
530
+ .pt-cv-wrapper .glyphicon-chevron-right:before {
531
+ content: "\e080";
532
+ }
533
+ .pt-cv-wrapper .glyphicon-plus-sign:before {
534
+ content: "\e081";
535
+ }
536
+ .pt-cv-wrapper .glyphicon-minus-sign:before {
537
+ content: "\e082";
538
+ }
539
+ .pt-cv-wrapper .glyphicon-remove-sign:before {
540
+ content: "\e083";
541
+ }
542
+ .pt-cv-wrapper .glyphicon-ok-sign:before {
543
+ content: "\e084";
544
+ }
545
+ .pt-cv-wrapper .glyphicon-question-sign:before {
546
+ content: "\e085";
547
+ }
548
+ .pt-cv-wrapper .glyphicon-info-sign:before {
549
+ content: "\e086";
550
+ }
551
+ .pt-cv-wrapper .glyphicon-screenshot:before {
552
+ content: "\e087";
553
+ }
554
+ .pt-cv-wrapper .glyphicon-remove-circle:before {
555
+ content: "\e088";
556
+ }
557
+ .pt-cv-wrapper .glyphicon-ok-circle:before {
558
+ content: "\e089";
559
+ }
560
+ .pt-cv-wrapper .glyphicon-ban-circle:before {
561
+ content: "\e090";
562
+ }
563
+ .pt-cv-wrapper .glyphicon-arrow-left:before {
564
+ content: "\e091";
565
+ }
566
+ .pt-cv-wrapper .glyphicon-arrow-right:before {
567
+ content: "\e092";
568
+ }
569
+ .pt-cv-wrapper .glyphicon-arrow-up:before {
570
+ content: "\e093";
571
+ }
572
+ .pt-cv-wrapper .glyphicon-arrow-down:before {
573
+ content: "\e094";
574
+ }
575
+ .pt-cv-wrapper .glyphicon-share-alt:before {
576
+ content: "\e095";
577
+ }
578
+ .pt-cv-wrapper .glyphicon-resize-full:before {
579
+ content: "\e096";
580
+ }
581
+ .pt-cv-wrapper .glyphicon-resize-small:before {
582
+ content: "\e097";
583
+ }
584
+ .pt-cv-wrapper .glyphicon-exclamation-sign:before {
585
+ content: "\e101";
586
+ }
587
+ .pt-cv-wrapper .glyphicon-gift:before {
588
+ content: "\e102";
589
+ }
590
+ .pt-cv-wrapper .glyphicon-leaf:before {
591
+ content: "\e103";
592
+ }
593
+ .pt-cv-wrapper .glyphicon-fire:before {
594
+ content: "\e104";
595
+ }
596
+ .pt-cv-wrapper .glyphicon-eye-open:before {
597
+ content: "\e105";
598
+ }
599
+ .pt-cv-wrapper .glyphicon-eye-close:before {
600
+ content: "\e106";
601
+ }
602
+ .pt-cv-wrapper .glyphicon-warning-sign:before {
603
+ content: "\e107";
604
+ }
605
+ .pt-cv-wrapper .glyphicon-plane:before {
606
+ content: "\e108";
607
+ }
608
+ .pt-cv-wrapper .glyphicon-calendar:before {
609
+ content: "\e109";
610
+ }
611
+ .pt-cv-wrapper .glyphicon-random:before {
612
+ content: "\e110";
613
+ }
614
+ .pt-cv-wrapper .glyphicon-comment:before {
615
+ content: "\e111";
616
+ }
617
+ .pt-cv-wrapper .glyphicon-magnet:before {
618
+ content: "\e112";
619
+ }
620
+ .pt-cv-wrapper .glyphicon-chevron-up:before {
621
+ content: "\e113";
622
+ }
623
+ .pt-cv-wrapper .glyphicon-chevron-down:before {
624
+ content: "\e114";
625
+ }
626
+ .pt-cv-wrapper .glyphicon-retweet:before {
627
+ content: "\e115";
628
+ }
629
+ .pt-cv-wrapper .glyphicon-shopping-cart:before {
630
+ content: "\e116";
631
+ }
632
+ .pt-cv-wrapper .glyphicon-folder-close:before {
633
+ content: "\e117";
634
+ }
635
+ .pt-cv-wrapper .glyphicon-folder-open:before {
636
+ content: "\e118";
637
+ }
638
+ .pt-cv-wrapper .glyphicon-resize-vertical:before {
639
+ content: "\e119";
640
+ }
641
+ .pt-cv-wrapper .glyphicon-resize-horizontal:before {
642
+ content: "\e120";
643
+ }
644
+ .pt-cv-wrapper .glyphicon-hdd:before {
645
+ content: "\e121";
646
+ }
647
+ .pt-cv-wrapper .glyphicon-bullhorn:before {
648
+ content: "\e122";
649
+ }
650
+ .pt-cv-wrapper .glyphicon-bell:before {
651
+ content: "\e123";
652
+ }
653
+ .pt-cv-wrapper .glyphicon-certificate:before {
654
+ content: "\e124";
655
+ }
656
+ .pt-cv-wrapper .glyphicon-thumbs-up:before {
657
+ content: "\e125";
658
+ }
659
+ .pt-cv-wrapper .glyphicon-thumbs-down:before {
660
+ content: "\e126";
661
+ }
662
+ .pt-cv-wrapper .glyphicon-hand-right:before {
663
+ content: "\e127";
664
+ }
665
+ .pt-cv-wrapper .glyphicon-hand-left:before {
666
+ content: "\e128";
667
+ }
668
+ .pt-cv-wrapper .glyphicon-hand-up:before {
669
+ content: "\e129";
670
+ }
671
+ .pt-cv-wrapper .glyphicon-hand-down:before {
672
+ content: "\e130";
673
+ }
674
+ .pt-cv-wrapper .glyphicon-circle-arrow-right:before {
675
+ content: "\e131";
676
+ }
677
+ .pt-cv-wrapper .glyphicon-circle-arrow-left:before {
678
+ content: "\e132";
679
+ }
680
+ .pt-cv-wrapper .glyphicon-circle-arrow-up:before {
681
+ content: "\e133";
682
+ }
683
+ .pt-cv-wrapper .glyphicon-circle-arrow-down:before {
684
+ content: "\e134";
685
+ }
686
+ .pt-cv-wrapper .glyphicon-globe:before {
687
+ content: "\e135";
688
+ }
689
+ .pt-cv-wrapper .glyphicon-wrench:before {
690
+ content: "\e136";
691
+ }
692
+ .pt-cv-wrapper .glyphicon-tasks:before {
693
+ content: "\e137";
694
+ }
695
+ .pt-cv-wrapper .glyphicon-filter:before {
696
+ content: "\e138";
697
+ }
698
+ .pt-cv-wrapper .glyphicon-briefcase:before {
699
+ content: "\e139";
700
+ }
701
+ .pt-cv-wrapper .glyphicon-fullscreen:before {
702
+ content: "\e140";
703
+ }
704
+ .pt-cv-wrapper .glyphicon-dashboard:before {
705
+ content: "\e141";
706
+ }
707
+ .pt-cv-wrapper .glyphicon-paperclip:before {
708
+ content: "\e142";
709
+ }
710
+ .pt-cv-wrapper .glyphicon-heart-empty:before {
711
+ content: "\e143";
712
+ }
713
+ .pt-cv-wrapper .glyphicon-link:before {
714
+ content: "\e144";
715
+ }
716
+ .pt-cv-wrapper .glyphicon-phone:before {
717
+ content: "\e145";
718
+ }
719
+ .pt-cv-wrapper .glyphicon-pushpin:before {
720
+ content: "\e146";
721
+ }
722
+ .pt-cv-wrapper .glyphicon-usd:before {
723
+ content: "\e148";
724
+ }
725
+ .pt-cv-wrapper .glyphicon-gbp:before {
726
+ content: "\e149";
727
+ }
728
+ .pt-cv-wrapper .glyphicon-sort:before {
729
+ content: "\e150";
730
+ }
731
+ .pt-cv-wrapper .glyphicon-sort-by-alphabet:before {
732
+ content: "\e151";
733
+ }
734
+ .pt-cv-wrapper .glyphicon-sort-by-alphabet-alt:before {
735
+ content: "\e152";
736
+ }
737
+ .pt-cv-wrapper .glyphicon-sort-by-order:before {
738
+ content: "\e153";
739
+ }
740
+ .pt-cv-wrapper .glyphicon-sort-by-order-alt:before {
741
+ content: "\e154";
742
+ }
743
+ .pt-cv-wrapper .glyphicon-sort-by-attributes:before {
744
+ content: "\e155";
745
+ }
746
+ .pt-cv-wrapper .glyphicon-sort-by-attributes-alt:before {
747
+ content: "\e156";
748
+ }
749
+ .pt-cv-wrapper .glyphicon-unchecked:before {
750
+ content: "\e157";
751
+ }
752
+ .pt-cv-wrapper .glyphicon-expand:before {
753
+ content: "\e158";
754
+ }
755
+ .pt-cv-wrapper .glyphicon-collapse-down:before {
756
+ content: "\e159";
757
+ }
758
+ .pt-cv-wrapper .glyphicon-collapse-up:before {
759
+ content: "\e160";
760
+ }
761
+ .pt-cv-wrapper .glyphicon-log-in:before {
762
+ content: "\e161";
763
+ }
764
+ .pt-cv-wrapper .glyphicon-flash:before {
765
+ content: "\e162";
766
+ }
767
+ .pt-cv-wrapper .glyphicon-log-out:before {
768
+ content: "\e163";
769
+ }
770
+ .pt-cv-wrapper .glyphicon-new-window:before {
771
+ content: "\e164";
772
+ }
773
+ .pt-cv-wrapper .glyphicon-record:before {
774
+ content: "\e165";
775
+ }
776
+ .pt-cv-wrapper .glyphicon-save:before {
777
+ content: "\e166";
778
+ }
779
+ .pt-cv-wrapper .glyphicon-open:before {
780
+ content: "\e167";
781
+ }
782
+ .pt-cv-wrapper .glyphicon-saved:before {
783
+ content: "\e168";
784
+ }
785
+ .pt-cv-wrapper .glyphicon-import:before {
786
+ content: "\e169";
787
+ }
788
+ .pt-cv-wrapper .glyphicon-export:before {
789
+ content: "\e170";
790
+ }
791
+ .pt-cv-wrapper .glyphicon-send:before {
792
+ content: "\e171";
793
+ }
794
+ .pt-cv-wrapper .glyphicon-floppy-disk:before {
795
+ content: "\e172";
796
+ }
797
+ .pt-cv-wrapper .glyphicon-floppy-saved:before {
798
+ content: "\e173";
799
+ }
800
+ .pt-cv-wrapper .glyphicon-floppy-remove:before {
801
+ content: "\e174";
802
+ }
803
+ .pt-cv-wrapper .glyphicon-floppy-save:before {
804
+ content: "\e175";
805
+ }
806
+ .pt-cv-wrapper .glyphicon-floppy-open:before {
807
+ content: "\e176";
808
+ }
809
+ .pt-cv-wrapper .glyphicon-credit-card:before {
810
+ content: "\e177";
811
+ }
812
+ .pt-cv-wrapper .glyphicon-transfer:before {
813
+ content: "\e178";
814
+ }
815
+ .pt-cv-wrapper .glyphicon-cutlery:before {
816
+ content: "\e179";
817
+ }
818
+ .pt-cv-wrapper .glyphicon-header:before {
819
+ content: "\e180";
820
+ }
821
+ .pt-cv-wrapper .glyphicon-compressed:before {
822
+ content: "\e181";
823
+ }
824
+ .pt-cv-wrapper .glyphicon-earphone:before {
825
+ content: "\e182";
826
+ }
827
+ .pt-cv-wrapper .glyphicon-phone-alt:before {
828
+ content: "\e183";
829
+ }
830
+ .pt-cv-wrapper .glyphicon-tower:before {
831
+ content: "\e184";
832
+ }
833
+ .pt-cv-wrapper .glyphicon-stats:before {
834
+ content: "\e185";
835
+ }
836
+ .pt-cv-wrapper .glyphicon-sd-video:before {
837
+ content: "\e186";
838
+ }
839
+ .pt-cv-wrapper .glyphicon-hd-video:before {
840
+ content: "\e187";
841
+ }
842
+ .pt-cv-wrapper .glyphicon-subtitles:before {
843
+ content: "\e188";
844
+ }
845
+ .pt-cv-wrapper .glyphicon-sound-stereo:before {
846
+ content: "\e189";
847
+ }
848
+ .pt-cv-wrapper .glyphicon-sound-dolby:before {
849
+ content: "\e190";
850
+ }
851
+ .pt-cv-wrapper .glyphicon-sound-5-1:before {
852
+ content: "\e191";
853
+ }
854
+ .pt-cv-wrapper .glyphicon-sound-6-1:before {
855
+ content: "\e192";
856
+ }
857
+ .pt-cv-wrapper .glyphicon-sound-7-1:before {
858
+ content: "\e193";
859
+ }
860
+ .pt-cv-wrapper .glyphicon-copyright-mark:before {
861
+ content: "\e194";
862
+ }
863
+ .pt-cv-wrapper .glyphicon-registration-mark:before {
864
+ content: "\e195";
865
+ }
866
+ .pt-cv-wrapper .glyphicon-cloud-download:before {
867
+ content: "\e197";
868
+ }
869
+ .pt-cv-wrapper .glyphicon-cloud-upload:before {
870
+ content: "\e198";
871
+ }
872
+ .pt-cv-wrapper .glyphicon-tree-conifer:before {
873
+ content: "\e199";
874
+ }
875
+ .pt-cv-wrapper .glyphicon-tree-deciduous:before {
876
+ content: "\e200";
877
+ }
878
+ .pt-cv-wrapper .glyphicon-cd:before {
879
+ content: "\e201";
880
+ }
881
+ .pt-cv-wrapper .glyphicon-save-file:before {
882
+ content: "\e202";
883
+ }
884
+ .pt-cv-wrapper .glyphicon-open-file:before {
885
+ content: "\e203";
886
+ }
887
+ .pt-cv-wrapper .glyphicon-level-up:before {
888
+ content: "\e204";
889
+ }
890
+ .pt-cv-wrapper .glyphicon-copy:before {
891
+ content: "\e205";
892
+ }
893
+ .pt-cv-wrapper .glyphicon-paste:before {
894
+ content: "\e206";
895
+ }
896
+ .pt-cv-wrapper .glyphicon-alert:before {
897
+ content: "\e209";
898
+ }
899
+ .pt-cv-wrapper .glyphicon-equalizer:before {
900
+ content: "\e210";
901
+ }
902
+ .pt-cv-wrapper .glyphicon-king:before {
903
+ content: "\e211";
904
+ }
905
+ .pt-cv-wrapper .glyphicon-queen:before {
906
+ content: "\e212";
907
+ }
908
+ .pt-cv-wrapper .glyphicon-pawn:before {
909
+ content: "\e213";
910
+ }
911
+ .pt-cv-wrapper .glyphicon-bishop:before {
912
+ content: "\e214";
913
+ }
914
+ .pt-cv-wrapper .glyphicon-knight:before {
915
+ content: "\e215";
916
+ }
917
+ .pt-cv-wrapper .glyphicon-baby-formula:before {
918
+ content: "\e216";
919
+ }
920
+ .pt-cv-wrapper .glyphicon-tent:before {
921
+ content: "\26fa";
922
+ }
923
+ .pt-cv-wrapper .glyphicon-blackboard:before {
924
+ content: "\e218";
925
+ }
926
+ .pt-cv-wrapper .glyphicon-bed:before {
927
+ content: "\e219";
928
+ }
929
+ .pt-cv-wrapper .glyphicon-apple:before {
930
+ content: "\f8ff";
931
+ }
932
+ .pt-cv-wrapper .glyphicon-erase:before {
933
+ content: "\e221";
934
+ }
935
+ .pt-cv-wrapper .glyphicon-hourglass:before {
936
+ content: "\231b";
937
+ }
938
+ .pt-cv-wrapper .glyphicon-lamp:before {
939
+ content: "\e223";
940
+ }
941
+ .pt-cv-wrapper .glyphicon-duplicate:before {
942
+ content: "\e224";
943
+ }
944
+ .pt-cv-wrapper .glyphicon-piggy-bank:before {
945
+ content: "\e225";
946
+ }
947
+ .pt-cv-wrapper .glyphicon-scissors:before {
948
+ content: "\e226";
949
+ }
950
+ .pt-cv-wrapper .glyphicon-bitcoin:before {
951
+ content: "\e227";
952
+ }
953
+ .pt-cv-wrapper .glyphicon-btc:before {
954
+ content: "\e227";
955
+ }
956
+ .pt-cv-wrapper .glyphicon-xbt:before {
957
+ content: "\e227";
958
+ }
959
+ .pt-cv-wrapper .glyphicon-yen:before {
960
+ content: "\00a5";
961
+ }
962
+ .pt-cv-wrapper .glyphicon-jpy:before {
963
+ content: "\00a5";
964
+ }
965
+ .pt-cv-wrapper .glyphicon-ruble:before {
966
+ content: "\20bd";
967
+ }
968
+ .pt-cv-wrapper .glyphicon-rub:before {
969
+ content: "\20bd";
970
+ }
971
+ .pt-cv-wrapper .glyphicon-scale:before {
972
+ content: "\e230";
973
+ }
974
+ .pt-cv-wrapper .glyphicon-ice-lolly:before {
975
+ content: "\e231";
976
+ }
977
+ .pt-cv-wrapper .glyphicon-ice-lolly-tasted:before {
978
+ content: "\e232";
979
+ }
980
+ .pt-cv-wrapper .glyphicon-education:before {
981
+ content: "\e233";
982
+ }
983
+ .pt-cv-wrapper .glyphicon-option-horizontal:before {
984
+ content: "\e234";
985
+ }
986
+ .pt-cv-wrapper .glyphicon-option-vertical:before {
987
+ content: "\e235";
988
+ }
989
+ .pt-cv-wrapper .glyphicon-menu-hamburger:before {
990
+ content: "\e236";
991
+ }
992
+ .pt-cv-wrapper .glyphicon-modal-window:before {
993
+ content: "\e237";
994
+ }
995
+ .pt-cv-wrapper .glyphicon-oil:before {
996
+ content: "\e238";
997
+ }
998
+ .pt-cv-wrapper .glyphicon-grain:before {
999
+ content: "\e239";
1000
+ }
1001
+ .pt-cv-wrapper .glyphicon-sunglasses:before {
1002
+ content: "\e240";
1003
+ }
1004
+ .pt-cv-wrapper .glyphicon-text-size:before {
1005
+ content: "\e241";
1006
+ }
1007
+ .pt-cv-wrapper .glyphicon-text-color:before {
1008
+ content: "\e242";
1009
+ }
1010
+ .pt-cv-wrapper .glyphicon-text-background:before {
1011
+ content: "\e243";
1012
+ }
1013
+ .pt-cv-wrapper .glyphicon-object-align-top:before {
1014
+ content: "\e244";
1015
+ }
1016
+ .pt-cv-wrapper .glyphicon-object-align-bottom:before {
1017
+ content: "\e245";
1018
+ }
1019
+ .pt-cv-wrapper .glyphicon-object-align-horizontal:before {
1020
+ content: "\e246";
1021
+ }
1022
+ .pt-cv-wrapper .glyphicon-object-align-left:before {
1023
+ content: "\e247";
1024
+ }
1025
+ .pt-cv-wrapper .glyphicon-object-align-vertical:before {
1026
+ content: "\e248";
1027
+ }
1028
+ .pt-cv-wrapper .glyphicon-object-align-right:before {
1029
+ content: "\e249";
1030
+ }
1031
+ .pt-cv-wrapper .glyphicon-triangle-right:before {
1032
+ content: "\e250";
1033
+ }
1034
+ .pt-cv-wrapper .glyphicon-triangle-left:before {
1035
+ content: "\e251";
1036
+ }
1037
+ .pt-cv-wrapper .glyphicon-triangle-bottom:before {
1038
+ content: "\e252";
1039
+ }
1040
+ .pt-cv-wrapper .glyphicon-triangle-top:before {
1041
+ content: "\e253";
1042
+ }
1043
+ .pt-cv-wrapper .glyphicon-console:before {
1044
+ content: "\e254";
1045
+ }
1046
+ .pt-cv-wrapper .glyphicon-superscript:before {
1047
+ content: "\e255";
1048
+ }
1049
+ .pt-cv-wrapper .glyphicon-subscript:before {
1050
+ content: "\e256";
1051
+ }
1052
+ .pt-cv-wrapper .glyphicon-menu-left:before {
1053
+ content: "\e257";
1054
+ }
1055
+ .pt-cv-wrapper .glyphicon-menu-right:before {
1056
+ content: "\e258";
1057
+ }
1058
+ .pt-cv-wrapper .glyphicon-menu-down:before {
1059
+ content: "\e259";
1060
+ }
1061
+ .pt-cv-wrapper .glyphicon-menu-up:before {
1062
+ content: "\e260";
1063
+ }
1064
+ .pt-cv-wrapper img {
1065
+ vertical-align: middle;
1066
+ }
1067
+ .pt-cv-wrapper .img-responsive,
1068
+ .pt-cv-wrapper .thumbnail > img,
1069
+ .pt-cv-wrapper .thumbnail a > img,
1070
+ .pt-cv-wrapper .carousel-inner > .item > img,
1071
+ .pt-cv-wrapper .carousel-inner > .item > a > img {
1072
+ display: block;
1073
+ max-width: 100%;
1074
+ height: auto;
1075
+ }
1076
+ .pt-cv-wrapper .img-rounded {
1077
+ border-radius: 6px;
1078
+ }
1079
+ .pt-cv-wrapper .img-thumbnail {
1080
+ padding: 4px;
1081
+ line-height: 1.42857143;
1082
+ background-color: #ffffff;
1083
+ border: 1px solid #dddddd;
1084
+ border-radius: 4px;
1085
+ -webkit-transition: all 0.2s ease-in-out;
1086
+ -o-transition: all 0.2s ease-in-out;
1087
+ transition: all 0.2s ease-in-out;
1088
+ display: inline-block;
1089
+ max-width: 100%;
1090
+ height: auto;
1091
+ }
1092
+ .pt-cv-wrapper .img-circle {
1093
+ border-radius: 50%;
1094
+ }
1095
+ .pt-cv-wrapper hr {
1096
+ margin-top: 20px;
1097
+ margin-bottom: 20px;
1098
+ border: 0;
1099
+ border-top: 1px solid #eeeeee;
1100
+ }
1101
+ .pt-cv-wrapper .sr-only {
1102
+ position: absolute;
1103
+ width: 1px;
1104
+ height: 1px;
1105
+ margin: -1px;
1106
+ padding: 0;
1107
+ overflow: hidden;
1108
+ clip: rect(0, 0, 0, 0);
1109
+ border: 0;
1110
+ }
1111
+ .pt-cv-wrapper .sr-only-focusable:active,
1112
+ .pt-cv-wrapper .sr-only-focusable:focus {
1113
+ position: static;
1114
+ width: auto;
1115
+ height: auto;
1116
+ margin: 0;
1117
+ overflow: visible;
1118
+ clip: auto;
1119
+ }
1120
+ .pt-cv-wrapper [role="button"] {
1121
+ cursor: pointer;
1122
+ }
1123
+ .pt-cv-wrapper .container {
1124
+ margin-right: auto;
1125
+ margin-left: auto;
1126
+ padding-left: 15px;
1127
+ padding-right: 15px;
1128
+ }
1129
+ @media (min-width: 768px) {
1130
+ .pt-cv-wrapper .container {
1131
+ width: 750px;
1132
+ }
1133
+ }
1134
+ @media (min-width: 992px) {
1135
+ .pt-cv-wrapper .container {
1136
+ width: 970px;
1137
+ }
1138
+ }
1139
+ @media (min-width: 1200px) {
1140
+ .pt-cv-wrapper .container {
1141
+ width: 1170px;
1142
+ }
1143
+ }
1144
+ .pt-cv-wrapper .container-fluid {
1145
+ margin-right: auto;
1146
+ margin-left: auto;
1147
+ padding-left: 15px;
1148
+ padding-right: 15px;
1149
+ }
1150
+ .pt-cv-wrapper .row {
1151
+ margin-left: -15px;
1152
+ margin-right: -15px;
1153
+ }
1154
+ .pt-cv-wrapper .col-xs-1,
1155
+ .pt-cv-wrapper .col-sm-1,
1156
+ .pt-cv-wrapper .col-md-1,
1157
+ .pt-cv-wrapper .col-lg-1,
1158
+ .pt-cv-wrapper .col-xs-2,
1159
+ .pt-cv-wrapper .col-sm-2,
1160
+ .pt-cv-wrapper .col-md-2,
1161
+ .pt-cv-wrapper .col-lg-2,
1162
+ .pt-cv-wrapper .col-xs-3,
1163
+ .pt-cv-wrapper .col-sm-3,
1164
+ .pt-cv-wrapper .col-md-3,
1165
+ .pt-cv-wrapper .col-lg-3,
1166
+ .pt-cv-wrapper .col-xs-4,
1167
+ .pt-cv-wrapper .col-sm-4,
1168
+ .pt-cv-wrapper .col-md-4,
1169
+ .pt-cv-wrapper .col-lg-4,
1170
+ .pt-cv-wrapper .col-xs-5,
1171
+ .pt-cv-wrapper .col-sm-5,
1172
+ .pt-cv-wrapper .col-md-5,
1173
+ .pt-cv-wrapper .col-lg-5,
1174
+ .pt-cv-wrapper .col-xs-6,
1175
+ .pt-cv-wrapper .col-sm-6,
1176
+ .pt-cv-wrapper .col-md-6,
1177
+ .pt-cv-wrapper .col-lg-6,
1178
+ .pt-cv-wrapper .col-xs-7,
1179
+ .pt-cv-wrapper .col-sm-7,
1180
+ .pt-cv-wrapper .col-md-7,
1181
+ .pt-cv-wrapper .col-lg-7,
1182
+ .pt-cv-wrapper .col-xs-8,
1183
+ .pt-cv-wrapper .col-sm-8,
1184
+ .pt-cv-wrapper .col-md-8,
1185
+ .pt-cv-wrapper .col-lg-8,
1186
+ .pt-cv-wrapper .col-xs-9,
1187
+ .pt-cv-wrapper .col-sm-9,
1188
+ .pt-cv-wrapper .col-md-9,
1189
+ .pt-cv-wrapper .col-lg-9,
1190
+ .pt-cv-wrapper .col-xs-10,
1191
+ .pt-cv-wrapper .col-sm-10,
1192
+ .pt-cv-wrapper .col-md-10,
1193
+ .pt-cv-wrapper .col-lg-10,
1194
+ .pt-cv-wrapper .col-xs-11,
1195
+ .pt-cv-wrapper .col-sm-11,
1196
+ .pt-cv-wrapper .col-md-11,
1197
+ .pt-cv-wrapper .col-lg-11,
1198
+ .pt-cv-wrapper .col-xs-12,
1199
+ .pt-cv-wrapper .col-sm-12,
1200
+ .pt-cv-wrapper .col-md-12,
1201
+ .pt-cv-wrapper .col-lg-12 {
1202
+ position: relative;
1203
+ min-height: 1px;
1204
+ padding-left: 15px;
1205
+ padding-right: 15px;
1206
+ }
1207
+ .pt-cv-wrapper .col-xs-1,
1208
+ .pt-cv-wrapper .col-xs-2,
1209
+ .pt-cv-wrapper .col-xs-3,
1210
+ .pt-cv-wrapper .col-xs-4,
1211
+ .pt-cv-wrapper .col-xs-5,
1212
+ .pt-cv-wrapper .col-xs-6,
1213
+ .pt-cv-wrapper .col-xs-7,
1214
+ .pt-cv-wrapper .col-xs-8,
1215
+ .pt-cv-wrapper .col-xs-9,
1216
+ .pt-cv-wrapper .col-xs-10,
1217
+ .pt-cv-wrapper .col-xs-11,
1218
+ .pt-cv-wrapper .col-xs-12 {
1219
+ float: left;
1220
+ }
1221
+ .pt-cv-wrapper .col-xs-12 {
1222
+ width: 100%;
1223
+ }
1224
+ .pt-cv-wrapper .col-xs-11 {
1225
+ width: 91.66666667%;
1226
+ }
1227
+ .pt-cv-wrapper .col-xs-10 {
1228
+ width: 83.33333333%;
1229
+ }
1230
+ .pt-cv-wrapper .col-xs-9 {
1231
+ width: 75%;
1232
+ }
1233
+ .pt-cv-wrapper .col-xs-8 {
1234
+ width: 66.66666667%;
1235
+ }
1236
+ .pt-cv-wrapper .col-xs-7 {
1237
+ width: 58.33333333%;
1238
+ }
1239
+ .pt-cv-wrapper .col-xs-6 {
1240
+ width: 50%;
1241
+ }
1242
+ .pt-cv-wrapper .col-xs-5 {
1243
+ width: 41.66666667%;
1244
+ }
1245
+ .pt-cv-wrapper .col-xs-4 {
1246
+ width: 33.33333333%;
1247
+ }
1248
+ .pt-cv-wrapper .col-xs-3 {
1249
+ width: 25%;
1250
+ }
1251
+ .pt-cv-wrapper .col-xs-2 {
1252
+ width: 16.66666667%;
1253
+ }
1254
+ .pt-cv-wrapper .col-xs-1 {
1255
+ width: 8.33333333%;
1256
+ }
1257
+ .pt-cv-wrapper .col-xs-pull-12 {
1258
+ right: 100%;
1259
+ }
1260
+ .pt-cv-wrapper .col-xs-pull-11 {
1261
+ right: 91.66666667%;
1262
+ }
1263
+ .pt-cv-wrapper .col-xs-pull-10 {
1264
+ right: 83.33333333%;
1265
+ }
1266
+ .pt-cv-wrapper .col-xs-pull-9 {
1267
+ right: 75%;
1268
+ }
1269
+ .pt-cv-wrapper .col-xs-pull-8 {
1270
+ right: 66.66666667%;
1271
+ }
1272
+ .pt-cv-wrapper .col-xs-pull-7 {
1273
+ right: 58.33333333%;
1274
+ }
1275
+ .pt-cv-wrapper .col-xs-pull-6 {
1276
+ right: 50%;
1277
+ }
1278
+ .pt-cv-wrapper .col-xs-pull-5 {
1279
+ right: 41.66666667%;
1280
+ }
1281
+ .pt-cv-wrapper .col-xs-pull-4 {
1282
+ right: 33.33333333%;
1283
+ }
1284
+ .pt-cv-wrapper .col-xs-pull-3 {
1285
+ right: 25%;
1286
+ }
1287
+ .pt-cv-wrapper .col-xs-pull-2 {
1288
+ right: 16.66666667%;
1289
+ }
1290
+ .pt-cv-wrapper .col-xs-pull-1 {
1291
+ right: 8.33333333%;
1292
+ }
1293
+ .pt-cv-wrapper .col-xs-pull-0 {
1294
+ right: auto;
1295
+ }
1296
+ .pt-cv-wrapper .col-xs-push-12 {
1297
+ left: 100%;
1298
+ }
1299
+ .pt-cv-wrapper .col-xs-push-11 {
1300
+ left: 91.66666667%;
1301
+ }
1302
+ .pt-cv-wrapper .col-xs-push-10 {
1303
+ left: 83.33333333%;
1304
+ }
1305
+ .pt-cv-wrapper .col-xs-push-9 {
1306
+ left: 75%;
1307
+ }
1308
+ .pt-cv-wrapper .col-xs-push-8 {
1309
+ left: 66.66666667%;
1310
+ }
1311
+ .pt-cv-wrapper .col-xs-push-7 {
1312
+ left: 58.33333333%;
1313
+ }
1314
+ .pt-cv-wrapper .col-xs-push-6 {
1315
+ left: 50%;
1316
+ }
1317
+ .pt-cv-wrapper .col-xs-push-5 {
1318
+ left: 41.66666667%;
1319
+ }
1320
+ .pt-cv-wrapper .col-xs-push-4 {
1321
+ left: 33.33333333%;
1322
+ }
1323
+ .pt-cv-wrapper .col-xs-push-3 {
1324
+ left: 25%;
1325
+ }
1326
+ .pt-cv-wrapper .col-xs-push-2 {
1327
+ left: 16.66666667%;
1328
+ }
1329
+ .pt-cv-wrapper .col-xs-push-1 {
1330
+ left: 8.33333333%;
1331
+ }
1332
+ .pt-cv-wrapper .col-xs-push-0 {
1333
+ left: auto;
1334
+ }
1335
+ .pt-cv-wrapper .col-xs-offset-12 {
1336
+ margin-left: 100%;
1337
+ }
1338
+ .pt-cv-wrapper .col-xs-offset-11 {
1339
+ margin-left: 91.66666667%;
1340
+ }
1341
+ .pt-cv-wrapper .col-xs-offset-10 {
1342
+ margin-left: 83.33333333%;
1343
+ }
1344
+ .pt-cv-wrapper .col-xs-offset-9 {
1345
+ margin-left: 75%;
1346
+ }
1347
+ .pt-cv-wrapper .col-xs-offset-8 {
1348
+ margin-left: 66.66666667%;
1349
+ }
1350
+ .pt-cv-wrapper .col-xs-offset-7 {
1351
+ margin-left: 58.33333333%;
1352
+ }
1353
+ .pt-cv-wrapper .col-xs-offset-6 {
1354
+ margin-left: 50%;
1355
+ }
1356
+ .pt-cv-wrapper .col-xs-offset-5 {
1357
+ margin-left: 41.66666667%;
1358
+ }
1359
+ .pt-cv-wrapper .col-xs-offset-4 {
1360
+ margin-left: 33.33333333%;
1361
+ }
1362
+ .pt-cv-wrapper .col-xs-offset-3 {
1363
+ margin-left: 25%;
1364
+ }
1365
+ .pt-cv-wrapper .col-xs-offset-2 {
1366
+ margin-left: 16.66666667%;
1367
+ }
1368
+ .pt-cv-wrapper .col-xs-offset-1 {
1369
+ margin-left: 8.33333333%;
1370
+ }
1371
+ .pt-cv-wrapper .col-xs-offset-0 {
1372
+ margin-left: 0%;
1373
+ }
1374
+ @media (min-width: 768px) {
1375
+ .pt-cv-wrapper .col-sm-1,
1376
+ .pt-cv-wrapper .col-sm-2,
1377
+ .pt-cv-wrapper .col-sm-3,
1378
+ .pt-cv-wrapper .col-sm-4,
1379
+ .pt-cv-wrapper .col-sm-5,
1380
+ .pt-cv-wrapper .col-sm-6,
1381
+ .pt-cv-wrapper .col-sm-7,
1382
+ .pt-cv-wrapper .col-sm-8,
1383
+ .pt-cv-wrapper .col-sm-9,
1384
+ .pt-cv-wrapper .col-sm-10,
1385
+ .pt-cv-wrapper .col-sm-11,
1386
+ .pt-cv-wrapper .col-sm-12 {
1387
+ float: left;
1388
+ }
1389
+ .pt-cv-wrapper .col-sm-12 {
1390
+ width: 100%;
1391
+ }
1392
+ .pt-cv-wrapper .col-sm-11 {
1393
+ width: 91.66666667%;
1394
+ }
1395
+ .pt-cv-wrapper .col-sm-10 {
1396
+ width: 83.33333333%;
1397
+ }
1398
+ .pt-cv-wrapper .col-sm-9 {
1399
+ width: 75%;
1400
+ }
1401
+ .pt-cv-wrapper .col-sm-8 {
1402
+ width: 66.66666667%;
1403
+ }
1404
+ .pt-cv-wrapper .col-sm-7 {
1405
+ width: 58.33333333%;
1406
+ }
1407
+ .pt-cv-wrapper .col-sm-6 {
1408
+ width: 50%;
1409
+ }
1410
+ .pt-cv-wrapper .col-sm-5 {
1411
+ width: 41.66666667%;
1412
+ }
1413
+ .pt-cv-wrapper .col-sm-4 {
1414
+ width: 33.33333333%;
1415
+ }
1416
+ .pt-cv-wrapper .col-sm-3 {
1417
+ width: 25%;
1418
+ }
1419
+ .pt-cv-wrapper .col-sm-2 {
1420
+ width: 16.66666667%;
1421
+ }
1422
+ .pt-cv-wrapper .col-sm-1 {
1423
+ width: 8.33333333%;
1424
+ }
1425
+ .pt-cv-wrapper .col-sm-pull-12 {
1426
+ right: 100%;
1427
+ }
1428
+ .pt-cv-wrapper .col-sm-pull-11 {
1429
+ right: 91.66666667%;
1430
+ }
1431
+ .pt-cv-wrapper .col-sm-pull-10 {
1432
+ right: 83.33333333%;
1433
+ }
1434
+ .pt-cv-wrapper .col-sm-pull-9 {
1435
+ right: 75%;
1436
+ }
1437
+ .pt-cv-wrapper .col-sm-pull-8 {
1438
+ right: 66.66666667%;
1439
+ }
1440
+ .pt-cv-wrapper .col-sm-pull-7 {
1441
+ right: 58.33333333%;
1442
+ }
1443
+ .pt-cv-wrapper .col-sm-pull-6 {
1444
+ right: 50%;
1445
+ }
1446
+ .pt-cv-wrapper .col-sm-pull-5 {
1447
+ right: 41.66666667%;
1448
+ }
1449
+ .pt-cv-wrapper .col-sm-pull-4 {
1450
+ right: 33.33333333%;
1451
+ }
1452
+ .pt-cv-wrapper .col-sm-pull-3 {
1453
+ right: 25%;
1454
+ }
1455
+ .pt-cv-wrapper .col-sm-pull-2 {
1456
+ right: 16.66666667%;
1457
+ }
1458
+ .pt-cv-wrapper .col-sm-pull-1 {
1459
+ right: 8.33333333%;
1460
+ }
1461
+ .pt-cv-wrapper .col-sm-pull-0 {
1462
+ right: auto;
1463
+ }
1464
+ .pt-cv-wrapper .col-sm-push-12 {
1465
+ left: 100%;
1466
+ }
1467
+ .pt-cv-wrapper .col-sm-push-11 {
1468
+ left: 91.66666667%;
1469
+ }
1470
+ .pt-cv-wrapper .col-sm-push-10 {
1471
+ left: 83.33333333%;
1472
+ }
1473
+ .pt-cv-wrapper .col-sm-push-9 {
1474
+ left: 75%;
1475
+ }
1476
+ .pt-cv-wrapper .col-sm-push-8 {
1477
+ left: 66.66666667%;
1478
+ }
1479
+ .pt-cv-wrapper .col-sm-push-7 {
1480
+ left: 58.33333333%;
1481
+ }
1482
+ .pt-cv-wrapper .col-sm-push-6 {
1483
+ left: 50%;
1484
+ }
1485
+ .pt-cv-wrapper .col-sm-push-5 {
1486
+ left: 41.66666667%;
1487
+ }
1488
+ .pt-cv-wrapper .col-sm-push-4 {
1489
+ left: 33.33333333%;
1490
+ }
1491
+ .pt-cv-wrapper .col-sm-push-3 {
1492
+ left: 25%;
1493
+ }
1494
+ .pt-cv-wrapper .col-sm-push-2 {
1495
+ left: 16.66666667%;
1496
+ }
1497
+ .pt-cv-wrapper .col-sm-push-1 {
1498
+ left: 8.33333333%;
1499
+ }
1500
+ .pt-cv-wrapper .col-sm-push-0 {
1501
+ left: auto;
1502
+ }
1503
+ .pt-cv-wrapper .col-sm-offset-12 {
1504
+ margin-left: 100%;
1505
+ }
1506
+ .pt-cv-wrapper .col-sm-offset-11 {
1507
+ margin-left: 91.66666667%;
1508
+ }
1509
+ .pt-cv-wrapper .col-sm-offset-10 {
1510
+ margin-left: 83.33333333%;
1511
+ }
1512
+ .pt-cv-wrapper .col-sm-offset-9 {
1513
+ margin-left: 75%;
1514
+ }
1515
+ .pt-cv-wrapper .col-sm-offset-8 {
1516
+ margin-left: 66.66666667%;
1517
+ }
1518
+ .pt-cv-wrapper .col-sm-offset-7 {
1519
+ margin-left: 58.33333333%;
1520
+ }
1521
+ .pt-cv-wrapper .col-sm-offset-6 {
1522
+ margin-left: 50%;
1523
+ }
1524
+ .pt-cv-wrapper .col-sm-offset-5 {
1525
+ margin-left: 41.66666667%;
1526
+ }
1527
+ .pt-cv-wrapper .col-sm-offset-4 {
1528
+ margin-left: 33.33333333%;
1529
+ }
1530
+ .pt-cv-wrapper .col-sm-offset-3 {
1531
+ margin-left: 25%;
1532
+ }
1533
+ .pt-cv-wrapper .col-sm-offset-2 {
1534
+ margin-left: 16.66666667%;
1535
+ }
1536
+ .pt-cv-wrapper .col-sm-offset-1 {
1537
+ margin-left: 8.33333333%;
1538
+ }
1539
+ .pt-cv-wrapper .col-sm-offset-0 {
1540
+ margin-left: 0%;
1541
+ }
1542
+ }
1543
+ @media (min-width: 992px) {
1544
+ .pt-cv-wrapper .col-md-1,
1545
+ .pt-cv-wrapper .col-md-2,
1546
+ .pt-cv-wrapper .col-md-3,
1547
+ .pt-cv-wrapper .col-md-4,
1548
+ .pt-cv-wrapper .col-md-5,
1549
+ .pt-cv-wrapper .col-md-6,
1550
+ .pt-cv-wrapper .col-md-7,
1551
+ .pt-cv-wrapper .col-md-8,
1552
+ .pt-cv-wrapper .col-md-9,
1553
+ .pt-cv-wrapper .col-md-10,
1554
+ .pt-cv-wrapper .col-md-11,
1555
+ .pt-cv-wrapper .col-md-12 {
1556
+ float: left;
1557
+ }
1558
+ .pt-cv-wrapper .col-md-12 {
1559
+ width: 100%;
1560
+ }
1561
+ .pt-cv-wrapper .col-md-11 {
1562
+ width: 91.66666667%;
1563
+ }
1564
+ .pt-cv-wrapper .col-md-10 {
1565
+ width: 83.33333333%;
1566
+ }
1567
+ .pt-cv-wrapper .col-md-9 {
1568
+ width: 75%;
1569
+ }
1570
+ .pt-cv-wrapper .col-md-8 {
1571
+ width: 66.66666667%;
1572
+ }
1573
+ .pt-cv-wrapper .col-md-7 {
1574
+ width: 58.33333333%;
1575
+ }
1576
+ .pt-cv-wrapper .col-md-6 {
1577
+ width: 50%;
1578
+ }
1579
+ .pt-cv-wrapper .col-md-5 {
1580
+ width: 41.66666667%;
1581
+ }
1582
+ .pt-cv-wrapper .col-md-4 {
1583
+ width: 33.33333333%;
1584
+ }
1585
+ .pt-cv-wrapper .col-md-3 {
1586
+ width: 25%;
1587
+ }
1588
+ .pt-cv-wrapper .col-md-2 {
1589
+ width: 16.66666667%;
1590
+ }
1591
+ .pt-cv-wrapper .col-md-1 {
1592
+ width: 8.33333333%;
1593
+ }
1594
+ .pt-cv-wrapper .col-md-pull-12 {
1595
+ right: 100%;
1596
+ }
1597
+ .pt-cv-wrapper .col-md-pull-11 {
1598
+ right: 91.66666667%;
1599
+ }
1600
+ .pt-cv-wrapper .col-md-pull-10 {
1601
+ right: 83.33333333%;
1602
+ }
1603
+ .pt-cv-wrapper .col-md-pull-9 {
1604
+ right: 75%;
1605
+ }
1606
+ .pt-cv-wrapper .col-md-pull-8 {
1607
+ right: 66.66666667%;
1608
+ }
1609
+ .pt-cv-wrapper .col-md-pull-7 {
1610
+ right: 58.33333333%;
1611
+ }
1612
+ .pt-cv-wrapper .col-md-pull-6 {
1613
+ right: 50%;
1614
+ }
1615
+ .pt-cv-wrapper .col-md-pull-5 {
1616
+ right: 41.66666667%;
1617
+ }
1618
+ .pt-cv-wrapper .col-md-pull-4 {
1619
+ right: 33.33333333%;
1620
+ }
1621
+ .pt-cv-wrapper .col-md-pull-3 {
1622
+ right: 25%;
1623
+ }
1624
+ .pt-cv-wrapper .col-md-pull-2 {
1625
+ right: 16.66666667%;
1626
+ }
1627
+ .pt-cv-wrapper .col-md-pull-1 {
1628
+ right: 8.33333333%;
1629
+ }
1630
+ .pt-cv-wrapper .col-md-pull-0 {
1631
+ right: auto;
1632
+ }
1633
+ .pt-cv-wrapper .col-md-push-12 {
1634
+ left: 100%;
1635
+ }
1636
+ .pt-cv-wrapper .col-md-push-11 {
1637
+ left: 91.66666667%;
1638
+ }
1639
+ .pt-cv-wrapper .col-md-push-10 {
1640
+ left: 83.33333333%;
1641
+ }
1642
+ .pt-cv-wrapper .col-md-push-9 {
1643
+ left: 75%;
1644
+ }
1645
+ .pt-cv-wrapper .col-md-push-8 {
1646
+ left: 66.66666667%;
1647
+ }
1648
+ .pt-cv-wrapper .col-md-push-7 {
1649
+ left: 58.33333333%;
1650
+ }
1651
+ .pt-cv-wrapper .col-md-push-6 {
1652
+ left: 50%;
1653
+ }
1654
+ .pt-cv-wrapper .col-md-push-5 {
1655
+ left: 41.66666667%;
1656
+ }
1657
+ .pt-cv-wrapper .col-md-push-4 {
1658
+ left: 33.33333333%;
1659
+ }
1660
+ .pt-cv-wrapper .col-md-push-3 {
1661
+ left: 25%;
1662
+ }
1663
+ .pt-cv-wrapper .col-md-push-2 {
1664
+ left: 16.66666667%;
1665
+ }
1666
+ .pt-cv-wrapper .col-md-push-1 {
1667
+ left: 8.33333333%;
1668
+ }
1669
+ .pt-cv-wrapper .col-md-push-0 {
1670
+ left: auto;
1671
+ }
1672
+ .pt-cv-wrapper .col-md-offset-12 {
1673
+ margin-left: 100%;
1674
+ }
1675
+ .pt-cv-wrapper .col-md-offset-11 {
1676
+ margin-left: 91.66666667%;
1677
+ }
1678
+ .pt-cv-wrapper .col-md-offset-10 {
1679
+ margin-left: 83.33333333%;
1680
+ }
1681
+ .pt-cv-wrapper .col-md-offset-9 {
1682
+ margin-left: 75%;
1683
+ }
1684
+ .pt-cv-wrapper .col-md-offset-8 {
1685
+ margin-left: 66.66666667%;
1686
+ }
1687
+ .pt-cv-wrapper .col-md-offset-7 {
1688
+ margin-left: 58.33333333%;
1689
+ }
1690
+ .pt-cv-wrapper .col-md-offset-6 {
1691
+ margin-left: 50%;
1692
+ }
1693
+ .pt-cv-wrapper .col-md-offset-5 {
1694
+ margin-left: 41.66666667%;
1695
+ }
1696
+ .pt-cv-wrapper .col-md-offset-4 {
1697
+ margin-left: 33.33333333%;
1698
+ }
1699
+ .pt-cv-wrapper .col-md-offset-3 {
1700
+ margin-left: 25%;
1701
+ }
1702
+ .pt-cv-wrapper .col-md-offset-2 {
1703
+ margin-left: 16.66666667%;
1704
+ }
1705
+ .pt-cv-wrapper .col-md-offset-1 {
1706
+ margin-left: 8.33333333%;
1707
+ }
1708
+ .pt-cv-wrapper .col-md-offset-0 {
1709
+ margin-left: 0%;
1710
+ }
1711
+ }
1712
+ @media (min-width: 1200px) {
1713
+ .pt-cv-wrapper .col-lg-1,
1714
+ .pt-cv-wrapper .col-lg-2,
1715
+ .pt-cv-wrapper .col-lg-3,
1716
+ .pt-cv-wrapper .col-lg-4,
1717
+ .pt-cv-wrapper .col-lg-5,
1718
+ .pt-cv-wrapper .col-lg-6,
1719
+ .pt-cv-wrapper .col-lg-7,
1720
+ .pt-cv-wrapper .col-lg-8,
1721
+ .pt-cv-wrapper .col-lg-9,
1722
+ .pt-cv-wrapper .col-lg-10,
1723
+ .pt-cv-wrapper .col-lg-11,
1724
+ .pt-cv-wrapper .col-lg-12 {
1725
+ float: left;
1726
+ }
1727
+ .pt-cv-wrapper .col-lg-12 {
1728
+ width: 100%;
1729
+ }
1730
+ .pt-cv-wrapper .col-lg-11 {
1731
+ width: 91.66666667%;
1732
+ }
1733
+ .pt-cv-wrapper .col-lg-10 {
1734
+ width: 83.33333333%;
1735
+ }
1736
+ .pt-cv-wrapper .col-lg-9 {
1737
+ width: 75%;
1738
+ }
1739
+ .pt-cv-wrapper .col-lg-8 {
1740
+ width: 66.66666667%;
1741
+ }
1742
+ .pt-cv-wrapper .col-lg-7 {
1743
+ width: 58.33333333%;
1744
+ }
1745
+ .pt-cv-wrapper .col-lg-6 {
1746
+ width: 50%;
1747
+ }
1748
+ .pt-cv-wrapper .col-lg-5 {
1749
+ width: 41.66666667%;
1750
+ }
1751
+ .pt-cv-wrapper .col-lg-4 {
1752
+ width: 33.33333333%;
1753
+ }
1754
+ .pt-cv-wrapper .col-lg-3 {
1755
+ width: 25%;
1756
+ }
1757
+ .pt-cv-wrapper .col-lg-2 {
1758
+ width: 16.66666667%;
1759
+ }
1760
+ .pt-cv-wrapper .col-lg-1 {
1761
+ width: 8.33333333%;
1762
+ }
1763
+ .pt-cv-wrapper .col-lg-pull-12 {
1764
+ right: 100%;
1765
+ }
1766
+ .pt-cv-wrapper .col-lg-pull-11 {
1767
+ right: 91.66666667%;
1768
+ }
1769
+ .pt-cv-wrapper .col-lg-pull-10 {
1770
+ right: 83.33333333%;
1771
+ }
1772
+ .pt-cv-wrapper .col-lg-pull-9 {
1773
+ right: 75%;
1774
+ }
1775
+ .pt-cv-wrapper .col-lg-pull-8 {
1776
+ right: 66.66666667%;
1777
+ }
1778
+ .pt-cv-wrapper .col-lg-pull-7 {
1779
+ right: 58.33333333%;
1780
+ }
1781
+ .pt-cv-wrapper .col-lg-pull-6 {
1782
+ right: 50%;
1783
+ }
1784
+ .pt-cv-wrapper .col-lg-pull-5 {
1785
+ right: 41.66666667%;
1786
+ }
1787
+ .pt-cv-wrapper .col-lg-pull-4 {
1788
+ right: 33.33333333%;
1789
+ }
1790
+ .pt-cv-wrapper .col-lg-pull-3 {
1791
+ right: 25%;
1792
+ }
1793
+ .pt-cv-wrapper .col-lg-pull-2 {
1794
+ right: 16.66666667%;
1795
+ }
1796
+ .pt-cv-wrapper .col-lg-pull-1 {
1797
+ right: 8.33333333%;
1798
+ }
1799
+ .pt-cv-wrapper .col-lg-pull-0 {
1800
+ right: auto;
1801
+ }
1802
+ .pt-cv-wrapper .col-lg-push-12 {
1803
+ left: 100%;
1804
+ }
1805
+ .pt-cv-wrapper .col-lg-push-11 {
1806
+ left: 91.66666667%;
1807
+ }
1808
+ .pt-cv-wrapper .col-lg-push-10 {
1809
+ left: 83.33333333%;
1810
+ }
1811
+ .pt-cv-wrapper .col-lg-push-9 {
1812
+ left: 75%;
1813
+ }
1814
+ .pt-cv-wrapper .col-lg-push-8 {
1815
+ left: 66.66666667%;
1816
+ }
1817
+ .pt-cv-wrapper .col-lg-push-7 {
1818
+ left: 58.33333333%;
1819
+ }
1820
+ .pt-cv-wrapper .col-lg-push-6 {
1821
+ left: 50%;
1822
+ }
1823
+ .pt-cv-wrapper .col-lg-push-5 {
1824
+ left: 41.66666667%;
1825
+ }
1826
+ .pt-cv-wrapper .col-lg-push-4 {
1827
+ left: 33.33333333%;
1828
+ }
1829
+ .pt-cv-wrapper .col-lg-push-3 {
1830
+ left: 25%;
1831
+ }
1832
+ .pt-cv-wrapper .col-lg-push-2 {
1833
+ left: 16.66666667%;
1834
+ }
1835
+ .pt-cv-wrapper .col-lg-push-1 {
1836
+ left: 8.33333333%;
1837
+ }
1838
+ .pt-cv-wrapper .col-lg-push-0 {
1839
+ left: auto;
1840
+ }
1841
+ .pt-cv-wrapper .col-lg-offset-12 {
1842
+ margin-left: 100%;
1843
+ }
1844
+ .pt-cv-wrapper .col-lg-offset-11 {
1845
+ margin-left: 91.66666667%;
1846
+ }
1847
+ .pt-cv-wrapper .col-lg-offset-10 {
1848
+ margin-left: 83.33333333%;
1849
+ }
1850
+ .pt-cv-wrapper .col-lg-offset-9 {
1851
+ margin-left: 75%;
1852
+ }
1853
+ .pt-cv-wrapper .col-lg-offset-8 {
1854
+ margin-left: 66.66666667%;
1855
+ }
1856
+ .pt-cv-wrapper .col-lg-offset-7 {
1857
+ margin-left: 58.33333333%;
1858
+ }
1859
+ .pt-cv-wrapper .col-lg-offset-6 {
1860
+ margin-left: 50%;
1861
+ }
1862
+ .pt-cv-wrapper .col-lg-offset-5 {
1863
+ margin-left: 41.66666667%;
1864
+ }
1865
+ .pt-cv-wrapper .col-lg-offset-4 {
1866
+ margin-left: 33.33333333%;
1867
+ }
1868
+ .pt-cv-wrapper .col-lg-offset-3 {
1869
+ margin-left: 25%;
1870
+ }
1871
+ .pt-cv-wrapper .col-lg-offset-2 {
1872
+ margin-left: 16.66666667%;
1873
+ }
1874
+ .pt-cv-wrapper .col-lg-offset-1 {
1875
+ margin-left: 8.33333333%;
1876
+ }
1877
+ .pt-cv-wrapper .col-lg-offset-0 {
1878
+ margin-left: 0%;
1879
+ }
1880
+ }
1881
+ .pt-cv-wrapper .btn {
1882
+ display: inline-block;
1883
+ margin-bottom: 0;
1884
+ font-weight: normal;
1885
+ text-align: center;
1886
+ vertical-align: middle;
1887
+ -ms-touch-action: manipulation;
1888
+ touch-action: manipulation;
1889
+ cursor: pointer;
1890
+ background-image: none;
1891
+ border: 1px solid transparent;
1892
+ white-space: nowrap;
1893
+ padding: 6px 12px;
1894
+ font-size: 14px;
1895
+ line-height: 1.42857143;
1896
+ border-radius: 4px;
1897
+ -webkit-user-select: none;
1898
+ -moz-user-select: none;
1899
+ -ms-user-select: none;
1900
+ user-select: none;
1901
+ }
1902
+ .pt-cv-wrapper .btn:focus,
1903
+ .pt-cv-wrapper .btn:active:focus,
1904
+ .pt-cv-wrapper .btn.active:focus,
1905
+ .pt-cv-wrapper .btn.focus,
1906
+ .pt-cv-wrapper .btn:active.focus,
1907
+ .pt-cv-wrapper .btn.active.focus {
1908
+ outline: thin dotted;
1909
+ outline: 5px auto -webkit-focus-ring-color;
1910
+ outline-offset: -2px;
1911
+ }
1912
+ .pt-cv-wrapper .btn:hover,
1913
+ .pt-cv-wrapper .btn:focus,
1914
+ .pt-cv-wrapper .btn.focus {
1915
+ color: #333333;
1916
+ text-decoration: none;
1917
+ }
1918
+ .pt-cv-wrapper .btn:active,
1919
+ .pt-cv-wrapper .btn.active {
1920
+ outline: 0;
1921
+ background-image: none;
1922
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1923
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1924
+ }
1925
+ .pt-cv-wrapper .btn.disabled,
1926
+ .pt-cv-wrapper .btn[disabled],
1927
+ .pt-cv-wrapper fieldset[disabled] .btn {
1928
+ cursor: not-allowed;
1929
+ opacity: 0.65;
1930
+ filter: alpha(opacity=65);
1931
+ -webkit-box-shadow: none;
1932
+ box-shadow: none;
1933
+ }
1934
+ .pt-cv-wrapper a.btn.disabled,
1935
+ .pt-cv-wrapper fieldset[disabled] a.btn {
1936
+ pointer-events: none;
1937
+ }
1938
+ .pt-cv-wrapper .btn-default {
1939
+ color: #333333;
1940
+ background-color: #ffffff;
1941
+ border-color: #cccccc;
1942
+ }
1943
+ .pt-cv-wrapper .btn-default:focus,
1944
+ .pt-cv-wrapper .btn-default.focus {
1945
+ color: #333333;
1946
+ background-color: #e6e6e6;
1947
+ border-color: #8c8c8c;
1948
+ }
1949
+ .pt-cv-wrapper .btn-default:hover {
1950
+ color: #333333;
1951
+ background-color: #e6e6e6;
1952
+ border-color: #adadad;
1953
+ }
1954
+ .pt-cv-wrapper .btn-default:active,
1955
+ .pt-cv-wrapper .btn-default.active,
1956
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-default {
1957
+ color: #333333;
1958
+ background-color: #e6e6e6;
1959
+ border-color: #adadad;
1960
+ }
1961
+ .pt-cv-wrapper .btn-default:active:hover,
1962
+ .pt-cv-wrapper .btn-default.active:hover,
1963
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-default:hover,
1964
+ .pt-cv-wrapper .btn-default:active:focus,
1965
+ .pt-cv-wrapper .btn-default.active:focus,
1966
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-default:focus,
1967
+ .pt-cv-wrapper .btn-default:active.focus,
1968
+ .pt-cv-wrapper .btn-default.active.focus,
1969
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-default.focus {
1970
+ color: #333333;
1971
+ background-color: #d4d4d4;
1972
+ border-color: #8c8c8c;
1973
+ }
1974
+ .pt-cv-wrapper .btn-default:active,
1975
+ .pt-cv-wrapper .btn-default.active,
1976
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-default {
1977
+ background-image: none;
1978
+ }
1979
+ .pt-cv-wrapper .btn-default.disabled,
1980
+ .pt-cv-wrapper .btn-default[disabled],
1981
+ .pt-cv-wrapper fieldset[disabled] .btn-default,
1982
+ .pt-cv-wrapper .btn-default.disabled:hover,
1983
+ .pt-cv-wrapper .btn-default[disabled]:hover,
1984
+ .pt-cv-wrapper fieldset[disabled] .btn-default:hover,
1985
+ .pt-cv-wrapper .btn-default.disabled:focus,
1986
+ .pt-cv-wrapper .btn-default[disabled]:focus,
1987
+ .pt-cv-wrapper fieldset[disabled] .btn-default:focus,
1988
+ .pt-cv-wrapper .btn-default.disabled.focus,
1989
+ .pt-cv-wrapper .btn-default[disabled].focus,
1990
+ .pt-cv-wrapper fieldset[disabled] .btn-default.focus,
1991
+ .pt-cv-wrapper .btn-default.disabled:active,
1992
+ .pt-cv-wrapper .btn-default[disabled]:active,
1993
+ .pt-cv-wrapper fieldset[disabled] .btn-default:active,
1994
+ .pt-cv-wrapper .btn-default.disabled.active,
1995
+ .pt-cv-wrapper .btn-default[disabled].active,
1996
+ .pt-cv-wrapper fieldset[disabled] .btn-default.active {
1997
+ background-color: #ffffff;
1998
+ border-color: #cccccc;
1999
+ }
2000
+ .pt-cv-wrapper .btn-default .badge {
2001
+ color: #ffffff;
2002
+ background-color: #333333;
2003
+ }
2004
+ .pt-cv-wrapper .btn-primary {
2005
+ color: #ffffff;
2006
+ background-color: #337ab7;
2007
+ border-color: #2e6da4;
2008
+ }
2009
+ .pt-cv-wrapper .btn-primary:focus,
2010
+ .pt-cv-wrapper .btn-primary.focus {
2011
+ color: #ffffff;
2012
+ background-color: #286090;
2013
+ border-color: #122b40;
2014
+ }
2015
+ .pt-cv-wrapper .btn-primary:hover {
2016
+ color: #ffffff;
2017
+ background-color: #286090;
2018
+ border-color: #204d74;
2019
+ }
2020
+ .pt-cv-wrapper .btn-primary:active,
2021
+ .pt-cv-wrapper .btn-primary.active,
2022
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-primary {
2023
+ color: #ffffff;
2024
+ background-color: #286090;
2025
+ border-color: #204d74;
2026
+ }
2027
+ .pt-cv-wrapper .btn-primary:active:hover,
2028
+ .pt-cv-wrapper .btn-primary.active:hover,
2029
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-primary:hover,
2030
+ .pt-cv-wrapper .btn-primary:active:focus,
2031
+ .pt-cv-wrapper .btn-primary.active:focus,
2032
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-primary:focus,
2033
+ .pt-cv-wrapper .btn-primary:active.focus,
2034
+ .pt-cv-wrapper .btn-primary.active.focus,
2035
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-primary.focus {
2036
+ color: #ffffff;
2037
+ background-color: #204d74;
2038
+ border-color: #122b40;
2039
+ }
2040
+ .pt-cv-wrapper .btn-primary:active,
2041
+ .pt-cv-wrapper .btn-primary.active,
2042
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-primary {
2043
+ background-image: none;
2044
+ }
2045
+ .pt-cv-wrapper .btn-primary.disabled,
2046
+ .pt-cv-wrapper .btn-primary[disabled],
2047
+ .pt-cv-wrapper fieldset[disabled] .btn-primary,
2048
+ .pt-cv-wrapper .btn-primary.disabled:hover,
2049
+ .pt-cv-wrapper .btn-primary[disabled]:hover,
2050
+ .pt-cv-wrapper fieldset[disabled] .btn-primary:hover,
2051
+ .pt-cv-wrapper .btn-primary.disabled:focus,
2052
+ .pt-cv-wrapper .btn-primary[disabled]:focus,
2053
+ .pt-cv-wrapper fieldset[disabled] .btn-primary:focus,
2054
+ .pt-cv-wrapper .btn-primary.disabled.focus,
2055
+ .pt-cv-wrapper .btn-primary[disabled].focus,
2056
+ .pt-cv-wrapper fieldset[disabled] .btn-primary.focus,
2057
+ .pt-cv-wrapper .btn-primary.disabled:active,
2058
+ .pt-cv-wrapper .btn-primary[disabled]:active,
2059
+ .pt-cv-wrapper fieldset[disabled] .btn-primary:active,
2060
+ .pt-cv-wrapper .btn-primary.disabled.active,
2061
+ .pt-cv-wrapper .btn-primary[disabled].active,
2062
+ .pt-cv-wrapper fieldset[disabled] .btn-primary.active {
2063
+ background-color: #337ab7;
2064
+ border-color: #2e6da4;
2065
+ }
2066
+ .pt-cv-wrapper .btn-primary .badge {
2067
+ color: #337ab7;
2068
+ background-color: #ffffff;
2069
+ }
2070
+ .pt-cv-wrapper .btn-success {
2071
+ color: #ffffff;
2072
+ background-color: #5cb85c;
2073
+ border-color: #4cae4c;
2074
+ }
2075
+ .pt-cv-wrapper .btn-success:focus,
2076
+ .pt-cv-wrapper .btn-success.focus {
2077
+ color: #ffffff;
2078
+ background-color: #449d44;
2079
+ border-color: #255625;
2080
+ }
2081
+ .pt-cv-wrapper .btn-success:hover {
2082
+ color: #ffffff;
2083
+ background-color: #449d44;
2084
+ border-color: #398439;
2085
+ }
2086
+ .pt-cv-wrapper .btn-success:active,
2087
+ .pt-cv-wrapper .btn-success.active,
2088
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-success {
2089
+ color: #ffffff;
2090
+ background-color: #449d44;
2091
+ border-color: #398439;
2092
+ }
2093
+ .pt-cv-wrapper .btn-success:active:hover,
2094
+ .pt-cv-wrapper .btn-success.active:hover,
2095
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-success:hover,
2096
+ .pt-cv-wrapper .btn-success:active:focus,
2097
+ .pt-cv-wrapper .btn-success.active:focus,
2098
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-success:focus,
2099
+ .pt-cv-wrapper .btn-success:active.focus,
2100
+ .pt-cv-wrapper .btn-success.active.focus,
2101
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-success.focus {
2102
+ color: #ffffff;
2103
+ background-color: #398439;
2104
+ border-color: #255625;
2105
+ }
2106
+ .pt-cv-wrapper .btn-success:active,
2107
+ .pt-cv-wrapper .btn-success.active,
2108
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-success {
2109
+ background-image: none;
2110
+ }
2111
+ .pt-cv-wrapper .btn-success.disabled,
2112
+ .pt-cv-wrapper .btn-success[disabled],
2113
+ .pt-cv-wrapper fieldset[disabled] .btn-success,
2114
+ .pt-cv-wrapper .btn-success.disabled:hover,
2115
+ .pt-cv-wrapper .btn-success[disabled]:hover,
2116
+ .pt-cv-wrapper fieldset[disabled] .btn-success:hover,
2117
+ .pt-cv-wrapper .btn-success.disabled:focus,
2118
+ .pt-cv-wrapper .btn-success[disabled]:focus,
2119
+ .pt-cv-wrapper fieldset[disabled] .btn-success:focus,
2120
+ .pt-cv-wrapper .btn-success.disabled.focus,
2121
+ .pt-cv-wrapper .btn-success[disabled].focus,
2122
+ .pt-cv-wrapper fieldset[disabled] .btn-success.focus,
2123
+ .pt-cv-wrapper .btn-success.disabled:active,
2124
+ .pt-cv-wrapper .btn-success[disabled]:active,
2125
+ .pt-cv-wrapper fieldset[disabled] .btn-success:active,
2126
+ .pt-cv-wrapper .btn-success.disabled.active,
2127
+ .pt-cv-wrapper .btn-success[disabled].active,
2128
+ .pt-cv-wrapper fieldset[disabled] .btn-success.active {
2129
+ background-color: #5cb85c;
2130
+ border-color: #4cae4c;
2131
+ }
2132
+ .pt-cv-wrapper .btn-success .badge {
2133
+ color: #5cb85c;
2134
+ background-color: #ffffff;
2135
+ }
2136
+ .pt-cv-wrapper .btn-info {
2137
+ color: #ffffff;
2138
+ background-color: #5bc0de;
2139
+ border-color: #46b8da;
2140
+ }
2141
+ .pt-cv-wrapper .btn-info:focus,
2142
+ .pt-cv-wrapper .btn-info.focus {
2143
+ color: #ffffff;
2144
+ background-color: #31b0d5;
2145
+ border-color: #1b6d85;
2146
+ }
2147
+ .pt-cv-wrapper .btn-info:hover {
2148
+ color: #ffffff;
2149
+ background-color: #31b0d5;
2150
+ border-color: #269abc;
2151
+ }
2152
+ .pt-cv-wrapper .btn-info:active,
2153
+ .pt-cv-wrapper .btn-info.active,
2154
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-info {
2155
+ color: #ffffff;
2156
+ background-color: #31b0d5;
2157
+ border-color: #269abc;
2158
+ }
2159
+ .pt-cv-wrapper .btn-info:active:hover,
2160
+ .pt-cv-wrapper .btn-info.active:hover,
2161
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-info:hover,
2162
+ .pt-cv-wrapper .btn-info:active:focus,
2163
+ .pt-cv-wrapper .btn-info.active:focus,
2164
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-info:focus,
2165
+ .pt-cv-wrapper .btn-info:active.focus,
2166
+ .pt-cv-wrapper .btn-info.active.focus,
2167
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-info.focus {
2168
+ color: #ffffff;
2169
+ background-color: #269abc;
2170
+ border-color: #1b6d85;
2171
+ }
2172
+ .pt-cv-wrapper .btn-info:active,
2173
+ .pt-cv-wrapper .btn-info.active,
2174
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-info {
2175
+ background-image: none;
2176
+ }
2177
+ .pt-cv-wrapper .btn-info.disabled,
2178
+ .pt-cv-wrapper .btn-info[disabled],
2179
+ .pt-cv-wrapper fieldset[disabled] .btn-info,
2180
+ .pt-cv-wrapper .btn-info.disabled:hover,
2181
+ .pt-cv-wrapper .btn-info[disabled]:hover,
2182
+ .pt-cv-wrapper fieldset[disabled] .btn-info:hover,
2183
+ .pt-cv-wrapper .btn-info.disabled:focus,
2184
+ .pt-cv-wrapper .btn-info[disabled]:focus,
2185
+ .pt-cv-wrapper fieldset[disabled] .btn-info:focus,
2186
+ .pt-cv-wrapper .btn-info.disabled.focus,
2187
+ .pt-cv-wrapper .btn-info[disabled].focus,
2188
+ .pt-cv-wrapper fieldset[disabled] .btn-info.focus,
2189
+ .pt-cv-wrapper .btn-info.disabled:active,
2190
+ .pt-cv-wrapper .btn-info[disabled]:active,
2191
+ .pt-cv-wrapper fieldset[disabled] .btn-info:active,
2192
+ .pt-cv-wrapper .btn-info.disabled.active,
2193
+ .pt-cv-wrapper .btn-info[disabled].active,
2194
+ .pt-cv-wrapper fieldset[disabled] .btn-info.active {
2195
+ background-color: #5bc0de;
2196
+ border-color: #46b8da;
2197
+ }
2198
+ .pt-cv-wrapper .btn-info .badge {
2199
+ color: #5bc0de;
2200
+ background-color: #ffffff;
2201
+ }
2202
+ .pt-cv-wrapper .btn-warning {
2203
+ color: #ffffff;
2204
+ background-color: #f0ad4e;
2205
+ border-color: #eea236;
2206
+ }
2207
+ .pt-cv-wrapper .btn-warning:focus,
2208
+ .pt-cv-wrapper .btn-warning.focus {
2209
+ color: #ffffff;
2210
+ background-color: #ec971f;
2211
+ border-color: #985f0d;
2212
+ }
2213
+ .pt-cv-wrapper .btn-warning:hover {
2214
+ color: #ffffff;
2215
+ background-color: #ec971f;
2216
+ border-color: #d58512;
2217
+ }
2218
+ .pt-cv-wrapper .btn-warning:active,
2219
+ .pt-cv-wrapper .btn-warning.active,
2220
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-warning {
2221
+ color: #ffffff;
2222
+ background-color: #ec971f;
2223
+ border-color: #d58512;
2224
+ }
2225
+ .pt-cv-wrapper .btn-warning:active:hover,
2226
+ .pt-cv-wrapper .btn-warning.active:hover,
2227
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-warning:hover,
2228
+ .pt-cv-wrapper .btn-warning:active:focus,
2229
+ .pt-cv-wrapper .btn-warning.active:focus,
2230
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-warning:focus,
2231
+ .pt-cv-wrapper .btn-warning:active.focus,
2232
+ .pt-cv-wrapper .btn-warning.active.focus,
2233
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-warning.focus {
2234
+ color: #ffffff;
2235
+ background-color: #d58512;
2236
+ border-color: #985f0d;
2237
+ }
2238
+ .pt-cv-wrapper .btn-warning:active,
2239
+ .pt-cv-wrapper .btn-warning.active,
2240
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-warning {
2241
+ background-image: none;
2242
+ }
2243
+ .pt-cv-wrapper .btn-warning.disabled,
2244
+ .pt-cv-wrapper .btn-warning[disabled],
2245
+ .pt-cv-wrapper fieldset[disabled] .btn-warning,
2246
+ .pt-cv-wrapper .btn-warning.disabled:hover,
2247
+ .pt-cv-wrapper .btn-warning[disabled]:hover,
2248
+ .pt-cv-wrapper fieldset[disabled] .btn-warning:hover,
2249
+ .pt-cv-wrapper .btn-warning.disabled:focus,
2250
+ .pt-cv-wrapper .btn-warning[disabled]:focus,
2251
+ .pt-cv-wrapper fieldset[disabled] .btn-warning:focus,
2252
+ .pt-cv-wrapper .btn-warning.disabled.focus,
2253
+ .pt-cv-wrapper .btn-warning[disabled].focus,
2254
+ .pt-cv-wrapper fieldset[disabled] .btn-warning.focus,
2255
+ .pt-cv-wrapper .btn-warning.disabled:active,
2256
+ .pt-cv-wrapper .btn-warning[disabled]:active,
2257
+ .pt-cv-wrapper fieldset[disabled] .btn-warning:active,
2258
+ .pt-cv-wrapper .btn-warning.disabled.active,
2259
+ .pt-cv-wrapper .btn-warning[disabled].active,
2260
+ .pt-cv-wrapper fieldset[disabled] .btn-warning.active {
2261
+ background-color: #f0ad4e;
2262
+ border-color: #eea236;
2263
+ }
2264
+ .pt-cv-wrapper .btn-warning .badge {
2265
+ color: #f0ad4e;
2266
+ background-color: #ffffff;
2267
+ }
2268
+ .pt-cv-wrapper .btn-danger {
2269
+ color: #ffffff;
2270
+ background-color: #d9534f;
2271
+ border-color: #d43f3a;
2272
+ }
2273
+ .pt-cv-wrapper .btn-danger:focus,
2274
+ .pt-cv-wrapper .btn-danger.focus {
2275
+ color: #ffffff;
2276
+ background-color: #c9302c;
2277
+ border-color: #761c19;
2278
+ }
2279
+ .pt-cv-wrapper .btn-danger:hover {
2280
+ color: #ffffff;
2281
+ background-color: #c9302c;
2282
+ border-color: #ac2925;
2283
+ }
2284
+ .pt-cv-wrapper .btn-danger:active,
2285
+ .pt-cv-wrapper .btn-danger.active,
2286
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-danger {
2287
+ color: #ffffff;
2288
+ background-color: #c9302c;
2289
+ border-color: #ac2925;
2290
+ }
2291
+ .pt-cv-wrapper .btn-danger:active:hover,
2292
+ .pt-cv-wrapper .btn-danger.active:hover,
2293
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-danger:hover,
2294
+ .pt-cv-wrapper .btn-danger:active:focus,
2295
+ .pt-cv-wrapper .btn-danger.active:focus,
2296
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-danger:focus,
2297
+ .pt-cv-wrapper .btn-danger:active.focus,
2298
+ .pt-cv-wrapper .btn-danger.active.focus,
2299
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-danger.focus {
2300
+ color: #ffffff;
2301
+ background-color: #ac2925;
2302
+ border-color: #761c19;
2303
+ }
2304
+ .pt-cv-wrapper .btn-danger:active,
2305
+ .pt-cv-wrapper .btn-danger.active,
2306
+ .pt-cv-wrapper .open > .dropdown-toggle.btn-danger {
2307
+ background-image: none;
2308
+ }
2309
+ .pt-cv-wrapper .btn-danger.disabled,
2310
+ .pt-cv-wrapper .btn-danger[disabled],
2311
+ .pt-cv-wrapper fieldset[disabled] .btn-danger,
2312
+ .pt-cv-wrapper .btn-danger.disabled:hover,
2313
+ .pt-cv-wrapper .btn-danger[disabled]:hover,
2314
+ .pt-cv-wrapper fieldset[disabled] .btn-danger:hover,
2315
+ .pt-cv-wrapper .btn-danger.disabled:focus,
2316
+ .pt-cv-wrapper .btn-danger[disabled]:focus,
2317
+ .pt-cv-wrapper fieldset[disabled] .btn-danger:focus,
2318
+ .pt-cv-wrapper .btn-danger.disabled.focus,
2319
+ .pt-cv-wrapper .btn-danger[disabled].focus,
2320
+ .pt-cv-wrapper fieldset[disabled] .btn-danger.focus,
2321
+ .pt-cv-wrapper .btn-danger.disabled:active,
2322
+ .pt-cv-wrapper .btn-danger[disabled]:active,
2323
+ .pt-cv-wrapper fieldset[disabled] .btn-danger:active,
2324
+ .pt-cv-wrapper .btn-danger.disabled.active,
2325
+ .pt-cv-wrapper .btn-danger[disabled].active,
2326
+ .pt-cv-wrapper fieldset[disabled] .btn-danger.active {
2327
+ background-color: #d9534f;
2328
+ border-color: #d43f3a;
2329
+ }
2330
+ .pt-cv-wrapper .btn-danger .badge {
2331
+ color: #d9534f;
2332
+ background-color: #ffffff;
2333
+ }
2334
+ .pt-cv-wrapper .btn-link {
2335
+ color: #337ab7;
2336
+ font-weight: normal;
2337
+ border-radius: 0;
2338
+ }
2339
+ .pt-cv-wrapper .btn-link,
2340
+ .pt-cv-wrapper .btn-link:active,
2341
+ .pt-cv-wrapper .btn-link.active,
2342
+ .pt-cv-wrapper .btn-link[disabled],
2343
+ .pt-cv-wrapper fieldset[disabled] .btn-link {
2344
+ background-color: transparent;
2345
+ -webkit-box-shadow: none;
2346
+ box-shadow: none;
2347
+ }
2348
+ .pt-cv-wrapper .btn-link,
2349
+ .pt-cv-wrapper .btn-link:hover,
2350
+ .pt-cv-wrapper .btn-link:focus,
2351
+ .pt-cv-wrapper .btn-link:active {
2352
+ border-color: transparent;
2353
+ }
2354
+ .pt-cv-wrapper .btn-link:hover,
2355
+ .pt-cv-wrapper .btn-link:focus {
2356
+ color: #23527c;
2357
+ text-decoration: underline;
2358
+ background-color: transparent;
2359
+ }
2360
+ .pt-cv-wrapper .btn-link[disabled]:hover,
2361
+ .pt-cv-wrapper fieldset[disabled] .btn-link:hover,
2362
+ .pt-cv-wrapper .btn-link[disabled]:focus,
2363
+ .pt-cv-wrapper fieldset[disabled] .btn-link:focus {
2364
+ color: #777777;
2365
+ text-decoration: none;
2366
+ }
2367
+ .pt-cv-wrapper .btn-lg,
2368
+ .pt-cv-wrapper .btn-group-lg > .btn {
2369
+ padding: 10px 16px;
2370
+ font-size: 18px;
2371
+ line-height: 1.3333333;
2372
+ border-radius: 6px;
2373
+ }
2374
+ .pt-cv-wrapper .btn-sm,
2375
+ .pt-cv-wrapper .btn-group-sm > .btn {
2376
+ padding: 5px 10px;
2377
+ font-size: 12px;
2378
+ line-height: 1.5;
2379
+ border-radius: 3px;
2380
+ }
2381
+ .pt-cv-wrapper .btn-xs,
2382
+ .pt-cv-wrapper .btn-group-xs > .btn {
2383
+ padding: 1px 5px;
2384
+ font-size: 12px;
2385
+ line-height: 1.5;
2386
+ border-radius: 3px;
2387
+ }
2388
+ .pt-cv-wrapper .btn-block {
2389
+ display: block;
2390
+ width: 100%;
2391
+ }
2392
+ .pt-cv-wrapper .btn-block + .btn-block {
2393
+ margin-top: 5px;
2394
+ }
2395
+ .pt-cv-wrapper input[type="submit"].btn-block,
2396
+ .pt-cv-wrapper input[type="reset"].btn-block,
2397
+ .pt-cv-wrapper input[type="button"].btn-block {
2398
+ width: 100%;
2399
+ }
2400
+ .pt-cv-wrapper .fade {
2401
+ opacity: 0;
2402
+ -webkit-transition: opacity 0.15s linear;
2403
+ -o-transition: opacity 0.15s linear;
2404
+ transition: opacity 0.15s linear;
2405
+ }
2406
+ .pt-cv-wrapper .fade.in {
2407
+ opacity: 1;
2408
+ }
2409
+ .pt-cv-wrapper .collapse {
2410
+ display: none;
2411
+ }
2412
+ .pt-cv-wrapper .collapse.in {
2413
+ display: block;
2414
+ }
2415
+ .pt-cv-wrapper tr.collapse.in {
2416
+ display: table-row;
2417
+ }
2418
+ .pt-cv-wrapper tbody.collapse.in {
2419
+ display: table-row-group;
2420
+ }
2421
+ .pt-cv-wrapper .collapsing {
2422
+ position: relative;
2423
+ height: 0;
2424
+ overflow: hidden;
2425
+ -webkit-transition-property: height, visibility;
2426
+ -o-transition-property: height, visibility;
2427
+ transition-property: height, visibility;
2428
+ -webkit-transition-duration: 0.35s;
2429
+ -o-transition-duration: 0.35s;
2430
+ transition-duration: 0.35s;
2431
+ -webkit-transition-timing-function: ease;
2432
+ -o-transition-timing-function: ease;
2433
+ transition-timing-function: ease;
2434
+ }
2435
+ .pt-cv-wrapper .caret {
2436
+ display: inline-block;
2437
+ width: 0;
2438
+ height: 0;
2439
+ margin-left: 2px;
2440
+ vertical-align: middle;
2441
+ border-top: 4px dashed;
2442
+ border-top: 4px solid \9;
2443
+ border-right: 4px solid transparent;
2444
+ border-left: 4px solid transparent;
2445
+ }
2446
+ .pt-cv-wrapper .dropup,
2447
+ .pt-cv-wrapper .dropdown {
2448
+ position: relative;
2449
+ }
2450
+ .pt-cv-wrapper .dropdown-toggle:focus {
2451
+ outline: 0;
2452
+ }
2453
+ .pt-cv-wrapper .dropdown-menu {
2454
+ position: absolute;
2455
+ top: 100%;
2456
+ left: 0;
2457
+ z-index: 1000;
2458
+ display: none;
2459
+ float: left;
2460
+ min-width: 160px;
2461
+ padding: 5px 0;
2462
+ margin: 2px 0 0;
2463
+ list-style: none;
2464
+ font-size: 14px;
2465
+ text-align: left;
2466
+ background-color: #ffffff;
2467
+ border: 1px solid #cccccc;
2468
+ border: 1px solid rgba(0, 0, 0, 0.15);
2469
+ border-radius: 4px;
2470
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2471
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2472
+ -webkit-background-clip: padding-box;
2473
+ background-clip: padding-box;
2474
+ }
2475
+ .pt-cv-wrapper .dropdown-menu.pull-right {
2476
+ right: 0;
2477
+ left: auto;
2478
+ }
2479
+ .pt-cv-wrapper .dropdown-menu .divider {
2480
+ height: 1px;
2481
+ margin: 9px 0;
2482
+ overflow: hidden;
2483
+ background-color: #e5e5e5;
2484
+ }
2485
+ .pt-cv-wrapper .dropdown-menu > li > a {
2486
+ display: block;
2487
+ padding: 3px 20px;
2488
+ clear: both;
2489
+ font-weight: normal;
2490
+ line-height: 1.42857143;
2491
+ color: #333333;
2492
+ white-space: nowrap;
2493
+ }
2494
+ .pt-cv-wrapper .dropdown-menu > li > a:hover,
2495
+ .pt-cv-wrapper .dropdown-menu > li > a:focus {
2496
+ text-decoration: none;
2497
+ color: #262626;
2498
+ background-color: #f5f5f5;
2499
+ }
2500
+ .pt-cv-wrapper .dropdown-menu > .active > a,
2501
+ .pt-cv-wrapper .dropdown-menu > .active > a:hover,
2502
+ .pt-cv-wrapper .dropdown-menu > .active > a:focus {
2503
+ color: #ffffff;
2504
+ text-decoration: none;
2505
+ outline: 0;
2506
+ background-color: #337ab7;
2507
+ }
2508
+ .pt-cv-wrapper .dropdown-menu > .disabled > a,
2509
+ .pt-cv-wrapper .dropdown-menu > .disabled > a:hover,
2510
+ .pt-cv-wrapper .dropdown-menu > .disabled > a:focus {
2511
+ color: #777777;
2512
+ }
2513
+ .pt-cv-wrapper .dropdown-menu > .disabled > a:hover,
2514
+ .pt-cv-wrapper .dropdown-menu > .disabled > a:focus {
2515
+ text-decoration: none;
2516
+ background-color: transparent;
2517
+ background-image: none;
2518
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2519
+ cursor: not-allowed;
2520
+ }
2521
+ .pt-cv-wrapper .open > .dropdown-menu {
2522
+ display: block;
2523
+ }
2524
+ .pt-cv-wrapper .open > a {
2525
+ outline: 0;
2526
+ }
2527
+ .pt-cv-wrapper .dropdown-menu-right {
2528
+ left: auto;
2529
+ right: 0;
2530
+ }
2531
+ .pt-cv-wrapper .dropdown-menu-left {
2532
+ left: 0;
2533
+ right: auto;
2534
+ }
2535
+ .pt-cv-wrapper .dropdown-header {
2536
+ display: block;
2537
+ padding: 3px 20px;
2538
+ font-size: 12px;
2539
+ line-height: 1.42857143;
2540
+ color: #777777;
2541
+ white-space: nowrap;
2542
+ }
2543
+ .pt-cv-wrapper .dropdown-backdrop {
2544
+ position: fixed;
2545
+ left: 0;
2546
+ right: 0;
2547
+ bottom: 0;
2548
+ top: 0;
2549
+ z-index: 990;
2550
+ }
2551
+ .pt-cv-wrapper .pull-right > .dropdown-menu {
2552
+ right: 0;
2553
+ left: auto;
2554
+ }
2555
+ .pt-cv-wrapper .dropup .caret,
2556
+ .pt-cv-wrapper .navbar-fixed-bottom .dropdown .caret {
2557
+ border-top: 0;
2558
+ border-bottom: 4px dashed;
2559
+ border-bottom: 4px solid \9;
2560
+ content: "";
2561
+ }
2562
+ .pt-cv-wrapper .dropup .dropdown-menu,
2563
+ .pt-cv-wrapper .navbar-fixed-bottom .dropdown .dropdown-menu {
2564
+ top: auto;
2565
+ bottom: 100%;
2566
+ margin-bottom: 2px;
2567
+ }
2568
+ @media (min-width: 768px) {
2569
+ .pt-cv-wrapper .navbar-right .dropdown-menu {
2570
+ left: auto;
2571
+ right: 0;
2572
+ }
2573
+ .pt-cv-wrapper .navbar-right .dropdown-menu-left {
2574
+ left: 0;
2575
+ right: auto;
2576
+ }
2577
+ }
2578
+ .pt-cv-wrapper .btn-group,
2579
+ .pt-cv-wrapper .btn-group-vertical {
2580
+ position: relative;
2581
+ display: inline-block;
2582
+ vertical-align: middle;
2583
+ }
2584
+ .pt-cv-wrapper .btn-group > .btn,
2585
+ .pt-cv-wrapper .btn-group-vertical > .btn {
2586
+ position: relative;
2587
+ float: left;
2588
+ }
2589
+ .pt-cv-wrapper .btn-group > .btn:hover,
2590
+ .pt-cv-wrapper .btn-group-vertical > .btn:hover,
2591
+ .pt-cv-wrapper .btn-group > .btn:focus,
2592
+ .pt-cv-wrapper .btn-group-vertical > .btn:focus,
2593
+ .pt-cv-wrapper .btn-group > .btn:active,
2594
+ .pt-cv-wrapper .btn-group-vertical > .btn:active,
2595
+ .pt-cv-wrapper .btn-group > .btn.active,
2596
+ .pt-cv-wrapper .btn-group-vertical > .btn.active {
2597
+ z-index: 2;
2598
+ }
2599
+ .pt-cv-wrapper .btn-group .btn + .btn,
2600
+ .pt-cv-wrapper .btn-group .btn + .btn-group,
2601
+ .pt-cv-wrapper .btn-group .btn-group + .btn,
2602
+ .pt-cv-wrapper .btn-group .btn-group + .btn-group {
2603
+ margin-left: -1px;
2604
+ }
2605
+ .pt-cv-wrapper .btn-toolbar {
2606
+ margin-left: -5px;
2607
+ }
2608
+ .pt-cv-wrapper .btn-toolbar .btn,
2609
+ .pt-cv-wrapper .btn-toolbar .btn-group,
2610
+ .pt-cv-wrapper .btn-toolbar .input-group {
2611
+ float: left;
2612
+ }
2613
+ .pt-cv-wrapper .btn-toolbar > .btn,
2614
+ .pt-cv-wrapper .btn-toolbar > .btn-group,
2615
+ .pt-cv-wrapper .btn-toolbar > .input-group {
2616
+ margin-left: 5px;
2617
+ }
2618
+ .pt-cv-wrapper .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
2619
+ border-radius: 0;
2620
+ }
2621
+ .pt-cv-wrapper .btn-group > .btn:first-child {
2622
+ margin-left: 0;
2623
+ }
2624
+ .pt-cv-wrapper .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
2625
+ border-bottom-right-radius: 0;
2626
+ border-top-right-radius: 0;
2627
+ }
2628
+ .pt-cv-wrapper .btn-group > .btn:last-child:not(:first-child),
2629
+ .pt-cv-wrapper .btn-group > .dropdown-toggle:not(:first-child) {
2630
+ border-bottom-left-radius: 0;
2631
+ border-top-left-radius: 0;
2632
+ }
2633
+ .pt-cv-wrapper .btn-group > .btn-group {
2634
+ float: left;
2635
+ }
2636
+ .pt-cv-wrapper .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
2637
+ border-radius: 0;
2638
+ }
2639
+ .pt-cv-wrapper .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
2640
+ .pt-cv-wrapper .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
2641
+ border-bottom-right-radius: 0;
2642
+ border-top-right-radius: 0;
2643
+ }
2644
+ .pt-cv-wrapper .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
2645
+ border-bottom-left-radius: 0;
2646
+ border-top-left-radius: 0;
2647
+ }
2648
+ .pt-cv-wrapper .btn-group .dropdown-toggle:active,
2649
+ .pt-cv-wrapper .btn-group.open .dropdown-toggle {
2650
+ outline: 0;
2651
+ }
2652
+ .pt-cv-wrapper .btn-group > .btn + .dropdown-toggle {
2653
+ padding-left: 8px;
2654
+ padding-right: 8px;
2655
+ }
2656
+ .pt-cv-wrapper .btn-group > .btn-lg + .dropdown-toggle {
2657
+ padding-left: 12px;
2658
+ padding-right: 12px;
2659
+ }
2660
+ .pt-cv-wrapper .btn-group.open .dropdown-toggle {
2661
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2662
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2663
+ }
2664
+ .pt-cv-wrapper .btn-group.open .dropdown-toggle.btn-link {
2665
+ -webkit-box-shadow: none;
2666
+ box-shadow: none;
2667
+ }
2668
+ .pt-cv-wrapper .btn .caret {
2669
+ margin-left: 0;
2670
+ }
2671
+ .pt-cv-wrapper .btn-lg .caret {
2672
+ border-width: 5px 5px 0;
2673
+ border-bottom-width: 0;
2674
+ }
2675
+ .pt-cv-wrapper .dropup .btn-lg .caret {
2676
+ border-width: 0 5px 5px;
2677
+ }
2678
+ .pt-cv-wrapper .btn-group-vertical > .btn,
2679
+ .pt-cv-wrapper .btn-group-vertical > .btn-group,
2680
+ .pt-cv-wrapper .btn-group-vertical > .btn-group > .btn {
2681
+ display: block;
2682
+ float: none;
2683
+ width: 100%;
2684
+ max-width: 100%;
2685
+ }
2686
+ .pt-cv-wrapper .btn-group-vertical > .btn-group > .btn {
2687
+ float: none;
2688
+ }
2689
+ .pt-cv-wrapper .btn-group-vertical > .btn + .btn,
2690
+ .pt-cv-wrapper .btn-group-vertical > .btn + .btn-group,
2691
+ .pt-cv-wrapper .btn-group-vertical > .btn-group + .btn,
2692
+ .pt-cv-wrapper .btn-group-vertical > .btn-group + .btn-group {
2693
+ margin-top: -1px;
2694
+ margin-left: 0;
2695
+ }
2696
+ .pt-cv-wrapper .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
2697
+ border-radius: 0;
2698
+ }
2699
+ .pt-cv-wrapper .btn-group-vertical > .btn:first-child:not(:last-child) {
2700
+ border-top-right-radius: 4px;
2701
+ border-bottom-right-radius: 0;
2702
+ border-bottom-left-radius: 0;
2703
+ }
2704
+ .pt-cv-wrapper .btn-group-vertical > .btn:last-child:not(:first-child) {
2705
+ border-bottom-left-radius: 4px;
2706
+ border-top-right-radius: 0;
2707
+ border-top-left-radius: 0;
2708
+ }
2709
+ .pt-cv-wrapper .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
2710
+ border-radius: 0;
2711
+ }
2712
+ .pt-cv-wrapper .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
2713
+ .pt-cv-wrapper .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
2714
+ border-bottom-right-radius: 0;
2715
+ border-bottom-left-radius: 0;
2716
+ }
2717
+ .pt-cv-wrapper .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
2718
+ border-top-right-radius: 0;
2719
+ border-top-left-radius: 0;
2720
+ }
2721
+ .pt-cv-wrapper .btn-group-justified {
2722
+ display: table;
2723
+ width: 100%;
2724
+ table-layout: fixed;
2725
+ border-collapse: separate;
2726
+ }
2727
+ .pt-cv-wrapper .btn-group-justified > .btn,
2728
+ .pt-cv-wrapper .btn-group-justified > .btn-group {
2729
+ float: none;
2730
+ display: table-cell;
2731
+ width: 1%;
2732
+ }
2733
+ .pt-cv-wrapper .btn-group-justified > .btn-group .btn {
2734
+ width: 100%;
2735
+ }
2736
+ .pt-cv-wrapper .btn-group-justified > .btn-group .dropdown-menu {
2737
+ left: auto;
2738
+ }
2739
+ .pt-cv-wrapper [data-toggle="buttons"] > .btn input[type="radio"],
2740
+ .pt-cv-wrapper [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
2741
+ .pt-cv-wrapper [data-toggle="buttons"] > .btn input[type="checkbox"],
2742
+ .pt-cv-wrapper [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
2743
+ position: absolute;
2744
+ clip: rect(0, 0, 0, 0);
2745
+ pointer-events: none;
2746
+ }
2747
+ .pt-cv-wrapper .nav {
2748
+ margin-bottom: 0;
2749
+ padding-left: 0;
2750
+ list-style: none;
2751
+ }
2752
+ .pt-cv-wrapper .nav > li {
2753
+ position: relative;
2754
+ display: block;
2755
+ }
2756
+ .pt-cv-wrapper .nav > li > a {
2757
+ position: relative;
2758
+ display: block;
2759
+ padding: 10px 15px;
2760
+ }
2761
+ .pt-cv-wrapper .nav > li > a:hover,
2762
+ .pt-cv-wrapper .nav > li > a:focus {
2763
+ text-decoration: none;
2764
+ background-color: #eeeeee;
2765
+ }
2766
+ .pt-cv-wrapper .nav > li.disabled > a {
2767
+ color: #777777;
2768
+ }
2769
+ .pt-cv-wrapper .nav > li.disabled > a:hover,
2770
+ .pt-cv-wrapper .nav > li.disabled > a:focus {
2771
+ color: #777777;
2772
+ text-decoration: none;
2773
+ background-color: transparent;
2774
+ cursor: not-allowed;
2775
+ }
2776
+ .pt-cv-wrapper .nav .open > a,
2777
+ .pt-cv-wrapper .nav .open > a:hover,
2778
+ .pt-cv-wrapper .nav .open > a:focus {
2779
+ background-color: #eeeeee;
2780
+ border-color: #337ab7;
2781
+ }
2782
+ .pt-cv-wrapper .nav .nav-divider {
2783
+ height: 1px;
2784
+ margin: 9px 0;
2785
+ overflow: hidden;
2786
+ background-color: #e5e5e5;
2787
+ }
2788
+ .pt-cv-wrapper .nav > li > a > img {
2789
+ max-width: none;
2790
+ }
2791
+ .pt-cv-wrapper .nav-tabs {
2792
+ border-bottom: 1px solid #dddddd;
2793
+ }
2794
+ .pt-cv-wrapper .nav-tabs > li {
2795
+ float: left;
2796
+ margin-bottom: -1px;
2797
+ }
2798
+ .pt-cv-wrapper .nav-tabs > li > a {
2799
+ margin-right: 2px;
2800
+ line-height: 1.42857143;
2801
+ border: 1px solid transparent;
2802
+ border-radius: 4px 4px 0 0;
2803
+ }
2804
+ .pt-cv-wrapper .nav-tabs > li > a:hover {
2805
+ border-color: #eeeeee #eeeeee #dddddd;
2806
+ }
2807
+ .pt-cv-wrapper .nav-tabs > li.active > a,
2808
+ .pt-cv-wrapper .nav-tabs > li.active > a:hover,
2809
+ .pt-cv-wrapper .nav-tabs > li.active > a:focus {
2810
+ color: #555555;
2811
+ background-color: #ffffff;
2812
+ border: 1px solid #dddddd;
2813
+ border-bottom-color: transparent;
2814
+ cursor: default;
2815
+ }
2816
+ .pt-cv-wrapper .nav-tabs.nav-justified {
2817
+ width: 100%;
2818
+ border-bottom: 0;
2819
+ }
2820
+ .pt-cv-wrapper .nav-tabs.nav-justified > li {
2821
+ float: none;
2822
+ }
2823
+ .pt-cv-wrapper .nav-tabs.nav-justified > li > a {
2824
+ text-align: center;
2825
+ margin-bottom: 5px;
2826
+ }
2827
+ .pt-cv-wrapper .nav-tabs.nav-justified > .dropdown .dropdown-menu {
2828
+ top: auto;
2829
+ left: auto;
2830
+ }
2831
+ @media (min-width: 768px) {
2832
+ .pt-cv-wrapper .nav-tabs.nav-justified > li {
2833
+ display: table-cell;
2834
+ width: 1%;
2835
+ }
2836
+ .pt-cv-wrapper .nav-tabs.nav-justified > li > a {
2837
+ margin-bottom: 0;
2838
+ }
2839
+ }
2840
+ .pt-cv-wrapper .nav-tabs.nav-justified > li > a {
2841
+ margin-right: 0;
2842
+ border-radius: 4px;
2843
+ }
2844
+ .pt-cv-wrapper .nav-tabs.nav-justified > .active > a,
2845
+ .pt-cv-wrapper .nav-tabs.nav-justified > .active > a:hover,
2846
+ .pt-cv-wrapper .nav-tabs.nav-justified > .active > a:focus {
2847
+ border: 1px solid #dddddd;
2848
+ }
2849
+ @media (min-width: 768px) {
2850
+ .pt-cv-wrapper .nav-tabs.nav-justified > li > a {
2851
+ border-bottom: 1px solid #dddddd;
2852
+ border-radius: 4px 4px 0 0;
2853
+ }
2854
+ .pt-cv-wrapper .nav-tabs.nav-justified > .active > a,
2855
+ .pt-cv-wrapper .nav-tabs.nav-justified > .active > a:hover,
2856
+ .pt-cv-wrapper .nav-tabs.nav-justified > .active > a:focus {
2857
+ border-bottom-color: #ffffff;
2858
+ }
2859
+ }
2860
+ .pt-cv-wrapper .nav-pills > li {
2861
+ float: left;
2862
+ }
2863
+ .pt-cv-wrapper .nav-pills > li > a {
2864
+ border-radius: 4px;
2865
+ }
2866
+ .pt-cv-wrapper .nav-pills > li + li {
2867
+ margin-left: 2px;
2868
+ }
2869
+ .pt-cv-wrapper .nav-pills > li.active > a,
2870
+ .pt-cv-wrapper .nav-pills > li.active > a:hover,
2871
+ .pt-cv-wrapper .nav-pills > li.active > a:focus {
2872
+ color: #ffffff;
2873
+ background-color: #337ab7;
2874
+ }
2875
+ .pt-cv-wrapper .nav-stacked > li {
2876
+ float: none;
2877
+ }
2878
+ .pt-cv-wrapper .nav-stacked > li + li {
2879
+ margin-top: 2px;
2880
+ margin-left: 0;
2881
+ }
2882
+ .pt-cv-wrapper .nav-justified {
2883
+ width: 100%;
2884
+ }
2885
+ .pt-cv-wrapper .nav-justified > li {
2886
+ float: none;
2887
+ }
2888
+ .pt-cv-wrapper .nav-justified > li > a {
2889
+ text-align: center;
2890
+ margin-bottom: 5px;
2891
+ }
2892
+ .pt-cv-wrapper .nav-justified > .dropdown .dropdown-menu {
2893
+ top: auto;
2894
+ left: auto;
2895
+ }
2896
+ @media (min-width: 768px) {
2897
+ .pt-cv-wrapper .nav-justified > li {
2898
+ display: table-cell;
2899
+ width: 1%;
2900
+ }
2901
+ .pt-cv-wrapper .nav-justified > li > a {
2902
+ margin-bottom: 0;
2903
+ }
2904
+ }
2905
+ .pt-cv-wrapper .nav-tabs-justified {
2906
+ border-bottom: 0;
2907
+ }
2908
+ .pt-cv-wrapper .nav-tabs-justified > li > a {
2909
+ margin-right: 0;
2910
+ border-radius: 4px;
2911
+ }
2912
+ .pt-cv-wrapper .nav-tabs-justified > .active > a,
2913
+ .pt-cv-wrapper .nav-tabs-justified > .active > a:hover,
2914
+ .pt-cv-wrapper .nav-tabs-justified > .active > a:focus {
2915
+ border: 1px solid #dddddd;
2916
+ }
2917
+ @media (min-width: 768px) {
2918
+ .pt-cv-wrapper .nav-tabs-justified > li > a {
2919
+ border-bottom: 1px solid #dddddd;
2920
+ border-radius: 4px 4px 0 0;
2921
+ }
2922
+ .pt-cv-wrapper .nav-tabs-justified > .active > a,
2923
+ .pt-cv-wrapper .nav-tabs-justified > .active > a:hover,
2924
+ .pt-cv-wrapper .nav-tabs-justified > .active > a:focus {
2925
+ border-bottom-color: #ffffff;
2926
+ }
2927
+ }
2928
+ .pt-cv-wrapper .tab-content > .tab-pane {
2929
+ display: none;
2930
+ }
2931
+ .pt-cv-wrapper .tab-content > .active {
2932
+ display: block;
2933
+ }
2934
+ .pt-cv-wrapper .nav-tabs .dropdown-menu {
2935
+ margin-top: -1px;
2936
+ border-top-right-radius: 0;
2937
+ border-top-left-radius: 0;
2938
+ }
2939
+ .pt-cv-wrapper .pagination {
2940
+ display: inline-block;
2941
+ padding-left: 0;
2942
+ margin: 20px 0;
2943
+ border-radius: 4px;
2944
+ }
2945
+ .pt-cv-wrapper .pagination > li {
2946
+ display: inline;
2947
+ }
2948
+ .pt-cv-wrapper .pagination > li > a,
2949
+ .pt-cv-wrapper .pagination > li > span {
2950
+ position: relative;
2951
+ float: left;
2952
+ padding: 6px 12px;
2953
+ line-height: 1.42857143;
2954
+ text-decoration: none;
2955
+ color: #337ab7;
2956
+ background-color: #ffffff;
2957
+ border: 1px solid #dddddd;
2958
+ margin-left: -1px;
2959
+ }
2960
+ .pt-cv-wrapper .pagination > li:first-child > a,
2961
+ .pt-cv-wrapper .pagination > li:first-child > span {
2962
+ margin-left: 0;
2963
+ border-bottom-left-radius: 4px;
2964
+ border-top-left-radius: 4px;
2965
+ }
2966
+ .pt-cv-wrapper .pagination > li:last-child > a,
2967
+ .pt-cv-wrapper .pagination > li:last-child > span {
2968
+ border-bottom-right-radius: 4px;
2969
+ border-top-right-radius: 4px;
2970
+ }
2971
+ .pt-cv-wrapper .pagination > li > a:hover,
2972
+ .pt-cv-wrapper .pagination > li > span:hover,
2973
+ .pt-cv-wrapper .pagination > li > a:focus,
2974
+ .pt-cv-wrapper .pagination > li > span:focus {
2975
+ z-index: 3;
2976
+ color: #23527c;
2977
+ background-color: #eeeeee;
2978
+ border-color: #dddddd;
2979
+ }
2980
+ .pt-cv-wrapper .pagination > .active > a,
2981
+ .pt-cv-wrapper .pagination > .active > span,
2982
+ .pt-cv-wrapper .pagination > .active > a:hover,
2983
+ .pt-cv-wrapper .pagination > .active > span:hover,
2984
+ .pt-cv-wrapper .pagination > .active > a:focus,
2985
+ .pt-cv-wrapper .pagination > .active > span:focus {
2986
+ z-index: 2;
2987
+ color: #ffffff;
2988
+ background-color: #337ab7;
2989
+ border-color: #337ab7;
2990
+ cursor: default;
2991
+ }
2992
+ .pt-cv-wrapper .pagination > .disabled > span,
2993
+ .pt-cv-wrapper .pagination > .disabled > span:hover,
2994
+ .pt-cv-wrapper .pagination > .disabled > span:focus,
2995
+ .pt-cv-wrapper .pagination > .disabled > a,
2996
+ .pt-cv-wrapper .pagination > .disabled > a:hover,
2997
+ .pt-cv-wrapper .pagination > .disabled > a:focus {
2998
+ color: #777777;
2999
+ background-color: #ffffff;
3000
+ border-color: #dddddd;
3001
+ cursor: not-allowed;
3002
+ }
3003
+ .pt-cv-wrapper .pagination-lg > li > a,
3004
+ .pt-cv-wrapper .pagination-lg > li > span {
3005
+ padding: 10px 16px;
3006
+ font-size: 18px;
3007
+ line-height: 1.3333333;
3008
+ }
3009
+ .pt-cv-wrapper .pagination-lg > li:first-child > a,
3010
+ .pt-cv-wrapper .pagination-lg > li:first-child > span {
3011
+ border-bottom-left-radius: 6px;
3012
+ border-top-left-radius: 6px;
3013
+ }
3014
+ .pt-cv-wrapper .pagination-lg > li:last-child > a,
3015
+ .pt-cv-wrapper .pagination-lg > li:last-child > span {
3016
+ border-bottom-right-radius: 6px;
3017
+ border-top-right-radius: 6px;
3018
+ }
3019
+ .pt-cv-wrapper .pagination-sm > li > a,
3020
+ .pt-cv-wrapper .pagination-sm > li > span {
3021
+ padding: 5px 10px;
3022
+ font-size: 12px;
3023
+ line-height: 1.5;
3024
+ }
3025
+ .pt-cv-wrapper .pagination-sm > li:first-child > a,
3026
+ .pt-cv-wrapper .pagination-sm > li:first-child > span {
3027
+ border-bottom-left-radius: 3px;
3028
+ border-top-left-radius: 3px;
3029
+ }
3030
+ .pt-cv-wrapper .pagination-sm > li:last-child > a,
3031
+ .pt-cv-wrapper .pagination-sm > li:last-child > span {
3032
+ border-bottom-right-radius: 3px;
3033
+ border-top-right-radius: 3px;
3034
+ }
3035
+ .pt-cv-wrapper .thumbnail {
3036
+ display: block;
3037
+ padding: 4px;
3038
+ margin-bottom: 20px;
3039
+ line-height: 1.42857143;
3040
+ background-color: #ffffff;
3041
+ border: 1px solid #dddddd;
3042
+ border-radius: 4px;
3043
+ -webkit-transition: border 0.2s ease-in-out;
3044
+ -o-transition: border 0.2s ease-in-out;
3045
+ transition: border 0.2s ease-in-out;
3046
+ }
3047
+ .pt-cv-wrapper .thumbnail > img,
3048
+ .pt-cv-wrapper .thumbnail a > img {
3049
+ margin-left: auto;
3050
+ margin-right: auto;
3051
+ }
3052
+ .pt-cv-wrapper a.thumbnail:hover,
3053
+ .pt-cv-wrapper a.thumbnail:focus,
3054
+ .pt-cv-wrapper a.thumbnail.active {
3055
+ border-color: #337ab7;
3056
+ }
3057
+ .pt-cv-wrapper .thumbnail .caption {
3058
+ padding: 9px;
3059
+ color: #333333;
3060
+ }
3061
+ .pt-cv-wrapper .carousel {
3062
+ position: relative;
3063
+ }
3064
+ .pt-cv-wrapper .carousel-inner {
3065
+ position: relative;
3066
+ overflow: hidden;
3067
+ width: 100%;
3068
+ }
3069
+ .pt-cv-wrapper .carousel-inner > .item {
3070
+ display: none;
3071
+ position: relative;
3072
+ -webkit-transition: 0.6s ease-in-out left;
3073
+ -o-transition: 0.6s ease-in-out left;
3074
+ transition: 0.6s ease-in-out left;
3075
+ }
3076
+ .pt-cv-wrapper .carousel-inner > .item > img,
3077
+ .pt-cv-wrapper .carousel-inner > .item > a > img {
3078
+ line-height: 1;
3079
+ }
3080
+ @media all and (transform-3d), (-webkit-transform-3d) {
3081
+ .pt-cv-wrapper .carousel-inner > .item {
3082
+ -webkit-transition: -webkit-transform 0.6s ease-in-out;
3083
+ -o-transition: -o-transform 0.6s ease-in-out;
3084
+ transition: transform 0.6s ease-in-out;
3085
+ -webkit-backface-visibility: hidden;
3086
+ backface-visibility: hidden;
3087
+ -webkit-perspective: 1000px;
3088
+ perspective: 1000px;
3089
+ }
3090
+ .pt-cv-wrapper .carousel-inner > .item.next,
3091
+ .pt-cv-wrapper .carousel-inner > .item.active.right {
3092
+ -webkit-transform: translate3d(100%, 0, 0);
3093
+ transform: translate3d(100%, 0, 0);
3094
+ left: 0;
3095
+ }
3096
+ .pt-cv-wrapper .carousel-inner > .item.prev,
3097
+ .pt-cv-wrapper .carousel-inner > .item.active.left {
3098
+ -webkit-transform: translate3d(-100%, 0, 0);
3099
+ transform: translate3d(-100%, 0, 0);
3100
+ left: 0;
3101
+ }
3102
+ .pt-cv-wrapper .carousel-inner > .item.next.left,
3103
+ .pt-cv-wrapper .carousel-inner > .item.prev.right,
3104
+ .pt-cv-wrapper .carousel-inner > .item.active {
3105
+ -webkit-transform: translate3d(0, 0, 0);
3106
+ transform: translate3d(0, 0, 0);
3107
+ left: 0;
3108
+ }
3109
+ }
3110
+ .pt-cv-wrapper .carousel-inner > .active,
3111
+ .pt-cv-wrapper .carousel-inner > .next,
3112
+ .pt-cv-wrapper .carousel-inner > .prev {
3113
+ display: block;
3114
+ }
3115
+ .pt-cv-wrapper .carousel-inner > .active {
3116
+ left: 0;
3117
+ }
3118
+ .pt-cv-wrapper .carousel-inner > .next,
3119
+ .pt-cv-wrapper .carousel-inner > .prev {
3120
+ position: absolute;
3121
+ top: 0;
3122
+ width: 100%;
3123
+ }
3124
+ .pt-cv-wrapper .carousel-inner > .next {
3125
+ left: 100%;
3126
+ }
3127
+ .pt-cv-wrapper .carousel-inner > .prev {
3128
+ left: -100%;
3129
+ }
3130
+ .pt-cv-wrapper .carousel-inner > .next.left,
3131
+ .pt-cv-wrapper .carousel-inner > .prev.right {
3132
+ left: 0;
3133
+ }
3134
+ .pt-cv-wrapper .carousel-inner > .active.left {
3135
+ left: -100%;
3136
+ }
3137
+ .pt-cv-wrapper .carousel-inner > .active.right {
3138
+ left: 100%;
3139
+ }
3140
+ .pt-cv-wrapper .carousel-control {
3141
+ position: absolute;
3142
+ top: 0;
3143
+ left: 0;
3144
+ bottom: 0;
3145
+ width: 15%;
3146
+ opacity: 0.5;
3147
+ filter: alpha(opacity=50);
3148
+ font-size: 20px;
3149
+ color: #ffffff;
3150
+ text-align: center;
3151
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
3152
+ }
3153
+ .pt-cv-wrapper .carousel-control.left {
3154
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3155
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3156
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
3157
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3158
+ background-repeat: repeat-x;
3159
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
3160
+ }
3161
+ .pt-cv-wrapper .carousel-control.right {
3162
+ left: auto;
3163
+ right: 0;
3164
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3165
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3166
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
3167
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3168
+ background-repeat: repeat-x;
3169
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
3170
+ }
3171
+ .pt-cv-wrapper .carousel-control:hover,
3172
+ .pt-cv-wrapper .carousel-control:focus {
3173
+ outline: 0;
3174
+ color: #ffffff;
3175
+ text-decoration: none;
3176
+ opacity: 0.9;
3177
+ filter: alpha(opacity=90);
3178
+ }
3179
+ .pt-cv-wrapper .carousel-control .icon-prev,
3180
+ .pt-cv-wrapper .carousel-control .icon-next,
3181
+ .pt-cv-wrapper .carousel-control .glyphicon-chevron-left,
3182
+ .pt-cv-wrapper .carousel-control .glyphicon-chevron-right {
3183
+ position: absolute;
3184
+ top: 50%;
3185
+ margin-top: -10px;
3186
+ z-index: 5;
3187
+ display: inline-block;
3188
+ }
3189
+ .pt-cv-wrapper .carousel-control .icon-prev,
3190
+ .pt-cv-wrapper .carousel-control .glyphicon-chevron-left {
3191
+ left: 50%;
3192
+ margin-left: -10px;
3193
+ }
3194
+ .pt-cv-wrapper .carousel-control .icon-next,
3195
+ .pt-cv-wrapper .carousel-control .glyphicon-chevron-right {
3196
+ right: 50%;
3197
+ margin-right: -10px;
3198
+ }
3199
+ .pt-cv-wrapper .carousel-control .icon-prev,
3200
+ .pt-cv-wrapper .carousel-control .icon-next {
3201
+ width: 20px;
3202
+ height: 20px;
3203
+ line-height: 1;
3204
+ font-family: serif;
3205
+ }
3206
+ .pt-cv-wrapper .carousel-control .icon-prev:before {
3207
+ content: '\2039';
3208
+ }
3209
+ .pt-cv-wrapper .carousel-control .icon-next:before {
3210
+ content: '\203a';
3211
+ }
3212
+ .pt-cv-wrapper .pt-cv-carousel-indicators {
3213
+ position: absolute;
3214
+ bottom: 10px;
3215
+ left: 50%;
3216
+ z-index: 15;
3217
+ width: 60%;
3218
+ margin-left: -30%;
3219
+ padding-left: 0;
3220
+ list-style: none;
3221
+ text-align: center;
3222
+ }
3223
+ .pt-cv-wrapper .pt-cv-carousel-indicators li {
3224
+ display: inline-block;
3225
+ width: 10px;
3226
+ height: 10px;
3227
+ margin: 1px;
3228
+ text-indent: -999px;
3229
+ border: 1px solid #ffffff;
3230
+ border-radius: 10px;
3231
+ cursor: pointer;
3232
+ background-color: #000 \9;
3233
+ background-color: rgba(0, 0, 0, 0);
3234
+ }
3235
+ .pt-cv-wrapper .pt-cv-carousel-indicators .active {
3236
+ margin: 0;
3237
+ width: 12px;
3238
+ height: 12px;
3239
+ background-color: #ffffff;
3240
+ }
3241
+ .pt-cv-wrapper .pt-cv-carousel-caption {
3242
+ position: absolute;
3243
+ left: 15%;
3244
+ right: 15%;
3245
+ bottom: 20px;
3246
+ z-index: 10;
3247
+ padding-top: 20px;
3248
+ padding-bottom: 20px;
3249
+ color: #ffffff;
3250
+ text-align: center;
3251
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
3252
+ }
3253
+ .pt-cv-wrapper .pt-cv-carousel-caption .btn {
3254
+ text-shadow: none;
3255
+ }
3256
+ @media screen and (min-width: 768px) {
3257
+ .pt-cv-wrapper .carousel-control .glyphicon-chevron-left,
3258
+ .pt-cv-wrapper .carousel-control .glyphicon-chevron-right,
3259
+ .pt-cv-wrapper .carousel-control .icon-prev,
3260
+ .pt-cv-wrapper .carousel-control .icon-next {
3261
+ width: 30px;
3262
+ height: 30px;
3263
+ margin-top: -15px;
3264
+ font-size: 30px;
3265
+ }
3266
+ .pt-cv-wrapper .carousel-control .glyphicon-chevron-left,
3267
+ .pt-cv-wrapper .carousel-control .icon-prev {
3268
+ margin-left: -15px;
3269
+ }
3270
+ .pt-cv-wrapper .carousel-control .glyphicon-chevron-right,
3271
+ .pt-cv-wrapper .carousel-control .icon-next {
3272
+ margin-right: -15px;
3273
+ }
3274
+ .pt-cv-wrapper .pt-cv-carousel-caption {
3275
+ left: 20%;
3276
+ right: 20%;
3277
+ padding-bottom: 30px;
3278
+ }
3279
+ .pt-cv-wrapper .pt-cv-carousel-indicators {
3280
+ bottom: 20px;
3281
+ }
3282
+ }
3283
+ .pt-cv-wrapper .clearfix:before,
3284
+ .pt-cv-wrapper .clearfix:after,
3285
+ .pt-cv-wrapper .container:before,
3286
+ .pt-cv-wrapper .container:after,
3287
+ .pt-cv-wrapper .container-fluid:before,
3288
+ .pt-cv-wrapper .container-fluid:after,
3289
+ .pt-cv-wrapper .row:before,
3290
+ .pt-cv-wrapper .row:after,
3291
+ .pt-cv-wrapper .btn-toolbar:before,
3292
+ .pt-cv-wrapper .btn-toolbar:after,
3293
+ .pt-cv-wrapper .btn-group-vertical > .btn-group:before,
3294
+ .pt-cv-wrapper .btn-group-vertical > .btn-group:after,
3295
+ .pt-cv-wrapper .nav:before,
3296
+ .pt-cv-wrapper .nav:after {
3297
+ content: " ";
3298
+ display: table;
3299
+ }
3300
+ .pt-cv-wrapper .clearfix:after,
3301
+ .pt-cv-wrapper .container:after,
3302
+ .pt-cv-wrapper .container-fluid:after,
3303
+ .pt-cv-wrapper .row:after,
3304
+ .pt-cv-wrapper .btn-toolbar:after,
3305
+ .pt-cv-wrapper .btn-group-vertical > .btn-group:after,
3306
+ .pt-cv-wrapper .nav:after {
3307
+ clear: both;
3308
+ }
3309
+ .pt-cv-wrapper .center-block {
3310
+ display: block;
3311
+ margin-left: auto;
3312
+ margin-right: auto;
3313
+ }
3314
+ .pt-cv-wrapper .pull-right {
3315
+ float: right !important;
3316
+ }
3317
+ .pt-cv-wrapper .pull-left {
3318
+ float: left !important;
3319
+ }
3320
+ .pt-cv-wrapper .hide {
3321
+ display: none !important;
3322
+ }
3323
+ .pt-cv-wrapper .show {
3324
+ display: block !important;
3325
+ }
3326
+ .pt-cv-wrapper .invisible {
3327
+ visibility: hidden;
3328
+ }
3329
+ .pt-cv-wrapper .text-hide {
3330
+ font: 0/0 a;
3331
+ color: transparent;
3332
+ text-shadow: none;
3333
+ background-color: transparent;
3334
+ border: 0;
3335
+ }
3336
+ .pt-cv-wrapper .hidden {
3337
+ display: none !important;
3338
+ }
3339
+ .pt-cv-wrapper .affix {
3340
+ position: fixed;
3341
+ }
3342
+ .pt-cv-wrapper .text-left {
3343
+ text-align: left;
3344
+ }
3345
+ .pt-cv-wrapper .text-right {
3346
+ text-align: right;
3347
+ }
3348
+ .pt-cv-wrapper .text-center {
3349
+ text-align: center;
3350
+ }
3351
+ .pt-cv-wrapper .text-justify {
3352
+ text-align: justify;
3353
+ }
3354
+ .pt-cv-wrapper .text-nowrap {
3355
+ white-space: nowrap;
3356
+ }
3357
+ .pt-cv-wrapper .text-lowercase {
3358
+ text-transform: lowercase;
3359
+ }
3360
+ .pt-cv-wrapper .text-uppercase {
3361
+ text-transform: uppercase;
3362
+ }
3363
+ .pt-cv-wrapper .text-capitalize {
3364
+ text-transform: capitalize;
3365
+ }
3366
+ .pt-cv-wrapper .text-muted {
3367
+ color: #777777;
3368
+ }
3369
+ .pt-cv-wrapper .text-primary {
3370
+ color: #428bca;
3371
+ }
3372
+ .pt-cv-wrapper .h1,
3373
+ .pt-cv-wrapper .h2,
3374
+ .pt-cv-wrapper .h3,
3375
+ .pt-cv-wrapper .h4,
3376
+ .pt-cv-wrapper .h5,
3377
+ .pt-cv-wrapper .h6,
3378
+ .pt-cv-wrapper h1,
3379
+ .pt-cv-wrapper h2,
3380
+ .pt-cv-wrapper h3,
3381
+ .pt-cv-wrapper h4,
3382
+ .pt-cv-wrapper h5,
3383
+ .pt-cv-wrapper h6 {
3384
+ font-family: inherit;
3385
+ font-weight: 500;
3386
+ line-height: 1.1;
3387
+ color: inherit;
3388
+ }
3389
+
assets/bootstrap/css/{bootstrap.admin.css → bootstrap.full.css} RENAMED
File without changes
assets/bootstrap/css/bootstrap.min.css DELETED
@@ -1,2792 +0,0 @@
1
- /*!
2
- * Bootstrap v3.3.0 (http://getbootstrap.com)
3
- * Copyright 2011-2014 Twitter, Inc.
4
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */
6
-
7
- /*!
8
- * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=f323b963d6effbed15c0)
9
- * Config saved to config.json and https://gist.github.com/f323b963d6effbed15c0
10
- */
11
- /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
12
- html {
13
- font-family: sans-serif;
14
- -ms-text-size-adjust: 100%;
15
- -webkit-text-size-adjust: 100%;
16
- }
17
- body {
18
- margin: 0;
19
- }
20
- article,
21
- aside,
22
- details,
23
- figcaption,
24
- figure,
25
- footer,
26
- header,
27
- hgroup,
28
- main,
29
- menu,
30
- nav,
31
- section,
32
- summary {
33
- display: block;
34
- }
35
- audio,
36
- canvas,
37
- progress,
38
- video {
39
- display: inline-block;
40
- vertical-align: baseline;
41
- }
42
- audio:not([controls]) {
43
- display: none;
44
- height: 0;
45
- }
46
- [hidden],
47
- template {
48
- display: none;
49
- }
50
- a {
51
- background-color: transparent;
52
- }
53
- a:active,
54
- a:hover {
55
- outline: 0;
56
- }
57
- abbr[title] {
58
- border-bottom: 1px dotted;
59
- }
60
- b,
61
- strong {
62
- font-weight: bold;
63
- }
64
- dfn {
65
- font-style: italic;
66
- }
67
- h1 {
68
- /*font-size: 2em;*/
69
- margin: 0.67em 0;
70
- }
71
- mark {
72
- background: #ff0;
73
- color: #000;
74
- }
75
- small {
76
- font-size: 80%;
77
- }
78
- sub,
79
- sup {
80
- font-size: 75%;
81
- line-height: 0;
82
- position: relative;
83
- vertical-align: baseline;
84
- }
85
- sup {
86
- top: -0.5em;
87
- }
88
- sub {
89
- bottom: -0.25em;
90
- }
91
- img {
92
- border: 0;
93
- }
94
- svg:not(:root) {
95
- overflow: hidden;
96
- }
97
- figure {
98
- margin: 1em 40px;
99
- }
100
- hr {
101
- -moz-box-sizing: content-box;
102
- box-sizing: content-box;
103
- height: 0;
104
- }
105
- pre {
106
- overflow: auto;
107
- }
108
- code,
109
- kbd,
110
- pre,
111
- samp {
112
- font-family: monospace, monospace;
113
- font-size: 1em;
114
- }
115
- button,
116
- input,
117
- optgroup,
118
- select,
119
- textarea {
120
- color: inherit;
121
- font: inherit;
122
- margin: 0;
123
- }
124
- button {
125
- overflow: visible;
126
- }
127
- button,
128
- select {
129
- text-transform: none;
130
- }
131
- button,
132
- html input[type="button"],
133
- input[type="reset"],
134
- input[type="submit"] {
135
- -webkit-appearance: button;
136
- cursor: pointer;
137
- }
138
- button[disabled],
139
- html input[disabled] {
140
- cursor: default;
141
- }
142
- button::-moz-focus-inner,
143
- input::-moz-focus-inner {
144
- border: 0;
145
- padding: 0;
146
- }
147
- input {
148
- line-height: normal;
149
- }
150
- input[type="checkbox"],
151
- input[type="radio"] {
152
- box-sizing: border-box;
153
- padding: 0;
154
- }
155
- input[type="number"]::-webkit-inner-spin-button,
156
- input[type="number"]::-webkit-outer-spin-button {
157
- height: auto;
158
- }
159
- input[type="search"] {
160
- -webkit-appearance: textfield;
161
- -moz-box-sizing: content-box;
162
- -webkit-box-sizing: content-box;
163
- box-sizing: content-box;
164
- }
165
- input[type="search"]::-webkit-search-cancel-button,
166
- input[type="search"]::-webkit-search-decoration {
167
- -webkit-appearance: none;
168
- }
169
- fieldset {
170
- border: 1px solid #c0c0c0;
171
- margin: 0 2px;
172
- padding: 0.35em 0.625em 0.75em;
173
- }
174
- legend {
175
- border: 0;
176
- padding: 0;
177
- }
178
- textarea {
179
- overflow: auto;
180
- }
181
- optgroup {
182
- font-weight: bold;
183
- }
184
- table {
185
- border-collapse: collapse;
186
- border-spacing: 0;
187
- }
188
- td,
189
- th {
190
- padding: 0;
191
- }
192
- /* @Customizer-1 start */
193
- /* @Glyphicons */
194
- @font-face {
195
- font-family: 'Glyphicons Halflings';
196
- src: url('../fonts/glyphicons-halflings-regular.eot');
197
- src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
198
- }
199
- .glyphicon {
200
- position: relative;
201
- top: 1px;
202
- display: inline-block;
203
- font-family: 'Glyphicons Halflings';
204
- font-style: normal;
205
- font-weight: normal;
206
- line-height: 1;
207
- -webkit-font-smoothing: antialiased;
208
- -moz-osx-font-smoothing: grayscale;
209
- }
210
- .glyphicon-asterisk:before {
211
- content: "\2a";
212
- }
213
- .glyphicon-plus:before {
214
- content: "\2b";
215
- }
216
- .glyphicon-euro:before,
217
- .glyphicon-eur:before {
218
- content: "\20ac";
219
- }
220
- .glyphicon-minus:before {
221
- content: "\2212";
222
- }
223
- .glyphicon-cloud:before {
224
- content: "\2601";
225
- }
226
- .glyphicon-envelope:before {
227
- content: "\2709";
228
- }
229
- .glyphicon-pencil:before {
230
- content: "\270f";
231
- }
232
- .glyphicon-glass:before {
233
- content: "\e001";
234
- }
235
- .glyphicon-music:before {
236
- content: "\e002";
237
- }
238
- .glyphicon-search:before {
239
- content: "\e003";
240
- }
241
- .glyphicon-heart:before {
242
- content: "\e005";
243
- }
244
- .glyphicon-star:before {
245
- content: "\e006";
246
- }
247
- .glyphicon-star-empty:before {
248
- content: "\e007";
249
- }
250
- .glyphicon-user:before {
251
- content: "\e008";
252
- }
253
- .glyphicon-film:before {
254
- content: "\e009";
255
- }
256
- .glyphicon-th-large:before {
257
- content: "\e010";
258
- }
259
- .glyphicon-th:before {
260
- content: "\e011";
261
- }
262
- .glyphicon-th-list:before {
263
- content: "\e012";
264
- }
265
- .glyphicon-ok:before {
266
- content: "\e013";
267
- }
268
- .glyphicon-remove:before {
269
- content: "\e014";
270
- }
271
- .glyphicon-zoom-in:before {
272
- content: "\e015";
273
- }
274
- .glyphicon-zoom-out:before {
275
- content: "\e016";
276
- }
277
- .glyphicon-off:before {
278
- content: "\e017";
279
- }
280
- .glyphicon-signal:before {
281
- content: "\e018";
282
- }
283
- .glyphicon-cog:before {
284
- content: "\e019";
285
- }
286
- .glyphicon-trash:before {
287
- content: "\e020";
288
- }
289
- .glyphicon-home:before {
290
- content: "\e021";
291
- }
292
- .glyphicon-file:before {
293
- content: "\e022";
294
- }
295
- .glyphicon-time:before {
296
- content: "\e023";
297
- }
298
- .glyphicon-road:before {
299
- content: "\e024";
300
- }
301
- .glyphicon-download-alt:before {
302
- content: "\e025";
303
- }
304
- .glyphicon-download:before {
305
- content: "\e026";
306
- }
307
- .glyphicon-upload:before {
308
- content: "\e027";
309
- }
310
- .glyphicon-inbox:before {
311
- content: "\e028";
312
- }
313
- .glyphicon-play-circle:before {
314
- content: "\e029";
315
- }
316
- .glyphicon-repeat:before {
317
- content: "\e030";
318
- }
319
- .glyphicon-refresh:before {
320
- content: "\e031";
321
- }
322
- .glyphicon-list-alt:before {
323
- content: "\e032";
324
- }
325
- .glyphicon-lock:before {
326
- content: "\e033";
327
- }
328
- .glyphicon-flag:before {
329
- content: "\e034";
330
- }
331
- .glyphicon-headphones:before {
332
- content: "\e035";
333
- }
334
- .glyphicon-volume-off:before {
335
- content: "\e036";
336
- }
337
- .glyphicon-volume-down:before {
338
- content: "\e037";
339
- }
340
- .glyphicon-volume-up:before {
341
- content: "\e038";
342
- }
343
- .glyphicon-qrcode:before {
344
- content: "\e039";
345
- }
346
- .glyphicon-barcode:before {
347
- content: "\e040";
348
- }
349
- .glyphicon-tag:before {
350
- content: "\e041";
351
- }
352
- .glyphicon-tags:before {
353
- content: "\e042";
354
- }
355
- .glyphicon-book:before {
356
- content: "\e043";
357
- }
358
- .glyphicon-bookmark:before {
359
- content: "\e044";
360
- }
361
- .glyphicon-print:before {
362
- content: "\e045";
363
- }
364
- .glyphicon-camera:before {
365
- content: "\e046";
366
- }
367
- .glyphicon-font:before {
368
- content: "\e047";
369
- }
370
- .glyphicon-bold:before {
371
- content: "\e048";
372
- }
373
- .glyphicon-italic:before {
374
- content: "\e049";
375
- }
376
- .glyphicon-text-height:before {
377
- content: "\e050";
378
- }
379
- .glyphicon-text-width:before {
380
- content: "\e051";
381
- }
382
- .glyphicon-align-left:before {
383
- content: "\e052";
384
- }
385
- .glyphicon-align-center:before {
386
- content: "\e053";
387
- }
388
- .glyphicon-align-right:before {
389
- content: "\e054";
390
- }
391
- .glyphicon-align-justify:before {
392
- content: "\e055";
393
- }
394
- .glyphicon-list:before {
395
- content: "\e056";
396
- }
397
- .glyphicon-indent-left:before {
398
- content: "\e057";
399
- }
400
- .glyphicon-indent-right:before {
401
- content: "\e058";
402
- }
403
- .glyphicon-facetime-video:before {
404
- content: "\e059";
405
- }
406
- .glyphicon-picture:before {
407
- content: "\e060";
408
- }
409
- .glyphicon-map-marker:before {
410
- content: "\e062";
411
- }
412
- .glyphicon-adjust:before {
413
- content: "\e063";
414
- }
415
- .glyphicon-tint:before {
416
- content: "\e064";
417
- }
418
- .glyphicon-edit:before {
419
- content: "\e065";
420
- }
421
- .glyphicon-share:before {
422
- content: "\e066";
423
- }
424
- .glyphicon-check:before {
425
- content: "\e067";
426
- }
427
- .glyphicon-move:before {
428
- content: "\e068";
429
- }
430
- .glyphicon-step-backward:before {
431
- content: "\e069";
432
- }
433
- .glyphicon-fast-backward:before {
434
- content: "\e070";
435
- }
436
- .glyphicon-backward:before {
437
- content: "\e071";
438
- }
439
- .glyphicon-play:before {
440
- content: "\e072";
441
- }
442
- .glyphicon-pause:before {
443
- content: "\e073";
444
- }
445
- .glyphicon-stop:before {
446
- content: "\e074";
447
- }
448
- .glyphicon-forward:before {
449
- content: "\e075";
450
- }
451
- .glyphicon-fast-forward:before {
452
- content: "\e076";
453
- }
454
- .glyphicon-step-forward:before {
455
- content: "\e077";
456
- }
457
- .glyphicon-eject:before {
458
- content: "\e078";
459
- }
460
- .glyphicon-chevron-left:before {
461
- content: "\e079";
462
- }
463
- .glyphicon-chevron-right:before {
464
- content: "\e080";
465
- }
466
- .glyphicon-plus-sign:before {
467
- content: "\e081";
468
- }
469
- .glyphicon-minus-sign:before {
470
- content: "\e082";
471
- }
472
- .glyphicon-remove-sign:before {
473
- content: "\e083";
474
- }
475
- .glyphicon-ok-sign:before {
476
- content: "\e084";
477
- }
478
- .glyphicon-question-sign:before {
479
- content: "\e085";
480
- }
481
- .glyphicon-info-sign:before {
482
- content: "\e086";
483
- }
484
- .glyphicon-screenshot:before {
485
- content: "\e087";
486
- }
487
- .glyphicon-remove-circle:before {
488
- content: "\e088";
489
- }
490
- .glyphicon-ok-circle:before {
491
- content: "\e089";
492
- }
493
- .glyphicon-ban-circle:before {
494
- content: "\e090";
495
- }
496
- .glyphicon-arrow-left:before {
497
- content: "\e091";
498
- }
499
- .glyphicon-arrow-right:before {
500
- content: "\e092";
501
- }
502
- .glyphicon-arrow-up:before {
503
- content: "\e093";
504
- }
505
- .glyphicon-arrow-down:before {
506
- content: "\e094";
507
- }
508
- .glyphicon-share-alt:before {
509
- content: "\e095";
510
- }
511
- .glyphicon-resize-full:before {
512
- content: "\e096";
513
- }
514
- .glyphicon-resize-small:before {
515
- content: "\e097";
516
- }
517
- .glyphicon-exclamation-sign:before {
518
- content: "\e101";
519
- }
520
- .glyphicon-gift:before {
521
- content: "\e102";
522
- }
523
- .glyphicon-leaf:before {
524
- content: "\e103";
525
- }
526
- .glyphicon-fire:before {
527
- content: "\e104";
528
- }
529
- .glyphicon-eye-open:before {
530
- content: "\e105";
531
- }
532
- .glyphicon-eye-close:before {
533
- content: "\e106";
534
- }
535
- .glyphicon-warning-sign:before {
536
- content: "\e107";
537
- }
538
- .glyphicon-plane:before {
539
- content: "\e108";
540
- }
541
- .glyphicon-calendar:before {
542
- content: "\e109";
543
- }
544
- .glyphicon-random:before {
545
- content: "\e110";
546
- }
547
- .glyphicon-comment:before {
548
- content: "\e111";
549
- }
550
- .glyphicon-magnet:before {
551
- content: "\e112";
552
- }
553
- .glyphicon-chevron-up:before {
554
- content: "\e113";
555
- }
556
- .glyphicon-chevron-down:before {
557
- content: "\e114";
558
- }
559
- .glyphicon-retweet:before {
560
- content: "\e115";
561
- }
562
- .glyphicon-shopping-cart:before {
563
- content: "\e116";
564
- }
565
- .glyphicon-folder-close:before {
566
- content: "\e117";
567
- }
568
- .glyphicon-folder-open:before {
569
- content: "\e118";
570
- }
571
- .glyphicon-resize-vertical:before {
572
- content: "\e119";
573
- }
574
- .glyphicon-resize-horizontal:before {
575
- content: "\e120";
576
- }
577
- .glyphicon-hdd:before {
578
- content: "\e121";
579
- }
580
- .glyphicon-bullhorn:before {
581
- content: "\e122";
582
- }
583
- .glyphicon-bell:before {
584
- content: "\e123";
585
- }
586
- .glyphicon-certificate:before {
587
- content: "\e124";
588
- }
589
- .glyphicon-thumbs-up:before {
590
- content: "\e125";
591
- }
592
- .glyphicon-thumbs-down:before {
593
- content: "\e126";
594
- }
595
- .glyphicon-hand-right:before {
596
- content: "\e127";
597
- }
598
- .glyphicon-hand-left:before {
599
- content: "\e128";
600
- }
601
- .glyphicon-hand-up:before {
602
- content: "\e129";
603
- }
604
- .glyphicon-hand-down:before {
605
- content: "\e130";
606
- }
607
- .glyphicon-circle-arrow-right:before {
608
- content: "\e131";
609
- }
610
- .glyphicon-circle-arrow-left:before {
611
- content: "\e132";
612
- }
613
- .glyphicon-circle-arrow-up:before {
614
- content: "\e133";
615
- }
616
- .glyphicon-circle-arrow-down:before {
617
- content: "\e134";
618
- }
619
- .glyphicon-globe:before {
620
- content: "\e135";
621
- }
622
- .glyphicon-wrench:before {
623
- content: "\e136";
624
- }
625
- .glyphicon-tasks:before {
626
- content: "\e137";
627
- }
628
- .glyphicon-filter:before {
629
- content: "\e138";
630
- }
631
- .glyphicon-briefcase:before {
632
- content: "\e139";
633
- }
634
- .glyphicon-fullscreen:before {
635
- content: "\e140";
636
- }
637
- .glyphicon-dashboard:before {
638
- content: "\e141";
639
- }
640
- .glyphicon-paperclip:before {
641
- content: "\e142";
642
- }
643
- .glyphicon-heart-empty:before {
644
- content: "\e143";
645
- }
646
- .glyphicon-link:before {
647
- content: "\e144";
648
- }
649
- .glyphicon-phone:before {
650
- content: "\e145";
651
- }
652
- .glyphicon-pushpin:before {
653
- content: "\e146";
654
- }
655
- .glyphicon-usd:before {
656
- content: "\e148";
657
- }
658
- .glyphicon-gbp:before {
659
- content: "\e149";
660
- }
661
- .glyphicon-sort:before {
662
- content: "\e150";
663
- }
664
- .glyphicon-sort-by-alphabet:before {
665
- content: "\e151";
666
- }
667
- .glyphicon-sort-by-alphabet-alt:before {
668
- content: "\e152";
669
- }
670
- .glyphicon-sort-by-order:before {
671
- content: "\e153";
672
- }
673
- .glyphicon-sort-by-order-alt:before {
674
- content: "\e154";
675
- }
676
- .glyphicon-sort-by-attributes:before {
677
- content: "\e155";
678
- }
679
- .glyphicon-sort-by-attributes-alt:before {
680
- content: "\e156";
681
- }
682
- .glyphicon-unchecked:before {
683
- content: "\e157";
684
- }
685
- .glyphicon-expand:before {
686
- content: "\e158";
687
- }
688
- .glyphicon-collapse-down:before {
689
- content: "\e159";
690
- }
691
- .glyphicon-collapse-up:before {
692
- content: "\e160";
693
- }
694
- .glyphicon-log-in:before {
695
- content: "\e161";
696
- }
697
- .glyphicon-flash:before {
698
- content: "\e162";
699
- }
700
- .glyphicon-log-out:before {
701
- content: "\e163";
702
- }
703
- .glyphicon-new-window:before {
704
- content: "\e164";
705
- }
706
- .glyphicon-record:before {
707
- content: "\e165";
708
- }
709
- .glyphicon-save:before {
710
- content: "\e166";
711
- }
712
- .glyphicon-open:before {
713
- content: "\e167";
714
- }
715
- .glyphicon-saved:before {
716
- content: "\e168";
717
- }
718
- .glyphicon-import:before {
719
- content: "\e169";
720
- }
721
- .glyphicon-export:before {
722
- content: "\e170";
723
- }
724
- .glyphicon-send:before {
725
- content: "\e171";
726
- }
727
- .glyphicon-floppy-disk:before {
728
- content: "\e172";
729
- }
730
- .glyphicon-floppy-saved:before {
731
- content: "\e173";
732
- }
733
- .glyphicon-floppy-remove:before {
734
- content: "\e174";
735
- }
736
- .glyphicon-floppy-save:before {
737
- content: "\e175";
738
- }
739
- .glyphicon-floppy-open:before {
740
- content: "\e176";
741
- }
742
- .glyphicon-credit-card:before {
743
- content: "\e177";
744
- }
745
- .glyphicon-transfer:before {
746
- content: "\e178";
747
- }
748
- .glyphicon-cutlery:before {
749
- content: "\e179";
750
- }
751
- .glyphicon-header:before {
752
- content: "\e180";
753
- }
754
- .glyphicon-compressed:before {
755
- content: "\e181";
756
- }
757
- .glyphicon-earphone:before {
758
- content: "\e182";
759
- }
760
- .glyphicon-phone-alt:before {
761
- content: "\e183";
762
- }
763
- .glyphicon-tower:before {
764
- content: "\e184";
765
- }
766
- .glyphicon-stats:before {
767
- content: "\e185";
768
- }
769
- .glyphicon-sd-video:before {
770
- content: "\e186";
771
- }
772
- .glyphicon-hd-video:before {
773
- content: "\e187";
774
- }
775
- .glyphicon-subtitles:before {
776
- content: "\e188";
777
- }
778
- .glyphicon-sound-stereo:before {
779
- content: "\e189";
780
- }
781
- .glyphicon-sound-dolby:before {
782
- content: "\e190";
783
- }
784
- .glyphicon-sound-5-1:before {
785
- content: "\e191";
786
- }
787
- .glyphicon-sound-6-1:before {
788
- content: "\e192";
789
- }
790
- .glyphicon-sound-7-1:before {
791
- content: "\e193";
792
- }
793
- .glyphicon-copyright-mark:before {
794
- content: "\e194";
795
- }
796
- .glyphicon-registration-mark:before {
797
- content: "\e195";
798
- }
799
- .glyphicon-cloud-download:before {
800
- content: "\e197";
801
- }
802
- .glyphicon-cloud-upload:before {
803
- content: "\e198";
804
- }
805
- .glyphicon-tree-conifer:before {
806
- content: "\e199";
807
- }
808
- .glyphicon-tree-deciduous:before {
809
- content: "\e200";
810
- }
811
- /* @Customizer-1 end */
812
- /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
813
- @media print {
814
- *,
815
- *:before,
816
- *:after {
817
- background: transparent !important;
818
- color: #000 !important;
819
- box-shadow: none !important;
820
- text-shadow: none !important;
821
- }
822
- a,
823
- a:visited {
824
- text-decoration: underline;
825
- }
826
- a[href]:after {
827
- content: " (" attr(href) ")";
828
- }
829
- abbr[title]:after {
830
- content: " (" attr(title) ")";
831
- }
832
- a[href^="#"]:after,
833
- a[href^="javascript:"]:after {
834
- content: "";
835
- }
836
- pre,
837
- blockquote {
838
- border: 1px solid #999;
839
- page-break-inside: avoid;
840
- }
841
- thead {
842
- display: table-header-group;
843
- }
844
- tr,
845
- img {
846
- page-break-inside: avoid;
847
- }
848
- img {
849
- max-width: 100% !important;
850
- }
851
- p,
852
- h2,
853
- h3 {
854
- orphans: 3;
855
- widows: 3;
856
- }
857
- h2,
858
- h3 {
859
- page-break-after: avoid;
860
- }
861
- select {
862
- background: #fff !important;
863
- }
864
- .navbar {
865
- display: none;
866
- }
867
- .btn > .caret,
868
- .dropup > .btn > .caret {
869
- border-top-color: #000 !important;
870
- }
871
- .label {
872
- border: 1px solid #000;
873
- }
874
- .table {
875
- border-collapse: collapse !important;
876
- }
877
- .table td,
878
- .table th {
879
- background-color: #fff !important;
880
- }
881
- .table-bordered th,
882
- .table-bordered td {
883
- border: 1px solid #ddd !important;
884
- }
885
- }
886
- /*---
887
- * {
888
- -webkit-box-sizing: border-box;
889
- -moz-box-sizing: border-box;
890
- box-sizing: border-box;
891
- }
892
- *:before,
893
- *:after {
894
- -webkit-box-sizing: border-box;
895
- -moz-box-sizing: border-box;
896
- box-sizing: border-box;
897
- }
898
- html {
899
- font-size: 10px;
900
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
901
- }
902
- body {
903
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
904
- font-size: 14px;
905
- line-height: 1.42857143;
906
- color: #333333;
907
- background-color: #ffffff;
908
- }
909
- input,
910
- button,
911
- select,
912
- textarea {
913
- font-family: inherit;
914
- font-size: inherit;
915
- line-height: inherit;
916
- }
917
- a {
918
- color: #428bca;
919
- text-decoration: none;
920
- }
921
- a:hover,
922
- a:focus {
923
- color: #2a6496;
924
- text-decoration: underline;
925
- }
926
- a:focus {
927
- outline: thin dotted;
928
- outline: 5px auto -webkit-focus-ring-color;
929
- outline-offset: -2px;
930
- }
931
- figure {
932
- margin: 0;
933
- }
934
- ---*/
935
- img {
936
- vertical-align: middle;
937
- }
938
- .img-responsive {
939
- display: block;
940
- max-width: 100%;
941
- height: auto;
942
- }
943
- .img-rounded {
944
- border-radius: 6px;
945
- }
946
- .img-thumbnail {
947
- padding: 4px;
948
- line-height: 1.42857143;
949
- background-color: #ffffff;
950
- border: 1px solid #dddddd;
951
- border-radius: 4px;
952
- -webkit-transition: all 0.2s ease-in-out;
953
- -o-transition: all 0.2s ease-in-out;
954
- transition: all 0.2s ease-in-out;
955
- display: inline-block;
956
- max-width: 100%;
957
- height: auto;
958
- }
959
- .img-circle {
960
- border-radius: 50%;
961
- }
962
- hr {
963
- margin-top: 20px;
964
- margin-bottom: 20px;
965
- border: 0;
966
- border-top: 1px solid #eeeeee;
967
- }
968
- .sr-only {
969
- position: absolute;
970
- width: 1px;
971
- height: 1px;
972
- margin: -1px;
973
- padding: 0;
974
- overflow: hidden;
975
- clip: rect(0, 0, 0, 0);
976
- border: 0;
977
- }
978
- .sr-only-focusable:active,
979
- .sr-only-focusable:focus {
980
- position: static;
981
- width: auto;
982
- height: auto;
983
- margin: 0;
984
- overflow: visible;
985
- clip: auto;
986
- }
987
- /* @Customizer-2 start */
988
- .clearfix:before,
989
- .clearfix:after {
990
- content: " ";
991
- display: table;
992
- }
993
- .clearfix:after {
994
- clear: both;
995
- }
996
- /* @Typography-minified (Alignment classes) */
997
- .text-left {
998
- text-align: left;
999
- }
1000
- .text-right {
1001
- text-align: right;
1002
- }
1003
- .text-center {
1004
- text-align: center;
1005
- }
1006
- .text-justify {
1007
- text-align: justify;
1008
- }
1009
- .text-nowrap {
1010
- white-space: nowrap;
1011
- }
1012
- /* @Grid system-customized: Replace .container = .pt-cv-container (.container is not required) */
1013
- .pt-cv-container {
1014
- margin-right: auto;
1015
- margin-left: auto;
1016
- padding-left: 15px;
1017
- padding-right: 15px;
1018
- }
1019
- @media (min-width: 768px) {
1020
- .pt-cv-container {
1021
- width: 750px;
1022
- }
1023
- }
1024
- @media (min-width: 992px) {
1025
- .pt-cv-container {
1026
- width: 970px;
1027
- }
1028
- }
1029
- @media (min-width: 1200px) {
1030
- .pt-cv-container {
1031
- width: 1170px;
1032
- }
1033
- }
1034
- .pt-cv-container-fluid {
1035
- margin-right: auto;
1036
- margin-left: auto;
1037
- padding-left: 15px;
1038
- padding-right: 15px;
1039
- }
1040
- .row {
1041
- margin-left: -15px;
1042
- margin-right: -15px;
1043
- }
1044
- .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
1045
- position: relative;
1046
- min-height: 1px;
1047
- padding-left: 15px;
1048
- padding-right: 15px;
1049
- }
1050
- .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
1051
- float: left;
1052
- }
1053
- .col-xs-12 {
1054
- width: 100%;
1055
- }
1056
- .col-xs-11 {
1057
- width: 91.66666667%;
1058
- }
1059
- .col-xs-10 {
1060
- width: 83.33333333%;
1061
- }
1062
- .col-xs-9 {
1063
- width: 75%;
1064
- }
1065
- .col-xs-8 {
1066
- width: 66.66666667%;
1067
- }
1068
- .col-xs-7 {
1069
- width: 58.33333333%;
1070
- }
1071
- .col-xs-6 {
1072
- width: 50%;
1073
- }
1074
- .col-xs-5 {
1075
- width: 41.66666667%;
1076
- }
1077
- .col-xs-4 {
1078
- width: 33.33333333%;
1079
- }
1080
- .col-xs-3 {
1081
- width: 25%;
1082
- }
1083
- .col-xs-2 {
1084
- width: 16.66666667%;
1085
- }
1086
- .col-xs-1 {
1087
- width: 8.33333333%;
1088
- }
1089
- .col-xs-pull-12 {
1090
- right: 100%;
1091
- }
1092
- .col-xs-pull-11 {
1093
- right: 91.66666667%;
1094
- }
1095
- .col-xs-pull-10 {
1096
- right: 83.33333333%;
1097
- }
1098
- .col-xs-pull-9 {
1099
- right: 75%;
1100
- }
1101
- .col-xs-pull-8 {
1102
- right: 66.66666667%;
1103
- }
1104
- .col-xs-pull-7 {
1105
- right: 58.33333333%;
1106
- }
1107
- .col-xs-pull-6 {
1108
- right: 50%;
1109
- }
1110
- .col-xs-pull-5 {
1111
- right: 41.66666667%;
1112
- }
1113
- .col-xs-pull-4 {
1114
- right: 33.33333333%;
1115
- }
1116
- .col-xs-pull-3 {
1117
- right: 25%;
1118
- }
1119
- .col-xs-pull-2 {
1120
- right: 16.66666667%;
1121
- }
1122
- .col-xs-pull-1 {
1123
- right: 8.33333333%;
1124
- }
1125
- .col-xs-pull-0 {
1126
- right: auto;
1127
- }
1128
- .col-xs-push-12 {
1129
- left: 100%;
1130
- }
1131
- .col-xs-push-11 {
1132
- left: 91.66666667%;
1133
- }
1134
- .col-xs-push-10 {
1135
- left: 83.33333333%;
1136
- }
1137
- .col-xs-push-9 {
1138
- left: 75%;
1139
- }
1140
- .col-xs-push-8 {
1141
- left: 66.66666667%;
1142
- }
1143
- .col-xs-push-7 {
1144
- left: 58.33333333%;
1145
- }
1146
- .col-xs-push-6 {
1147
- left: 50%;
1148
- }
1149
- .col-xs-push-5 {
1150
- left: 41.66666667%;
1151
- }
1152
- .col-xs-push-4 {
1153
- left: 33.33333333%;
1154
- }
1155
- .col-xs-push-3 {
1156
- left: 25%;
1157
- }
1158
- .col-xs-push-2 {
1159
- left: 16.66666667%;
1160
- }
1161
- .col-xs-push-1 {
1162
- left: 8.33333333%;
1163
- }
1164
- .col-xs-push-0 {
1165
- left: auto;
1166
- }
1167
- .col-xs-offset-12 {
1168
- margin-left: 100%;
1169
- }
1170
- .col-xs-offset-11 {
1171
- margin-left: 91.66666667%;
1172
- }
1173
- .col-xs-offset-10 {
1174
- margin-left: 83.33333333%;
1175
- }
1176
- .col-xs-offset-9 {
1177
- margin-left: 75%;
1178
- }
1179
- .col-xs-offset-8 {
1180
- margin-left: 66.66666667%;
1181
- }
1182
- .col-xs-offset-7 {
1183
- margin-left: 58.33333333%;
1184
- }
1185
- .col-xs-offset-6 {
1186
- margin-left: 50%;
1187
- }
1188
- .col-xs-offset-5 {
1189
- margin-left: 41.66666667%;
1190
- }
1191
- .col-xs-offset-4 {
1192
- margin-left: 33.33333333%;
1193
- }
1194
- .col-xs-offset-3 {
1195
- margin-left: 25%;
1196
- }
1197
- .col-xs-offset-2 {
1198
- margin-left: 16.66666667%;
1199
- }
1200
- .col-xs-offset-1 {
1201
- margin-left: 8.33333333%;
1202
- }
1203
- .col-xs-offset-0 {
1204
- margin-left: 0%;
1205
- }
1206
- @media (min-width: 768px) {
1207
- .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
1208
- float: left;
1209
- }
1210
- .col-sm-12 {
1211
- width: 100%;
1212
- }
1213
- .col-sm-11 {
1214
- width: 91.66666667%;
1215
- }
1216
- .col-sm-10 {
1217
- width: 83.33333333%;
1218
- }
1219
- .col-sm-9 {
1220
- width: 75%;
1221
- }
1222
- .col-sm-8 {
1223
- width: 66.66666667%;
1224
- }
1225
- .col-sm-7 {
1226
- width: 58.33333333%;
1227
- }
1228
- .col-sm-6 {
1229
- width: 50%;
1230
- }
1231
- .col-sm-5 {
1232
- width: 41.66666667%;
1233
- }
1234
- .col-sm-4 {
1235
- width: 33.33333333%;
1236
- }
1237
- .col-sm-3 {
1238
- width: 25%;
1239
- }
1240
- .col-sm-2 {
1241
- width: 16.66666667%;
1242
- }
1243
- .col-sm-1 {
1244
- width: 8.33333333%;
1245
- }
1246
- .col-sm-pull-12 {
1247
- right: 100%;
1248
- }
1249
- .col-sm-pull-11 {
1250
- right: 91.66666667%;
1251
- }
1252
- .col-sm-pull-10 {
1253
- right: 83.33333333%;
1254
- }
1255
- .col-sm-pull-9 {
1256
- right: 75%;
1257
- }
1258
- .col-sm-pull-8 {
1259
- right: 66.66666667%;
1260
- }
1261
- .col-sm-pull-7 {
1262
- right: 58.33333333%;
1263
- }
1264
- .col-sm-pull-6 {
1265
- right: 50%;
1266
- }
1267
- .col-sm-pull-5 {
1268
- right: 41.66666667%;
1269
- }
1270
- .col-sm-pull-4 {
1271
- right: 33.33333333%;
1272
- }
1273
- .col-sm-pull-3 {
1274
- right: 25%;
1275
- }
1276
- .col-sm-pull-2 {
1277
- right: 16.66666667%;
1278
- }
1279
- .col-sm-pull-1 {
1280
- right: 8.33333333%;
1281
- }
1282
- .col-sm-pull-0 {
1283
- right: auto;
1284
- }
1285
- .col-sm-push-12 {
1286
- left: 100%;
1287
- }
1288
- .col-sm-push-11 {
1289
- left: 91.66666667%;
1290
- }
1291
- .col-sm-push-10 {
1292
- left: 83.33333333%;
1293
- }
1294
- .col-sm-push-9 {
1295
- left: 75%;
1296
- }
1297
- .col-sm-push-8 {
1298
- left: 66.66666667%;
1299
- }
1300
- .col-sm-push-7 {
1301
- left: 58.33333333%;
1302
- }
1303
- .col-sm-push-6 {
1304
- left: 50%;
1305
- }
1306
- .col-sm-push-5 {
1307
- left: 41.66666667%;
1308
- }
1309
- .col-sm-push-4 {
1310
- left: 33.33333333%;
1311
- }
1312
- .col-sm-push-3 {
1313
- left: 25%;
1314
- }
1315
- .col-sm-push-2 {
1316
- left: 16.66666667%;
1317
- }
1318
- .col-sm-push-1 {
1319
- left: 8.33333333%;
1320
- }
1321
- .col-sm-push-0 {
1322
- left: auto;
1323
- }
1324
- .col-sm-offset-12 {
1325
- margin-left: 100%;
1326
- }
1327
- .col-sm-offset-11 {
1328
- margin-left: 91.66666667%;
1329
- }
1330
- .col-sm-offset-10 {
1331
- margin-left: 83.33333333%;
1332
- }
1333
- .col-sm-offset-9 {
1334
- margin-left: 75%;
1335
- }
1336
- .col-sm-offset-8 {
1337
- margin-left: 66.66666667%;
1338
- }
1339
- .col-sm-offset-7 {
1340
- margin-left: 58.33333333%;
1341
- }
1342
- .col-sm-offset-6 {
1343
- margin-left: 50%;
1344
- }
1345
- .col-sm-offset-5 {
1346
- margin-left: 41.66666667%;
1347
- }
1348
- .col-sm-offset-4 {
1349
- margin-left: 33.33333333%;
1350
- }
1351
- .col-sm-offset-3 {
1352
- margin-left: 25%;
1353
- }
1354
- .col-sm-offset-2 {
1355
- margin-left: 16.66666667%;
1356
- }
1357
- .col-sm-offset-1 {
1358
- margin-left: 8.33333333%;
1359
- }
1360
- .col-sm-offset-0 {
1361
- margin-left: 0%;
1362
- }
1363
- }
1364
- @media (min-width: 992px) {
1365
- .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1366
- float: left;
1367
- }
1368
- .col-md-12 {
1369
- width: 100%;
1370
- }
1371
- .col-md-11 {
1372
- width: 91.66666667%;
1373
- }
1374
- .col-md-10 {
1375
- width: 83.33333333%;
1376
- }
1377
- .col-md-9 {
1378
- width: 75%;
1379
- }
1380
- .col-md-8 {
1381
- width: 66.66666667%;
1382
- }
1383
- .col-md-7 {
1384
- width: 58.33333333%;
1385
- }
1386
- .col-md-6 {
1387
- width: 50%;
1388
- }
1389
- .col-md-5 {
1390
- width: 41.66666667%;
1391
- }
1392
- .col-md-4 {
1393
- width: 33.33333333%;
1394
- }
1395
- .col-md-3 {
1396
- width: 25%;
1397
- }
1398
- .col-md-2 {
1399
- width: 16.66666667%;
1400
- }
1401
- .col-md-1 {
1402
- width: 8.33333333%;
1403
- }
1404
- .col-md-pull-12 {
1405
- right: 100%;
1406
- }
1407
- .col-md-pull-11 {
1408
- right: 91.66666667%;
1409
- }
1410
- .col-md-pull-10 {
1411
- right: 83.33333333%;
1412
- }
1413
- .col-md-pull-9 {
1414
- right: 75%;
1415
- }
1416
- .col-md-pull-8 {
1417
- right: 66.66666667%;
1418
- }
1419
- .col-md-pull-7 {
1420
- right: 58.33333333%;
1421
- }
1422
- .col-md-pull-6 {
1423
- right: 50%;
1424
- }
1425
- .col-md-pull-5 {
1426
- right: 41.66666667%;
1427
- }
1428
- .col-md-pull-4 {
1429
- right: 33.33333333%;
1430
- }
1431
- .col-md-pull-3 {
1432
- right: 25%;
1433
- }
1434
- .col-md-pull-2 {
1435
- right: 16.66666667%;
1436
- }
1437
- .col-md-pull-1 {
1438
- right: 8.33333333%;
1439
- }
1440
- .col-md-pull-0 {
1441
- right: auto;
1442
- }
1443
- .col-md-push-12 {
1444
- left: 100%;
1445
- }
1446
- .col-md-push-11 {
1447
- left: 91.66666667%;
1448
- }
1449
- .col-md-push-10 {
1450
- left: 83.33333333%;
1451
- }
1452
- .col-md-push-9 {
1453
- left: 75%;
1454
- }
1455
- .col-md-push-8 {
1456
- left: 66.66666667%;
1457
- }
1458
- .col-md-push-7 {
1459
- left: 58.33333333%;
1460
- }
1461
- .col-md-push-6 {
1462
- left: 50%;
1463
- }
1464
- .col-md-push-5 {
1465
- left: 41.66666667%;
1466
- }
1467
- .col-md-push-4 {
1468
- left: 33.33333333%;
1469
- }
1470
- .col-md-push-3 {
1471
- left: 25%;
1472
- }
1473
- .col-md-push-2 {
1474
- left: 16.66666667%;
1475
- }
1476
- .col-md-push-1 {
1477
- left: 8.33333333%;
1478
- }
1479
- .col-md-push-0 {
1480
- left: auto;
1481
- }
1482
- .col-md-offset-12 {
1483
- margin-left: 100%;
1484
- }
1485
- .col-md-offset-11 {
1486
- margin-left: 91.66666667%;
1487
- }
1488
- .col-md-offset-10 {
1489
- margin-left: 83.33333333%;
1490
- }
1491
- .col-md-offset-9 {
1492
- margin-left: 75%;
1493
- }
1494
- .col-md-offset-8 {
1495
- margin-left: 66.66666667%;
1496
- }
1497
- .col-md-offset-7 {
1498
- margin-left: 58.33333333%;
1499
- }
1500
- .col-md-offset-6 {
1501
- margin-left: 50%;
1502
- }
1503
- .col-md-offset-5 {
1504
- margin-left: 41.66666667%;
1505
- }
1506
- .col-md-offset-4 {
1507
- margin-left: 33.33333333%;
1508
- }
1509
- .col-md-offset-3 {
1510
- margin-left: 25%;
1511
- }
1512
- .col-md-offset-2 {
1513
- margin-left: 16.66666667%;
1514
- }
1515
- .col-md-offset-1 {
1516
- margin-left: 8.33333333%;
1517
- }
1518
- .col-md-offset-0 {
1519
- margin-left: 0%;
1520
- }
1521
- }
1522
- @media (min-width: 1200px) {
1523
- .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
1524
- float: left;
1525
- }
1526
- .col-lg-12 {
1527
- width: 100%;
1528
- }
1529
- .col-lg-11 {
1530
- width: 91.66666667%;
1531
- }
1532
- .col-lg-10 {
1533
- width: 83.33333333%;
1534
- }
1535
- .col-lg-9 {
1536
- width: 75%;
1537
- }
1538
- .col-lg-8 {
1539
- width: 66.66666667%;
1540
- }
1541
- .col-lg-7 {
1542
- width: 58.33333333%;
1543
- }
1544
- .col-lg-6 {
1545
- width: 50%;
1546
- }
1547
- .col-lg-5 {
1548
- width: 41.66666667%;
1549
- }
1550
- .col-lg-4 {
1551
- width: 33.33333333%;
1552
- }
1553
- .col-lg-3 {
1554
- width: 25%;
1555
- }
1556
- .col-lg-2 {
1557
- width: 16.66666667%;
1558
- }
1559
- .col-lg-1 {
1560
- width: 8.33333333%;
1561
- }
1562
- .col-lg-pull-12 {
1563
- right: 100%;
1564
- }
1565
- .col-lg-pull-11 {
1566
- right: 91.66666667%;
1567
- }
1568
- .col-lg-pull-10 {
1569
- right: 83.33333333%;
1570
- }
1571
- .col-lg-pull-9 {
1572
- right: 75%;
1573
- }
1574
- .col-lg-pull-8 {
1575
- right: 66.66666667%;
1576
- }
1577
- .col-lg-pull-7 {
1578
- right: 58.33333333%;
1579
- }
1580
- .col-lg-pull-6 {
1581
- right: 50%;
1582
- }
1583
- .col-lg-pull-5 {
1584
- right: 41.66666667%;
1585
- }
1586
- .col-lg-pull-4 {
1587
- right: 33.33333333%;
1588
- }
1589
- .col-lg-pull-3 {
1590
- right: 25%;
1591
- }
1592
- .col-lg-pull-2 {
1593
- right: 16.66666667%;
1594
- }
1595
- .col-lg-pull-1 {
1596
- right: 8.33333333%;
1597
- }
1598
- .col-lg-pull-0 {
1599
- right: auto;
1600
- }
1601
- .col-lg-push-12 {
1602
- left: 100%;
1603
- }
1604
- .col-lg-push-11 {
1605
- left: 91.66666667%;
1606
- }
1607
- .col-lg-push-10 {
1608
- left: 83.33333333%;
1609
- }
1610
- .col-lg-push-9 {
1611
- left: 75%;
1612
- }
1613
- .col-lg-push-8 {
1614
- left: 66.66666667%;
1615
- }
1616
- .col-lg-push-7 {
1617
- left: 58.33333333%;
1618
- }
1619
- .col-lg-push-6 {
1620
- left: 50%;
1621
- }
1622
- .col-lg-push-5 {
1623
- left: 41.66666667%;
1624
- }
1625
- .col-lg-push-4 {
1626
- left: 33.33333333%;
1627
- }
1628
- .col-lg-push-3 {
1629
- left: 25%;
1630
- }
1631
- .col-lg-push-2 {
1632
- left: 16.66666667%;
1633
- }
1634
- .col-lg-push-1 {
1635
- left: 8.33333333%;
1636
- }
1637
- .col-lg-push-0 {
1638
- left: auto;
1639
- }
1640
- .col-lg-offset-12 {
1641
- margin-left: 100%;
1642
- }
1643
- .col-lg-offset-11 {
1644
- margin-left: 91.66666667%;
1645
- }
1646
- .col-lg-offset-10 {
1647
- margin-left: 83.33333333%;
1648
- }
1649
- .col-lg-offset-9 {
1650
- margin-left: 75%;
1651
- }
1652
- .col-lg-offset-8 {
1653
- margin-left: 66.66666667%;
1654
- }
1655
- .col-lg-offset-7 {
1656
- margin-left: 58.33333333%;
1657
- }
1658
- .col-lg-offset-6 {
1659
- margin-left: 50%;
1660
- }
1661
- .col-lg-offset-5 {
1662
- margin-left: 41.66666667%;
1663
- }
1664
- .col-lg-offset-4 {
1665
- margin-left: 33.33333333%;
1666
- }
1667
- .col-lg-offset-3 {
1668
- margin-left: 25%;
1669
- }
1670
- .col-lg-offset-2 {
1671
- margin-left: 16.66666667%;
1672
- }
1673
- .col-lg-offset-1 {
1674
- margin-left: 8.33333333%;
1675
- }
1676
- .col-lg-offset-0 {
1677
- margin-left: 0%;
1678
- }
1679
- }
1680
- .clearfix:before,
1681
- .clearfix:after,
1682
- .pt-cv-container:before,
1683
- .pt-cv-container:after,
1684
- .pt-cv-container-fluid:before,
1685
- .pt-cv-container-fluid:after,
1686
- .row:before,
1687
- .row:after {
1688
- content: " ";
1689
- display: table;
1690
- }
1691
- .clearfix:after,
1692
- .pt-cv-container:after,
1693
- .pt-cv-container-fluid:after,
1694
- .row:after {
1695
- clear: both;
1696
- }
1697
- /* @Buttons-minified */
1698
- .btn {
1699
- display: inline-block;
1700
- margin-bottom: 0;
1701
- font-weight: normal;
1702
- text-align: center;
1703
- vertical-align: middle;
1704
- touch-action: manipulation;
1705
- cursor: pointer;
1706
- background-image: none;
1707
- border: 1px solid transparent;
1708
- white-space: nowrap;
1709
- padding: 6px 12px;
1710
- font-size: 14px;
1711
- line-height: 1.42857143;
1712
- border-radius: 4px;
1713
- -webkit-user-select: none;
1714
- -moz-user-select: none;
1715
- -ms-user-select: none;
1716
- user-select: none;
1717
- }
1718
- .btn:focus,
1719
- .btn:active:focus,
1720
- .btn.active:focus,
1721
- .btn.focus,
1722
- .btn:active.focus,
1723
- .btn.active.focus {
1724
- outline: thin dotted;
1725
- outline: 5px auto -webkit-focus-ring-color;
1726
- outline-offset: -2px;
1727
- }
1728
- .btn:hover,
1729
- .btn:focus,
1730
- .btn.focus {
1731
- color: #333333;
1732
- text-decoration: none;
1733
- }
1734
- .btn:active,
1735
- .btn.active {
1736
- outline: 0;
1737
- background-image: none;
1738
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1739
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1740
- }
1741
- .btn.disabled,
1742
- .btn[disabled],
1743
- fieldset[disabled] .btn {
1744
- cursor: not-allowed;
1745
- pointer-events: none;
1746
- opacity: 0.65;
1747
- filter: alpha(opacity=65);
1748
- -webkit-box-shadow: none;
1749
- box-shadow: none;
1750
- }
1751
- /* + Button success */
1752
- .btn-success {
1753
- color: #ffffff;
1754
- background-color: #5cb85c;
1755
- border-color: #4cae4c;
1756
- }
1757
- .btn-success:hover,
1758
- .btn-success:focus,
1759
- .btn-success.focus,
1760
- .btn-success:active,
1761
- .btn-success.active,
1762
- .open > .dropdown-toggle.btn-success {
1763
- color: #ffffff;
1764
- background-color: #449d44;
1765
- border-color: #398439;
1766
- }
1767
- .btn-success:active,
1768
- .btn-success.active,
1769
- .open > .dropdown-toggle.btn-success {
1770
- background-image: none;
1771
- }
1772
- /* + Button primary */
1773
- .btn-primary {
1774
- color: #ffffff;
1775
- background-color: #428bca;
1776
- border-color: #357ebd;
1777
- }
1778
- .btn-primary:hover,
1779
- .btn-primary:focus,
1780
- .btn-primary.focus,
1781
- .btn-primary:active,
1782
- .btn-primary.active,
1783
- .open > .dropdown-toggle.btn-primary {
1784
- color: #ffffff;
1785
- background-color: #3071a9;
1786
- border-color: #285e8e;
1787
- }
1788
- .btn-primary:active,
1789
- .btn-primary.active,
1790
- .open > .dropdown-toggle.btn-primary {
1791
- background-image: none;
1792
- }
1793
- /* + Button small */
1794
- .btn-sm {
1795
- padding: 5px 10px;
1796
- font-size: 12px;
1797
- line-height: 1.5;
1798
- border-radius: 3px;
1799
- }
1800
- /* @Button groups-minified */
1801
- .btn-group,
1802
- .btn-group-vertical {
1803
- position: relative;
1804
- display: inline-block;
1805
- vertical-align: middle;
1806
- }
1807
- .btn-group > .btn,
1808
- .btn-group-vertical > .btn {
1809
- position: relative;
1810
- float: left;
1811
- }
1812
- .btn-group > .btn:hover,
1813
- .btn-group-vertical > .btn:hover,
1814
- .btn-group > .btn:focus,
1815
- .btn-group-vertical > .btn:focus,
1816
- .btn-group > .btn:active,
1817
- .btn-group-vertical > .btn:active,
1818
- .btn-group > .btn.active,
1819
- .btn-group-vertical > .btn.active {
1820
- z-index: 2;
1821
- }
1822
- .btn-group > .btn:focus,
1823
- .btn-group-vertical > .btn:focus {
1824
- outline: 0;
1825
- }
1826
- .btn-group .btn + .btn,
1827
- .btn-group .btn + .btn-group,
1828
- .btn-group .btn-group + .btn,
1829
- .btn-group .btn-group + .btn-group {
1830
- margin-left: -1px;
1831
- }
1832
- .btn-toolbar {
1833
- margin-left: -5px;
1834
- }
1835
- .btn-toolbar .btn-group,
1836
- .btn-toolbar .input-group {
1837
- float: left;
1838
- }
1839
- .btn-toolbar > .btn,
1840
- .btn-toolbar > .btn-group,
1841
- .btn-toolbar > .input-group {
1842
- margin-left: 5px;
1843
- }
1844
- .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
1845
- border-radius: 0;
1846
- }
1847
- .btn-group > .btn:first-child {
1848
- margin-left: 0;
1849
- }
1850
- .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
1851
- border-bottom-right-radius: 0;
1852
- border-top-right-radius: 0;
1853
- }
1854
- .btn-group > .btn:last-child:not(:first-child),
1855
- .btn-group > .dropdown-toggle:not(:first-child) {
1856
- border-bottom-left-radius: 0;
1857
- border-top-left-radius: 0;
1858
- }
1859
- .btn-group > .btn-group {
1860
- float: left;
1861
- }
1862
- .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
1863
- border-radius: 0;
1864
- }
1865
- .btn-group > .btn-group:first-child > .btn:last-child,
1866
- .btn-group > .btn-group:first-child > .dropdown-toggle {
1867
- border-bottom-right-radius: 0;
1868
- border-top-right-radius: 0;
1869
- }
1870
- .btn-group > .btn-group:last-child > .btn:first-child {
1871
- border-bottom-left-radius: 0;
1872
- border-top-left-radius: 0;
1873
- }
1874
- .btn-group .dropdown-toggle:active,
1875
- .btn-group.open .dropdown-toggle {
1876
- outline: 0;
1877
- }
1878
- .btn-group > .btn + .dropdown-toggle {
1879
- padding-left: 8px;
1880
- padding-right: 8px;
1881
- }
1882
- .btn-group > .btn-lg + .dropdown-toggle {
1883
- padding-left: 12px;
1884
- padding-right: 12px;
1885
- }
1886
- .btn-group.open .dropdown-toggle {
1887
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1888
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1889
- }
1890
- .btn-group.open .dropdown-toggle.btn-link {
1891
- -webkit-box-shadow: none;
1892
- box-shadow: none;
1893
- }
1894
- .btn .caret {
1895
- margin-left: 0;
1896
- }
1897
- .btn-lg .caret {
1898
- border-width: 5px 5px 0;
1899
- border-bottom-width: 0;
1900
- }
1901
- .dropup .btn-lg .caret {
1902
- border-width: 0 5px 5px;
1903
- }
1904
- .btn-group-vertical > .btn,
1905
- .btn-group-vertical > .btn-group,
1906
- .btn-group-vertical > .btn-group > .btn {
1907
- display: block;
1908
- float: none;
1909
- width: 100%;
1910
- max-width: 100%;
1911
- }
1912
- .btn-group-vertical > .btn-group > .btn {
1913
- float: none;
1914
- }
1915
- .btn-group-vertical > .btn + .btn,
1916
- .btn-group-vertical > .btn + .btn-group,
1917
- .btn-group-vertical > .btn-group + .btn,
1918
- .btn-group-vertical > .btn-group + .btn-group {
1919
- margin-top: -1px;
1920
- margin-left: 0;
1921
- }
1922
- .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
1923
- border-radius: 0;
1924
- }
1925
- .btn-group-vertical > .btn:first-child:not(:last-child) {
1926
- border-top-right-radius: 4px;
1927
- border-bottom-right-radius: 0;
1928
- border-bottom-left-radius: 0;
1929
- }
1930
- .btn-group-vertical > .btn:last-child:not(:first-child) {
1931
- border-bottom-left-radius: 4px;
1932
- border-top-right-radius: 0;
1933
- border-top-left-radius: 0;
1934
- }
1935
- .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
1936
- border-radius: 0;
1937
- }
1938
- .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
1939
- .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
1940
- border-bottom-right-radius: 0;
1941
- border-bottom-left-radius: 0;
1942
- }
1943
- .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
1944
- border-top-right-radius: 0;
1945
- border-top-left-radius: 0;
1946
- }
1947
- .btn-group-justified {
1948
- display: table;
1949
- width: 100%;
1950
- table-layout: fixed;
1951
- border-collapse: separate;
1952
- }
1953
- .btn-group-justified > .btn,
1954
- .btn-group-justified > .btn-group {
1955
- float: none;
1956
- display: table-cell;
1957
- width: 1%;
1958
- }
1959
- .btn-group-justified > .btn-group .btn {
1960
- width: 100%;
1961
- }
1962
- .btn-group-justified > .btn-group .dropdown-menu {
1963
- left: auto;
1964
- }
1965
- [data-toggle="buttons"] > .btn input[type="radio"],
1966
- [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
1967
- [data-toggle="buttons"] > .btn input[type="checkbox"],
1968
- [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
1969
- position: absolute;
1970
- clip: rect(0, 0, 0, 0);
1971
- pointer-events: none;
1972
- }
1973
- .clearfix:before,
1974
- .clearfix:after,
1975
- .btn-toolbar:before,
1976
- .btn-toolbar:after,
1977
- .btn-group-vertical > .btn-group:before,
1978
- .btn-group-vertical > .btn-group:after {
1979
- content: " ";
1980
- display: table;
1981
- }
1982
- .clearfix:after,
1983
- .btn-toolbar:after,
1984
- .btn-group-vertical > .btn-group:after {
1985
- clear: both;
1986
- }
1987
- /* @Navs-minified */
1988
- .nav {
1989
- margin-bottom: 0;
1990
- padding-left: 0;
1991
- list-style: none;
1992
- }
1993
- .nav > li {
1994
- position: relative;
1995
- display: block;
1996
- }
1997
- .nav > li > a {
1998
- position: relative;
1999
- display: block;
2000
- padding: 10px 15px;
2001
- }
2002
- .nav > li > a:hover,
2003
- .nav > li > a:focus {
2004
- text-decoration: none;
2005
- background-color: #eeeeee;
2006
- }
2007
- .nav > li.disabled > a {
2008
- color: #777777;
2009
- }
2010
- .nav > li.disabled > a:hover,
2011
- .nav > li.disabled > a:focus {
2012
- color: #777777;
2013
- text-decoration: none;
2014
- background-color: transparent;
2015
- cursor: not-allowed;
2016
- }
2017
- .nav .open > a,
2018
- .nav .open > a:hover,
2019
- .nav .open > a:focus {
2020
- background-color: #eeeeee;
2021
- border-color: #428bca;
2022
- }
2023
- .nav .nav-divider {
2024
- height: 1px;
2025
- margin: 9px 0;
2026
- overflow: hidden;
2027
- background-color: #e5e5e5;
2028
- }
2029
- .nav > li > a > img {
2030
- max-width: none;
2031
- }
2032
- .nav-tabs {
2033
- border-bottom: 1px solid #dddddd;
2034
- }
2035
- .nav-tabs > li {
2036
- float: left;
2037
- margin-bottom: -1px;
2038
- }
2039
- .nav-tabs > li > a {
2040
- margin-right: 2px;
2041
- line-height: 1.42857143;
2042
- border: 1px solid transparent;
2043
- border-radius: 4px 4px 0 0;
2044
- }
2045
- .nav-tabs > li > a:hover {
2046
- border-color: #eeeeee #eeeeee #dddddd;
2047
- }
2048
- .nav-tabs > li.active > a,
2049
- .nav-tabs > li.active > a:hover,
2050
- .nav-tabs > li.active > a:focus {
2051
- color: #555555;
2052
- background-color: #ffffff;
2053
- border: 1px solid #dddddd;
2054
- border-bottom-color: transparent;
2055
- cursor: default;
2056
- }
2057
- .nav-tabs.nav-justified {
2058
- width: 100%;
2059
- border-bottom: 0;
2060
- }
2061
- .nav-tabs.nav-justified > li {
2062
- float: none;
2063
- }
2064
- .nav-tabs.nav-justified > li > a {
2065
- text-align: center;
2066
- margin-bottom: 5px;
2067
- }
2068
- .nav-tabs.nav-justified > .dropdown .dropdown-menu {
2069
- top: auto;
2070
- left: auto;
2071
- }
2072
- @media (min-width: 768px) {
2073
- .nav-tabs.nav-justified > li {
2074
- display: table-cell;
2075
- width: 1%;
2076
- }
2077
- .nav-tabs.nav-justified > li > a {
2078
- margin-bottom: 0;
2079
- }
2080
- }
2081
- .nav-tabs.nav-justified > li > a {
2082
- margin-right: 0;
2083
- border-radius: 4px;
2084
- }
2085
- .nav-tabs.nav-justified > .active > a,
2086
- .nav-tabs.nav-justified > .active > a:hover,
2087
- .nav-tabs.nav-justified > .active > a:focus {
2088
- border: 1px solid #dddddd;
2089
- }
2090
- @media (min-width: 768px) {
2091
- .nav-tabs.nav-justified > li > a {
2092
- border-bottom: 1px solid #dddddd;
2093
- border-radius: 4px 4px 0 0;
2094
- }
2095
- .nav-tabs.nav-justified > .active > a,
2096
- .nav-tabs.nav-justified > .active > a:hover,
2097
- .nav-tabs.nav-justified > .active > a:focus {
2098
- border-bottom-color: #ffffff;
2099
- }
2100
- }
2101
- /* + */
2102
- .nav-tabs:before, .nav-tabs:after {
2103
- clear: both;
2104
- content: " ";
2105
- display: table;
2106
- }
2107
- /* + Tab-panel */
2108
- .tab-content > .tab-pane {
2109
- display: none;
2110
- visibility: hidden;
2111
- }
2112
- .tab-content > .active {
2113
- display: block;
2114
- visibility: visible;
2115
- }
2116
- /* @Pagination */
2117
- .pagination {
2118
- display: inline-block;
2119
- padding-left: 0;
2120
- margin: 20px 0;
2121
- border-radius: 4px;
2122
- }
2123
- .pagination > li {
2124
- display: inline;
2125
- }
2126
- .pagination > li > a,
2127
- .pagination > li > span {
2128
- position: relative;
2129
- float: left;
2130
- padding: 6px 12px;
2131
- line-height: 1.42857143;
2132
- text-decoration: none;
2133
- color: #428bca;
2134
- background-color: #ffffff;
2135
- border: 1px solid #dddddd;
2136
- margin-left: -1px;
2137
- }
2138
- .pagination > li:first-child > a,
2139
- .pagination > li:first-child > span {
2140
- margin-left: 0;
2141
- border-bottom-left-radius: 4px;
2142
- border-top-left-radius: 4px;
2143
- }
2144
- .pagination > li:last-child > a,
2145
- .pagination > li:last-child > span {
2146
- border-bottom-right-radius: 4px;
2147
- border-top-right-radius: 4px;
2148
- }
2149
- .pagination > li > a:hover,
2150
- .pagination > li > span:hover,
2151
- .pagination > li > a:focus,
2152
- .pagination > li > span:focus {
2153
- color: #2a6496;
2154
- background-color: #eeeeee;
2155
- border-color: #dddddd;
2156
- }
2157
- .pagination > .active > a,
2158
- .pagination > .active > span,
2159
- .pagination > .active > a:hover,
2160
- .pagination > .active > span:hover,
2161
- .pagination > .active > a:focus,
2162
- .pagination > .active > span:focus {
2163
- z-index: 2;
2164
- color: #ffffff;
2165
- background-color: #428bca;
2166
- border-color: #428bca;
2167
- cursor: default;
2168
- }
2169
- .pagination > .disabled > span,
2170
- .pagination > .disabled > span:hover,
2171
- .pagination > .disabled > span:focus,
2172
- .pagination > .disabled > a,
2173
- .pagination > .disabled > a:hover,
2174
- .pagination > .disabled > a:focus {
2175
- color: #777777;
2176
- background-color: #ffffff;
2177
- border-color: #dddddd;
2178
- cursor: not-allowed;
2179
- }
2180
- .pagination-lg > li > a,
2181
- .pagination-lg > li > span {
2182
- padding: 10px 16px;
2183
- font-size: 18px;
2184
- }
2185
- .pagination-lg > li:first-child > a,
2186
- .pagination-lg > li:first-child > span {
2187
- border-bottom-left-radius: 6px;
2188
- border-top-left-radius: 6px;
2189
- }
2190
- .pagination-lg > li:last-child > a,
2191
- .pagination-lg > li:last-child > span {
2192
- border-bottom-right-radius: 6px;
2193
- border-top-right-radius: 6px;
2194
- }
2195
- .pagination-sm > li > a,
2196
- .pagination-sm > li > span {
2197
- padding: 5px 10px;
2198
- font-size: 12px;
2199
- }
2200
- .pagination-sm > li:first-child > a,
2201
- .pagination-sm > li:first-child > span {
2202
- border-bottom-left-radius: 3px;
2203
- border-top-left-radius: 3px;
2204
- }
2205
- .pagination-sm > li:last-child > a,
2206
- .pagination-sm > li:last-child > span {
2207
- border-bottom-right-radius: 3px;
2208
- border-top-right-radius: 3px;
2209
- }
2210
- /* @Thumbnails */
2211
- /* 242 */
2212
- .img-responsive,
2213
- .thumbnail > img,
2214
- .thumbnail a > img {
2215
- display: block;
2216
- max-width: 100%;
2217
- height: auto;
2218
- }
2219
- .thumbnail {
2220
- display: block;
2221
- padding: 4px;
2222
- margin-bottom: 20px;
2223
- line-height: 1.42857143;
2224
- background-color: #ffffff;
2225
- border: 1px solid #dddddd;
2226
- border-radius: 4px;
2227
- -webkit-transition: border 0.2s ease-in-out;
2228
- -o-transition: border 0.2s ease-in-out;
2229
- transition: border 0.2s ease-in-out;
2230
- }
2231
- .thumbnail > img,
2232
- .thumbnail a > img {
2233
- margin-left: auto;
2234
- margin-right: auto;
2235
- }
2236
- a.thumbnail:hover,
2237
- a.thumbnail:focus,
2238
- a.thumbnail.active {
2239
- border-color: #428bca;
2240
- }
2241
- .thumbnail .caption {
2242
- padding: 9px;
2243
- color: #333333;
2244
- }
2245
- /* @JavaScript components */
2246
- /* 242 */
2247
- .img-responsive,
2248
- .carousel-inner > .item > img,
2249
- .carousel-inner > .item > a > img {
2250
- display: block;
2251
- max-width: 100%;
2252
- height: auto;
2253
- }
2254
- .fade {
2255
- opacity: 0;
2256
- -webkit-transition: opacity 0.15s linear;
2257
- -o-transition: opacity 0.15s linear;
2258
- transition: opacity 0.15s linear;
2259
- }
2260
- .fade.in {
2261
- opacity: 1;
2262
- }
2263
- /*.collapse {
2264
- display: none;
2265
- visibility: hidden;
2266
- }
2267
- .collapse.in {
2268
- display: block;
2269
- visibility: visible;
2270
- }*/
2271
- tr.collapse.in {
2272
- display: table-row;
2273
- }
2274
- tbody.collapse.in {
2275
- display: table-row-group;
2276
- }
2277
- .collapsing {
2278
- position: relative;
2279
- height: 0;
2280
- overflow: hidden;
2281
- -webkit-transition-property: height, visibility;
2282
- transition-property: height, visibility;
2283
- -webkit-transition-duration: 0.35s;
2284
- transition-duration: 0.35s;
2285
- -webkit-transition-timing-function: ease;
2286
- transition-timing-function: ease;
2287
- }
2288
- .caret {
2289
- display: inline-block;
2290
- width: 0;
2291
- height: 0;
2292
- margin-left: 2px;
2293
- vertical-align: middle;
2294
- border-top: 4px solid;
2295
- border-right: 4px solid transparent;
2296
- border-left: 4px solid transparent;
2297
- }
2298
- .dropdown {
2299
- position: relative;
2300
- }
2301
- .dropdown-toggle:focus {
2302
- outline: 0;
2303
- }
2304
- /*.dropdown-menu css: move to plugin css*/
2305
- .dropdown-menu.pull-right {
2306
- right: 0;
2307
- left: auto;
2308
- }
2309
- .dropdown-menu .divider {
2310
- height: 1px;
2311
- margin: 9px 0;
2312
- overflow: hidden;
2313
- background-color: #e5e5e5;
2314
- }
2315
- .dropdown-menu > li > a {
2316
- display: block;
2317
- padding: 3px 20px;
2318
- clear: both;
2319
- font-weight: normal;
2320
- line-height: 1.42857143;
2321
- color: #333333;
2322
- white-space: nowrap;
2323
- }
2324
- .dropdown-menu > li > a:hover,
2325
- .dropdown-menu > li > a:focus {
2326
- text-decoration: none;
2327
- color: #262626;
2328
- background-color: #f5f5f5;
2329
- }
2330
- .dropdown-menu > .active > a,
2331
- .dropdown-menu > .active > a:hover,
2332
- .dropdown-menu > .active > a:focus {
2333
- color: #ffffff;
2334
- text-decoration: none;
2335
- outline: 0;
2336
- background-color: #428bca;
2337
- }
2338
- .dropdown-menu > .disabled > a,
2339
- .dropdown-menu > .disabled > a:hover,
2340
- .dropdown-menu > .disabled > a:focus {
2341
- color: #777777;
2342
- }
2343
- .dropdown-menu > .disabled > a:hover,
2344
- .dropdown-menu > .disabled > a:focus {
2345
- text-decoration: none;
2346
- background-color: transparent;
2347
- background-image: none;
2348
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2349
- cursor: not-allowed;
2350
- }
2351
- .open > .dropdown-menu {
2352
- display: block;
2353
- }
2354
- .open > a {
2355
- outline: 0;
2356
- }
2357
- .dropdown-menu-right {
2358
- left: auto;
2359
- right: 0;
2360
- }
2361
- .dropdown-menu-left {
2362
- left: 0;
2363
- right: auto;
2364
- }
2365
- .dropdown-header {
2366
- display: block;
2367
- padding: 3px 20px;
2368
- font-size: 12px;
2369
- line-height: 1.42857143;
2370
- color: #777777;
2371
- white-space: nowrap;
2372
- }
2373
- .dropdown-backdrop {
2374
- position: fixed;
2375
- left: 0;
2376
- right: 0;
2377
- bottom: 0;
2378
- top: 0;
2379
- z-index: 990;
2380
- }
2381
- .pull-right > .dropdown-menu {
2382
- right: 0;
2383
- left: auto;
2384
- }
2385
- .dropup .caret,
2386
- .navbar-fixed-bottom .dropdown .caret {
2387
- border-top: 0;
2388
- border-bottom: 4px solid;
2389
- content: "";
2390
- }
2391
- .dropup .dropdown-menu,
2392
- .navbar-fixed-bottom .dropdown .dropdown-menu {
2393
- top: auto;
2394
- bottom: 100%;
2395
- margin-bottom: 1px;
2396
- }
2397
- @media (min-width: 768px) {
2398
- .navbar-right .dropdown-menu {
2399
- left: auto;
2400
- right: 0;
2401
- }
2402
- .navbar-right .dropdown-menu-left {
2403
- left: 0;
2404
- right: auto;
2405
- }
2406
- }
2407
- .modal-open {
2408
- overflow: hidden;
2409
- }
2410
- .modal {
2411
- display: none;
2412
- overflow: hidden;
2413
- position: fixed;
2414
- top: 0;
2415
- right: 0;
2416
- bottom: 0;
2417
- left: 0;
2418
- z-index: 1040;
2419
- -webkit-overflow-scrolling: touch;
2420
- outline: 0;
2421
- }
2422
- .modal.fade .modal-dialog {
2423
- -webkit-transform: translate(0, -25%);
2424
- -ms-transform: translate(0, -25%);
2425
- -o-transform: translate(0, -25%);
2426
- transform: translate(0, -25%);
2427
- -webkit-transition: -webkit-transform 0.3s ease-out;
2428
- -moz-transition: -moz-transform 0.3s ease-out;
2429
- -o-transition: -o-transform 0.3s ease-out;
2430
- transition: transform 0.3s ease-out;
2431
- }
2432
- .modal.in .modal-dialog {
2433
- -webkit-transform: translate(0, 0);
2434
- -ms-transform: translate(0, 0);
2435
- -o-transform: translate(0, 0);
2436
- transform: translate(0, 0);
2437
- }
2438
- .modal-open .modal {
2439
- overflow-x: hidden;
2440
- overflow-y: auto;
2441
- }
2442
- .modal-dialog {
2443
- position: relative;
2444
- width: auto;
2445
- margin: 10px;
2446
- }
2447
- .modal-content {
2448
- position: relative;
2449
- background-color: #ffffff;
2450
- border: 1px solid #999999;
2451
- border: 1px solid rgba(0, 0, 0, 0.2);
2452
- border-radius: 6px;
2453
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2454
- box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2455
- background-clip: padding-box;
2456
- outline: 0;
2457
- }
2458
- .modal-backdrop {
2459
- position: fixed;
2460
- top: 0;
2461
- right: 0;
2462
- bottom: 0;
2463
- left: 0;
2464
- background-color: #000000;
2465
- }
2466
- .modal-backdrop.fade {
2467
- opacity: 0;
2468
- filter: alpha(opacity=0);
2469
- }
2470
- .modal-backdrop.in {
2471
- opacity: 0.5;
2472
- filter: alpha(opacity=50);
2473
- }
2474
- .modal-header {
2475
- padding: 15px;
2476
- border-bottom: 1px solid #e5e5e5;
2477
- min-height: 16.42857143px;
2478
- }
2479
- .modal-header .close {
2480
- margin-top: -2px;
2481
- }
2482
- .modal-title {
2483
- margin: 0;
2484
- line-height: 1.42857143;
2485
- }
2486
- .modal-body {
2487
- position: relative;
2488
- padding: 15px;
2489
- }
2490
- .modal-footer {
2491
- padding: 15px;
2492
- text-align: right;
2493
- border-top: 1px solid #e5e5e5;
2494
- }
2495
- .modal-footer .btn + .btn {
2496
- margin-left: 5px;
2497
- margin-bottom: 0;
2498
- }
2499
- .modal-footer .btn-group .btn + .btn {
2500
- margin-left: -1px;
2501
- }
2502
- .modal-footer .btn-block + .btn-block {
2503
- margin-left: 0;
2504
- }
2505
- .modal-scrollbar-measure {
2506
- position: absolute;
2507
- top: -9999px;
2508
- width: 50px;
2509
- height: 50px;
2510
- overflow: scroll;
2511
- }
2512
- @media (min-width: 768px) {
2513
- .modal-dialog {
2514
- width: 600px;
2515
- margin: 30px auto;
2516
- }
2517
- .modal-content {
2518
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
2519
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
2520
- }
2521
- .modal-sm {
2522
- width: 300px;
2523
- }
2524
- }
2525
- @media (min-width: 992px) {
2526
- .modal-lg {
2527
- width: 900px;
2528
- }
2529
- }
2530
- /* - Tooltip */
2531
- /* - Popover */
2532
- .carousel {
2533
- position: relative;
2534
- }
2535
- .carousel-inner {
2536
- position: relative;
2537
- overflow: hidden;
2538
- width: 100%;
2539
- }
2540
- .carousel-inner > .item {
2541
- display: none;
2542
- position: relative;
2543
- -webkit-transition: 0.6s ease-in-out left;
2544
- -o-transition: 0.6s ease-in-out left;
2545
- transition: 0.6s ease-in-out left;
2546
- }
2547
- .carousel-inner > .item > img,
2548
- .carousel-inner > .item > a > img {
2549
- line-height: 1;
2550
- }
2551
- @media all and (transform-3d), (-webkit-transform-3d) {
2552
- .carousel-inner > .item {
2553
- transition: transform 0.6s ease-in-out;
2554
- backface-visibility: hidden;
2555
- perspective: 1000;
2556
- }
2557
- .carousel-inner > .item.next,
2558
- .carousel-inner > .item.active.right {
2559
- transform: translate3d(100%, 0, 0);
2560
- left: 0;
2561
- }
2562
- .carousel-inner > .item.prev,
2563
- .carousel-inner > .item.active.left {
2564
- transform: translate3d(-100%, 0, 0);
2565
- left: 0;
2566
- }
2567
- .carousel-inner > .item.next.left,
2568
- .carousel-inner > .item.prev.right,
2569
- .carousel-inner > .item.active {
2570
- transform: translate3d(0, 0, 0);
2571
- left: 0;
2572
- }
2573
- }
2574
- .carousel-inner > .active,
2575
- .carousel-inner > .next,
2576
- .carousel-inner > .prev {
2577
- display: block;
2578
- }
2579
- .carousel-inner > .active {
2580
- left: 0;
2581
- }
2582
- .carousel-inner > .next,
2583
- .carousel-inner > .prev {
2584
- position: absolute;
2585
- top: 0;
2586
- width: 100%;
2587
- }
2588
- .carousel-inner > .next {
2589
- left: 100%;
2590
- }
2591
- .carousel-inner > .prev {
2592
- left: -100%;
2593
- }
2594
- .carousel-inner > .next.left,
2595
- .carousel-inner > .prev.right {
2596
- left: 0;
2597
- }
2598
- .carousel-inner > .active.left {
2599
- left: -100%;
2600
- }
2601
- .carousel-inner > .active.right {
2602
- left: 100%;
2603
- }
2604
- .carousel-control {
2605
- position: absolute;
2606
- top: 0;
2607
- left: 0;
2608
- bottom: 0;
2609
- width: 15%;
2610
- opacity: 0.5;
2611
- filter: alpha(opacity=50);
2612
- font-size: 20px;
2613
- color: #ffffff;
2614
- text-align: center;
2615
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
2616
- }
2617
- .carousel-control.left {
2618
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
2619
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
2620
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
2621
- background-repeat: repeat-x;
2622
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
2623
- }
2624
- .carousel-control.right {
2625
- left: auto;
2626
- right: 0;
2627
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
2628
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
2629
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
2630
- background-repeat: repeat-x;
2631
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
2632
- }
2633
- .carousel-control:hover,
2634
- .carousel-control:focus {
2635
- outline: 0;
2636
- color: #ffffff;
2637
- text-decoration: none;
2638
- opacity: 0.9;
2639
- filter: alpha(opacity=90);
2640
- }
2641
- .carousel-control .icon-prev,
2642
- .carousel-control .icon-next,
2643
- .carousel-control .glyphicon-chevron-left,
2644
- .carousel-control .glyphicon-chevron-right {
2645
- position: absolute;
2646
- top: 50%;
2647
- z-index: 5;
2648
- display: inline-block;
2649
- }
2650
- .carousel-control .icon-prev,
2651
- .carousel-control .glyphicon-chevron-left {
2652
- left: 50%;
2653
- margin-left: -10px;
2654
- }
2655
- .carousel-control .icon-next,
2656
- .carousel-control .glyphicon-chevron-right {
2657
- right: 50%;
2658
- margin-right: -10px;
2659
- }
2660
- .carousel-control .icon-prev,
2661
- .carousel-control .icon-next {
2662
- width: 20px;
2663
- height: 20px;
2664
- margin-top: -10px;
2665
- font-family: serif;
2666
- }
2667
- .carousel-control .icon-prev:before {
2668
- content: '\2039';
2669
- }
2670
- .carousel-control .icon-next:before {
2671
- content: '\203a';
2672
- }
2673
- .pt-cv-carousel-indicators {
2674
- position: absolute;
2675
- bottom: 10px;
2676
- left: 50%;
2677
- z-index: 15;
2678
- width: 60%;
2679
- margin-left: -30%;
2680
- padding-left: 0;
2681
- list-style: none;
2682
- text-align: center;
2683
- }
2684
- .pt-cv-carousel-indicators li {
2685
- display: inline-block;
2686
- width: 10px;
2687
- height: 10px;
2688
- margin: 1px;
2689
- text-indent: -999px;
2690
- border: 1px solid #ffffff;
2691
- border-radius: 10px;
2692
- cursor: pointer;
2693
- background-color: #000 \9;
2694
- background-color: rgba(0, 0, 0, 0);
2695
- }
2696
- .pt-cv-carousel-indicators .active {
2697
- margin: 0;
2698
- width: 12px;
2699
- height: 12px;
2700
- background-color: #ffffff;
2701
- }
2702
- .pt-cv-carousel-caption {
2703
- position: absolute;
2704
- left: 15%;
2705
- right: 15%;
2706
- bottom: 20px;
2707
- z-index: 10;
2708
- padding-top: 20px;
2709
- padding-bottom: 20px;
2710
- color: #ffffff;
2711
- text-align: center;
2712
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
2713
- }
2714
- .pt-cv-carousel-caption .btn {
2715
- text-shadow: none;
2716
- }
2717
- @media screen and (min-width: 768px) {
2718
- .carousel-control .glyphicon-chevron-left,
2719
- .carousel-control .glyphicon-chevron-right,
2720
- .carousel-control .icon-prev,
2721
- .carousel-control .icon-next {
2722
- width: 30px;
2723
- height: 30px;
2724
- margin-top: -15px;
2725
- font-size: 30px;
2726
- }
2727
- .carousel-control .glyphicon-chevron-left,
2728
- .carousel-control .icon-prev {
2729
- margin-left: -15px;
2730
- }
2731
- .carousel-control .glyphicon-chevron-right,
2732
- .carousel-control .icon-next {
2733
- margin-right: -15px;
2734
- }
2735
- .pt-cv-carousel-caption {
2736
- left: 20%;
2737
- right: 20%;
2738
- padding-bottom: 30px;
2739
- }
2740
- .pt-cv-carousel-indicators {
2741
- bottom: 20px;
2742
- }
2743
- }
2744
- .clearfix:before,
2745
- .clearfix:after,
2746
- .modal-footer:before,
2747
- .modal-footer:after {
2748
- content: " ";
2749
- display: table;
2750
- }
2751
- .clearfix:after,
2752
- .modal-footer:after {
2753
- clear: both;
2754
- }
2755
- /* @Customizer-2 end */
2756
- .center-block {
2757
- display: block;
2758
- margin-left: auto;
2759
- margin-right: auto;
2760
- }
2761
- .pull-right {
2762
- float: right !important;
2763
- }
2764
- .pull-left {
2765
- float: left !important;
2766
- }
2767
- .hide {
2768
- display: none !important;
2769
- }
2770
- .show {
2771
- display: block !important;
2772
- }
2773
- .invisible {
2774
- visibility: hidden;
2775
- }
2776
- .text-hide {
2777
- font: 0/0 a;
2778
- color: transparent;
2779
- text-shadow: none;
2780
- background-color: transparent;
2781
- border: 0;
2782
- }
2783
- .hidden {
2784
- display: none !important;
2785
- visibility: hidden !important;
2786
- }
2787
- .affix {
2788
- position: fixed;
2789
- }
2790
- /* @Customizer-3 start */
2791
-
2792
- /* @Customizer-3 end */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
content-views.php CHANGED
@@ -11,7 +11,7 @@
11
  * Plugin Name: Content Views
12
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
13
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
14
- * Version: 1.6.8.4
15
  * Author: PT Guy
16
  * Author URI: http://profiles.wordpress.org/pt-guy
17
  * Text Domain: content-views-query-and-display-post-page
@@ -27,7 +27,7 @@ if ( !defined( 'WPINC' ) ) {
27
  /*
28
  * Define Constant
29
  */
30
- define( 'PT_CV_VERSION', '1.6.8.4' );
31
  define( 'PT_CV_FILE', __FILE__ );
32
  $pt_cv_path = plugin_dir_path( __FILE__ );
33
  include_once( $pt_cv_path . 'includes/defines.php' );
11
  * Plugin Name: Content Views
12
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
13
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
14
+ * Version: 1.7.0
15
  * Author: PT Guy
16
  * Author URI: http://profiles.wordpress.org/pt-guy
17
  * Text Domain: content-views-query-and-display-post-page
27
  /*
28
  * Define Constant
29
  */
30
+ define( 'PT_CV_VERSION', '1.7.0' );
31
  define( 'PT_CV_FILE', __FILE__ );
32
  $pt_cv_path = plugin_dir_path( __FILE__ );
33
  include_once( $pt_cv_path . 'includes/defines.php' );
includes/assets.php CHANGED
@@ -70,7 +70,7 @@ if ( !class_exists( 'PT_CV_Asset' ) ) {
70
  static function style() {
71
  return array(
72
  'bootstrap' => array(
73
- 'src' => plugins_url( 'assets/bootstrap/css/bootstrap.min.css', PT_CV_FILE ),
74
  ),
75
  'select2' => array(
76
  'src' => plugins_url( 'assets/select2/select2.min.css', PT_CV_FILE ),
@@ -160,8 +160,7 @@ if ( !class_exists( 'PT_CV_Asset' ) ) {
160
  * @param string $translation_array Array of translation strings
161
  * @param string $prefix Prefix string for asset
162
  */
163
- static function localize_script( $name, $object_name, $translation_array,
164
- $prefix = '' ) {
165
  $type = 'script';
166
  $prefix_ = !empty( $prefix ) ? $prefix : self::$prefix;
167
  $handle = $prefix_ . $name . '-' . $type;
70
  static function style() {
71
  return array(
72
  'bootstrap' => array(
73
+ 'src' => plugins_url( 'assets/bootstrap/css/bootstrap.custom.css', PT_CV_FILE ),
74
  ),
75
  'select2' => array(
76
  'src' => plugins_url( 'assets/select2/select2.min.css', PT_CV_FILE ),
160
  * @param string $translation_array Array of translation strings
161
  * @param string $prefix Prefix string for asset
162
  */
163
+ static function localize_script( $name, $object_name, $translation_array, $prefix = '' ) {
 
164
  $type = 'script';
165
  $prefix_ = !empty( $prefix ) ? $prefix : self::$prefix;
166
  $handle = $prefix_ . $name . '-' . $type;
includes/functions.php CHANGED
@@ -741,14 +741,13 @@ if ( !class_exists( 'PT_CV_Functions' ) ) {
741
  /**
742
  * 2. Output Items
743
  */
744
- $pt_query = array();
745
 
746
  // What kind of content to display
747
  $pt_cv_glb[ $view_id ][ 'display_what' ] = apply_filters( PT_CV_PREFIX_ . 'display_what', 'post' );
748
 
749
  if ( $pt_cv_glb[ $view_id ][ 'display_what' ] === 'post' ) {
750
  // Display posts
751
- // Get $content_items & $pt_query
752
  extract( self::get_posts_list( $args, $view_type ) );
753
  } else {
754
  // Display categories...
@@ -761,23 +760,28 @@ if ( !class_exists( 'PT_CV_Functions' ) ) {
761
  /**
762
  * 3. Output Pagination
763
  */
764
- $current_page = self::get_current_page( $pargs );
765
- $html = PT_CV_Html::content_items_wrap( $content_items, $current_page, $args[ 'posts_per_page' ], $view_id );
 
 
 
 
766
 
767
- // Append Pagination HTML if this is first page, or not Ajax calling
768
- if ( $pt_query && $args[ 'posts_per_page' ] > 0 && PT_CV_Functions::nonpaging_or_firstpage( $dargs, $current_page ) ) {
769
- // Total post founds
770
- $found_posts = apply_filters( PT_CV_PREFIX_ . 'found_posts', $pt_query->found_posts );
771
 
772
- // Total number of items
773
- $total_items = ( $args[ 'limit' ] > 0 && $found_posts > $args[ 'limit' ] ) ? $args[ 'limit' ] : $found_posts;
774
 
775
- // Total number of pages
776
- $max_num_pages = ceil( $total_items / $args[ 'posts_per_page' ] );
777
 
778
- // Output pagination
779
- if ( (int) $max_num_pages > 0 ) {
780
- $html .= "\n" . PT_CV_Html::pagination_output( $max_num_pages, $current_page, $session_id );
 
781
  }
782
  }
783
 
@@ -796,19 +800,18 @@ if ( !class_exists( 'PT_CV_Functions' ) ) {
796
  * @return array
797
  */
798
  static function get_posts_list( $args, $view_type ) {
 
 
799
  // Store HTML output of each item
800
  $content_items = array();
801
 
802
  // The Query
803
  do_action( PT_CV_PREFIX_ . 'before_query' );
804
-
805
  $pt_query = new WP_Query( $args );
 
806
 
807
  //DEBUG_QUERY
808
  //print_r( $pt_query->request );
809
-
810
- do_action( PT_CV_PREFIX_ . 'after_query' );
811
-
812
  // The Loop
813
  if ( $pt_query->have_posts() ) {
814
  while ( $pt_query->have_posts() ) {
@@ -830,12 +833,14 @@ if ( !class_exists( 'PT_CV_Functions' ) ) {
830
 
831
  // Output HTML
832
  $content_items[] = sprintf( '<div class="%1$s">%2$s</div>', esc_attr( $_class ), balanceTags( $_text ) );
 
 
833
  }
834
 
835
- // Restore $wp_query and original Post Data
836
  self::reset_query();
837
 
838
- return array( 'content_items' => apply_filters( PT_CV_PREFIX_ . 'content_items', $content_items, $view_type ), 'pt_query' => $pt_query );
839
  }
840
 
841
  /**
@@ -1313,7 +1318,7 @@ if ( !class_exists( 'PT_CV_Functions' ) ) {
1313
  $view_assets = ob_get_clean();
1314
  }
1315
 
1316
- return $html . $view_assets;
1317
  }
1318
 
1319
  /**
741
  /**
742
  * 2. Output Items
743
  */
744
+ $content_items = $pt_query = $empty_result = null;
745
 
746
  // What kind of content to display
747
  $pt_cv_glb[ $view_id ][ 'display_what' ] = apply_filters( PT_CV_PREFIX_ . 'display_what', 'post' );
748
 
749
  if ( $pt_cv_glb[ $view_id ][ 'display_what' ] === 'post' ) {
750
  // Display posts
 
751
  extract( self::get_posts_list( $args, $view_type ) );
752
  } else {
753
  // Display categories...
760
  /**
761
  * 3. Output Pagination
762
  */
763
+ if ( apply_filters( PT_CV_PREFIX_ . 'hide_empty_result', false ) && $empty_result ) {
764
+ // Hide empty result
765
+ $html = '';
766
+ } else {
767
+ $current_page = self::get_current_page( $pargs );
768
+ $html = PT_CV_Html::content_items_wrap( $content_items, $current_page, $args[ 'posts_per_page' ], $view_id );
769
 
770
+ // Append Pagination HTML if this is first page, or not Ajax calling
771
+ if ( $pt_query && $args[ 'posts_per_page' ] > 0 && PT_CV_Functions::nonpaging_or_firstpage( $dargs, $current_page ) ) {
772
+ // Total post founds
773
+ $found_posts = apply_filters( PT_CV_PREFIX_ . 'found_posts', $pt_query->found_posts );
774
 
775
+ // Total number of items
776
+ $total_items = ( $args[ 'limit' ] > 0 && $found_posts > $args[ 'limit' ] ) ? $args[ 'limit' ] : $found_posts;
777
 
778
+ // Total number of pages
779
+ $max_num_pages = ceil( $total_items / $args[ 'posts_per_page' ] );
780
 
781
+ // Output pagination
782
+ if ( (int) $max_num_pages > 0 ) {
783
+ $html .= "\n" . PT_CV_Html::pagination_output( $max_num_pages, $current_page, $session_id );
784
+ }
785
  }
786
  }
787
 
800
  * @return array
801
  */
802
  static function get_posts_list( $args, $view_type ) {
803
+ $empty_result = false;
804
+
805
  // Store HTML output of each item
806
  $content_items = array();
807
 
808
  // The Query
809
  do_action( PT_CV_PREFIX_ . 'before_query' );
 
810
  $pt_query = new WP_Query( $args );
811
+ do_action( PT_CV_PREFIX_ . 'after_query' );
812
 
813
  //DEBUG_QUERY
814
  //print_r( $pt_query->request );
 
 
 
815
  // The Loop
816
  if ( $pt_query->have_posts() ) {
817
  while ( $pt_query->have_posts() ) {
833
 
834
  // Output HTML
835
  $content_items[] = sprintf( '<div class="%1$s">%2$s</div>', esc_attr( $_class ), balanceTags( $_text ) );
836
+
837
+ $empty_result = true;
838
  }
839
 
840
+ // Restore $wp_query and original Post data
841
  self::reset_query();
842
 
843
+ return array( 'content_items' => apply_filters( PT_CV_PREFIX_ . 'content_items', $content_items, $view_type ), 'pt_query' => $pt_query, 'empty_result' => $empty_result );
844
  }
845
 
846
  /**
1318
  $view_assets = ob_get_clean();
1319
  }
1320
 
1321
+ return sprintf( '<div class="%s">%s</div>', PT_CV_PREFIX . 'wrapper', $html ) . $view_assets;
1322
  }
1323
 
1324
  /**
includes/html.php CHANGED
@@ -41,15 +41,6 @@ if ( !class_exists( 'PT_CV_Html' ) ) {
41
  return 'panel-group-' . $id;
42
  }
43
 
44
- /**
45
- * Return class for no animation elements
46
- *
47
- * @return string
48
- */
49
- static function html_no_animation_class() {
50
- return PT_CV_PREFIX . 'no-animation';
51
- }
52
-
53
  /**
54
  * Return class for group of params
55
  *
@@ -495,7 +486,7 @@ if ( !class_exists( 'PT_CV_Html' ) ) {
495
  // Read more button
496
  if ( apply_filters( PT_CV_PREFIX_ . 'field_content_readmore_enable', 1, $fargs[ 'content' ] ) ) {
497
  $text = apply_filters( PT_CV_PREFIX_ . 'field_content_readmore_text', __( 'Read More', PT_CV_TEXTDOMAIN ), $fargs[ 'content' ] );
498
- $btn_class = apply_filters( PT_CV_PREFIX_ . 'field_content_readmore_class', 'btn btn-success btn-sm', $fargs );
499
  $readmore_btn .= self::_field_href( $oargs, $post, $text, PT_CV_PREFIX . 'readmore ' . $btn_class );
500
  $readmore_html .= apply_filters( PT_CV_PREFIX_ . 'field_content_readmore_seperated', '<br/>', $fargs ) . $readmore_btn;
501
  }
@@ -782,7 +773,7 @@ if ( !class_exists( 'PT_CV_Html' ) ) {
782
  $pagination_btn .= self::html_loading_img( 15, PT_CV_PREFIX . 'spinner' );
783
 
784
  $wrapper_class = apply_filters( PT_CV_PREFIX_ . 'pagination_class', '' );
785
- $output = apply_filters( PT_CV_PREFIX_ . 'pagination_output', sprintf( '<div class="%s">%s</div>', $wrapper_class . ' ' . PT_CV_PREFIX . 'pagination-wrapper', $pagination_btn ) );
786
 
787
  return $output;
788
  }
@@ -898,7 +889,6 @@ if ( !class_exists( 'PT_CV_Html' ) ) {
898
  'is_mobile' => apply_filters( PT_CV_PREFIX_ . 'is_mobile', wp_is_mobile() ),
899
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
900
  'lang' => PT_CV_Functions::get_language(), #Get current language of site
901
- 'move_bootstrap' => apply_filters( PT_CV_PREFIX_ . 'move_bootstrap', 1 ), #Should I move Bootstrap to top of all styles
902
  )
903
  );
904
 
41
  return 'panel-group-' . $id;
42
  }
43
 
 
 
 
 
 
 
 
 
 
44
  /**
45
  * Return class for group of params
46
  *
486
  // Read more button
487
  if ( apply_filters( PT_CV_PREFIX_ . 'field_content_readmore_enable', 1, $fargs[ 'content' ] ) ) {
488
  $text = apply_filters( PT_CV_PREFIX_ . 'field_content_readmore_text', __( 'Read More', PT_CV_TEXTDOMAIN ), $fargs[ 'content' ] );
489
+ $btn_class = apply_filters( PT_CV_PREFIX_ . 'field_content_readmore_class', 'btn btn-success', $fargs );
490
  $readmore_btn .= self::_field_href( $oargs, $post, $text, PT_CV_PREFIX . 'readmore ' . $btn_class );
491
  $readmore_html .= apply_filters( PT_CV_PREFIX_ . 'field_content_readmore_seperated', '<br/>', $fargs ) . $readmore_btn;
492
  }
773
  $pagination_btn .= self::html_loading_img( 15, PT_CV_PREFIX . 'spinner' );
774
 
775
  $wrapper_class = apply_filters( PT_CV_PREFIX_ . 'pagination_class', '' );
776
+ $output = apply_filters( PT_CV_PREFIX_ . 'pagination_output', sprintf( '<div class="%s">%s</div>', implode( ' ', array( $wrapper_class, PT_CV_PREFIX . 'pagination-wrapper' ) ), $pagination_btn ) );
777
 
778
  return $output;
779
  }
889
  'is_mobile' => apply_filters( PT_CV_PREFIX_ . 'is_mobile', wp_is_mobile() ),
890
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
891
  'lang' => PT_CV_Functions::get_language(), #Get current language of site
 
892
  )
893
  );
894
 
includes/values.php CHANGED
@@ -62,7 +62,7 @@ if ( !class_exists( 'PT_CV_Values' ) ) {
62
  $result[ $post_type ] = $taxonomy_names;
63
  }
64
 
65
- return $result;
66
  }
67
 
68
  /**
@@ -446,7 +446,7 @@ if ( !class_exists( 'PT_CV_Values' ) ) {
446
  }
447
  }
448
  // Add full sizes
449
- $result[ 'full' ] = __( 'Original resolution (But resize automatically to fit its container)', PT_CV_TEXTDOMAIN );
450
 
451
  // Sort custom sizes by index (width * height)
452
  krsort( $dimensions_to_sort );
62
  $result[ $post_type ] = $taxonomy_names;
63
  }
64
 
65
+ return apply_filters( PT_CV_PREFIX_ . 'post_types_taxonomies', $result );
66
  }
67
 
68
  /**
446
  }
447
  }
448
  // Add full sizes
449
+ $result[ 'full' ] = __( 'Full image', PT_CV_TEXTDOMAIN );
450
 
451
  // Sort custom sizes by index (width * height)
452
  krsort( $dimensions_to_sort );
languages/content-views-query-and-display-post-page.po CHANGED
@@ -661,7 +661,7 @@ msgid "New tab"
661
  msgstr ""
662
 
663
  #: code/includes/values.php:448
664
- msgid "Original resolution (But resize automatically to fit its container)"
665
  msgstr ""
666
 
667
  #: code/includes/values.php:471
661
  msgstr ""
662
 
663
  #: code/includes/values.php:448
664
+ msgid "Full image"
665
  msgstr ""
666
 
667
  #: code/includes/values.php:471
public/assets/css/public.css CHANGED
@@ -39,7 +39,7 @@
39
  }
40
 
41
  /* Link */
42
- .pt-cv-view a {
43
  text-decoration: none !important;
44
  outline: 0 !important;
45
  }
@@ -58,10 +58,15 @@
58
  }
59
 
60
  /* Add default margin-bottom */
61
- .pt-cv-content-item > * {
62
  margin-bottom: 10px !important;
63
  }
64
 
 
 
 
 
 
65
  /* For the output which shows only Title */
66
  .pt-cv-only-title {
67
  padding-bottom: 0;
@@ -119,6 +124,10 @@
119
  }
120
 
121
  /* Pagination */
 
 
 
 
122
  .pt-cv-view + .pagination {
123
  float: left;
124
  margin: 0 auto !important;
@@ -135,7 +144,7 @@
135
  .pt-cv-spinner {
136
  width: 15px !important;
137
  height: 15px !important;
138
- margin: 0 auto !important;
139
 
140
  display: inline-block;
141
  opacity: 0;
@@ -168,6 +177,7 @@
168
  margin-left: 0;
169
  border: 0;
170
  padding: 0;
 
171
  }
172
 
173
  .pt-cv-pagination li {
39
  }
40
 
41
  /* Link */
42
+ .pt-cv-view a, .pt-cv-wrapper .btn {
43
  text-decoration: none !important;
44
  outline: 0 !important;
45
  }
58
  }
59
 
60
  /* Add default margin-bottom */
61
+ .pt-cv-view .pt-cv-content-item > * {
62
  margin-bottom: 10px !important;
63
  }
64
 
65
+ .pt-cv-border .pt-cv-content-item > *,
66
+ .pt-cv-collapsible .pt-cv-content-item > *{
67
+ margin-bottom: 0 !important;
68
+ }
69
+
70
  /* For the output which shows only Title */
71
  .pt-cv-only-title {
72
  padding-bottom: 0;
124
  }
125
 
126
  /* Pagination */
127
+ .pt-cv-pagination-wrapper {
128
+ margin: 20px 0;
129
+ }
130
+
131
  .pt-cv-view + .pagination {
132
  float: left;
133
  margin: 0 auto !important;
144
  .pt-cv-spinner {
145
  width: 15px !important;
146
  height: 15px !important;
147
+ margin-top: -25px;
148
 
149
  display: inline-block;
150
  opacity: 0;
177
  margin-left: 0;
178
  border: 0;
179
  padding: 0;
180
+ margin: initial;
181
  }
182
 
183
  .pt-cv-pagination li {
public/assets/js/public.js CHANGED
@@ -17,34 +17,10 @@
17
 
18
  $.PT_CV_Public = function ( options ) {
19
  this.options = $.extend( { }, options );
20
- this.move_bootstrap_to_top();
21
  this.pagination();
22
  };
23
 
24
  $.PT_CV_Public.prototype = {
25
- /**
26
- * Manually move Bootstrap to top of all styles
27
- *
28
- * @returns {undefined}
29
- */
30
- move_bootstrap_to_top: function () {
31
- if ( PT_CV_PUBLIC.move_bootstrap === '0' ) {
32
- return;
33
- }
34
-
35
- var _prefix = PT_CV_PUBLIC._prefix;
36
-
37
- var selector = _prefix + 'bootstrap-style-css';
38
- var bootstrap_css = $( '#' + selector );
39
- if ( bootstrap_css.length > 0 ) {
40
- bootstrap_css.remove();
41
-
42
- var title = $( 'title' );
43
- var title_content = title.html();
44
- title.after( "<!-- Manually move Bootstrap to top of all styles --><link rel='stylesheet' id='" + selector + "' href='" + bootstrap_css.attr( 'href' ) + "' type='text/css' media='all' />" );
45
- title.html( title_content );
46
- }
47
- },
48
  /**
49
  * Bootstrap pagination
50
  * @returns {undefined}
17
 
18
  $.PT_CV_Public = function ( options ) {
19
  this.options = $.extend( { }, options );
 
20
  this.pagination();
21
  };
22
 
23
  $.PT_CV_Public.prototype = {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  /**
25
  * Bootstrap pagination
26
  * @returns {undefined}
public/content-views.php CHANGED
@@ -346,7 +346,7 @@ class PT_Content_Views {
346
  // Execute if assets were not enqueued in default way
347
  if ( !apply_filters( PT_CV_PREFIX_ . 'default_enqueue_assets', 1 ) ) {
348
  global $pt_cv_id;
349
- if ( !empty( $pt_cv_id ) ) {
350
  PT_CV_Html::frontend_styles();
351
  PT_CV_Html::frontend_scripts();
352
  }
346
  // Execute if assets were not enqueued in default way
347
  if ( !apply_filters( PT_CV_PREFIX_ . 'default_enqueue_assets', 1 ) ) {
348
  global $pt_cv_id;
349
+ if ( !empty( $pt_cv_id ) || apply_filters( PT_CV_PREFIX_ . 'view_executed', 0 ) ) {
350
  PT_CV_Html::frontend_styles();
351
  PT_CV_Html::frontend_scripts();
352
  }