diff --git a/Gruntfile.js b/Gruntfile.js index f7aef65..695281f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -56,8 +56,9 @@ module.exports = function(grunt) { sass: { build_main: { options: { + implementation: require('sass'), style: 'expanded', - sourcemap: 'none' + sourceMap: false }, files: [{ expand: true, @@ -71,8 +72,9 @@ module.exports = function(grunt) { // Builds custom style components to temporary folder. build_custom_styles: { options: { + implementation: require('sass'), style: 'expanded', - sourcemap: 'none' + sourceMap: false }, files: [{ expand: true, @@ -266,17 +268,7 @@ module.exports = function(grunt) { } }); - grunt.loadNpmTasks('grunt-contrib-clean'); - grunt.loadNpmTasks('grunt-contrib-concat'); - grunt.loadNpmTasks('grunt-contrib-copy'); - grunt.loadNpmTasks('grunt-contrib-cssmin'); - grunt.loadNpmTasks('grunt-contrib-imagemin'); - grunt.loadNpmTasks('grunt-contrib-sass'); - grunt.loadNpmTasks('grunt-contrib-uglify'); - grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.loadNpmTasks('grunt-exec'); - grunt.loadNpmTasks('grunt-modernizr-builder'); - grunt.loadNpmTasks('grunt-postcss'); + require('load-grunt-tasks')(grunt); grunt.registerTask('default', ['clean:reset', 'modernizr_builder', 'concat', 'uglify', 'sass', 'postcss:main_styles', 'cssmin', 'imagemin', 'postcss:custom_styles', 'copy', 'clean:remove']); diff --git a/components/template-cs-button.tpl b/components/template-cs-button.tpl index 593b010..8788bef 100644 --- a/components/template-cs-button.tpl +++ b/components/template-cs-button.tpl @@ -83,4 +83,4 @@ "scope": "global" */ --button-text-transform: uppercase; -} +} \ No newline at end of file diff --git a/components/template-cs-content.tpl b/components/template-cs-content.tpl index 68c615a..4f3bd1c 100644 --- a/components/template-cs-content.tpl +++ b/components/template-cs-content.tpl @@ -365,4 +365,4 @@ "scope": "global" */ --content-area-product-description__color: rgba(141, 144, 145, 0.6); -} +} \ No newline at end of file diff --git a/components/template-cs-footer.tpl b/components/template-cs-footer.tpl index 04c5164..8000e44 100644 --- a/components/template-cs-footer.tpl +++ b/components/template-cs-footer.tpl @@ -62,4 +62,4 @@ "scope": "global" */ --footer-body-text-transform: none; -} +} \ No newline at end of file diff --git a/components/template-cs-form.tpl b/components/template-cs-form.tpl index 271b28f..6b86586 100644 --- a/components/template-cs-form.tpl +++ b/components/template-cs-form.tpl @@ -73,4 +73,4 @@ "scope": "global" */ --form-field-text-transform: none; -} +} \ No newline at end of file diff --git a/components/template-cs-header-front.tpl b/components/template-cs-header-front.tpl index 862123d..09e9c26 100644 --- a/components/template-cs-header-front.tpl +++ b/components/template-cs-header-front.tpl @@ -253,4 +253,4 @@ "scope": "global" */ --menu-main-active-text-transform: uppercase; -} +} \ No newline at end of file diff --git a/components/template-cs-header.tpl b/components/template-cs-header.tpl index 862123d..09e9c26 100644 --- a/components/template-cs-header.tpl +++ b/components/template-cs-header.tpl @@ -253,4 +253,4 @@ "scope": "global" */ --menu-main-active-text-transform: uppercase; -} +} \ No newline at end of file diff --git a/components/template-cs-headings.tpl b/components/template-cs-headings.tpl index e65a7c0..c31b14c 100644 --- a/components/template-cs-headings.tpl +++ b/components/template-cs-headings.tpl @@ -245,4 +245,4 @@ "scope": "global" */ --headings-subheading-text-transform: none; -} +} \ No newline at end of file diff --git a/components/template-cs-main-styles.tpl b/components/template-cs-main-styles.tpl index 19d2aad..21ad8c0 100644 --- a/components/template-cs-main-styles.tpl +++ b/components/template-cs-main-styles.tpl @@ -40,4 +40,4 @@ ] */ --third-color: white; -} +} \ No newline at end of file diff --git a/components/template-cs-sidebar.tpl b/components/template-cs-sidebar.tpl index ea443ed..ce95173 100644 --- a/components/template-cs-sidebar.tpl +++ b/components/template-cs-sidebar.tpl @@ -183,4 +183,4 @@ "scope": "global" */ --menu-sub-active-text-transform: none; -} +} \ No newline at end of file diff --git a/components/template-cs-style-rules.tpl b/components/template-cs-style-rules.tpl index 4739545..926db7a 100644 --- a/components/template-cs-style-rules.tpl +++ b/components/template-cs-style-rules.tpl @@ -101,7 +101,8 @@ body { .blog-news-page .article-title a { color: var(--secondary-color); } -.blog-news-page .article-author, .blog-news-page .article-date { +.blog-news-page .article-author, +.blog-news-page .article-date { color: var(--secondary-color); } .dark-background .blog-news-page .article-author, @@ -225,7 +226,6 @@ body { .language-flags-disabled .mobile-menu-toggler span .lang-menu-btn .lang-title, .language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn .lang-title, .language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn .lang-title { color: var(--third-color); } - #mobile-menu .search-open-btn svg, #footer-menu .search-open-btn svg { fill: var(--secondary-color); @@ -503,7 +503,10 @@ body { .content-area h6 a { color: var(--secondary-color); } -.content-area p, .content-area ul, .content-area ol, .content-area dl { +.content-area p, +.content-area ul, +.content-area ol, +.content-area dl { font-size: var(--content-body-font-size); } .site-footer .content-area p, @@ -512,7 +515,10 @@ body { .site-footer .content-area dl { color: var(--primary-color); } -.site-footer .dark-background .content-area p, .site-footer .dark-background .content-area ul, .site-footer .dark-background .content-area ol, .site-footer .dark-background .content-area dl { +.site-footer .dark-background .content-area p, +.site-footer .dark-background .content-area ul, +.site-footer .dark-background .content-area ol, +.site-footer .dark-background .content-area dl { color: var(--third-color); } .content-area h1, @@ -591,7 +597,7 @@ body { text-transform: var(--button-text-transform); } .content-area a.custom-btn:not(.custom-btn-disabled):hover, .content-area div.custom-btn:not(.custom-btn-disabled):hover, .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover { - opacity: .7; + opacity: 0.7; } .dark-background .content-area a.custom-btn:not(.custom-btn-disabled), .dark-background .content-area a.custom-btn:not(.custom-btn-disabled):hover, .dark-background .content-area div.custom-btn:not(.custom-btn-disabled), .dark-background .content-area div.custom-btn:not(.custom-btn-disabled):hover, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover { border-color: var(--button-background-color); @@ -699,7 +705,7 @@ body { text-transform: var(--button-text-transform); } .content-area .form_submit input:hover { - opacity: .7; + opacity: 0.7; } .dark-background .content-area .form_submit input { border-color: var(--button-background-color); @@ -751,11 +757,11 @@ body { .dark-background .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-price, .dark-background .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-description { color: var(--third-color); - opacity: .7; + opacity: 0.7; } .dark-background .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-top-outer .edy-product-widget-item-top.edy-product-widget-item-without-image { border: 1px solid var(--third-color); - opacity: .5; + opacity: 0.5; } .dark-background .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-details-flex-wrap .edy-product-widget-item-out-of-stock, .dark-background .edy-product-widget-grid .edy-product-widget-item .edy-product-widget-item-details-flex-wrap .edy-product-widget-item-btn { @@ -770,7 +776,7 @@ body { } .dark-background .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-header .edy-product-widget-item-price { color: var(--third-color); - opacity: .7; + opacity: 0.7; } .dark-background .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-header .edy-product-widget-item-out-of-stock { color: var(--third-color); @@ -780,7 +786,7 @@ body { } .dark-background .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-without-image { border: 1px solid var(--third-color); - opacity: .5; + opacity: 0.5; } .edy-product-widget-filter-sort option { @@ -792,4 +798,4 @@ body { .dark-background .edy-product-widget-filter-label, .dark-background .edy-product-widget-filter-search-input { color: var(--third-color); -} +} \ No newline at end of file diff --git a/components/template-cs-table.tpl b/components/template-cs-table.tpl index dc58f70..1c6535b 100644 --- a/components/template-cs-table.tpl +++ b/components/template-cs-table.tpl @@ -29,4 +29,4 @@ "scope": "global" */ --table-border-style: solid; -} +} \ No newline at end of file diff --git a/package.json b/package.json index 8a685ed..6365340 100644 --- a/package.json +++ b/package.json @@ -13,12 +13,14 @@ "grunt-contrib-copy": "^1.0.0", "grunt-contrib-cssmin": "^3.0.0", "grunt-contrib-imagemin": "^3.1.0", - "grunt-contrib-sass": "^1.0.0", "grunt-contrib-uglify": "^4.0.0", "grunt-contrib-watch": "^1.1.0", "grunt-exec": "^3.0.0", "grunt-modernizr-builder": "^0.1.9", "grunt-postcss": "^0.9.0", - "modernizr": "^3.6.0" + "grunt-sass": "^3.1.0", + "load-grunt-tasks": "^5.1.0", + "modernizr": "^3.6.0", + "sass": "^1.69.5" } } diff --git a/stylesheets/main.css b/stylesheets/main.css index 0e84601..5a2f551 100644 --- a/stylesheets/main.css +++ b/stylesheets/main.css @@ -730,7 +730,8 @@ .accessibility-colors .light-background .voog-reference svg path { fill: #f9ec5a; } -.accessibility-colors .dark-background .site-options .search-btn svg path, .accessibility-colors .light-background .site-options .search-btn svg path { +.accessibility-colors .dark-background .site-options .search-btn svg path, +.accessibility-colors .light-background .site-options .search-btn svg path { fill: #f9ec5a; } @media screen and (max-width: 640px) { @@ -1127,7 +1128,7 @@ a img { left: 10px; padding: 0; border-style: none; - opacity: .9; + opacity: 0.9; } .voog-bg-picker-btn::-moz-focus-inner { padding: 0; @@ -1188,7 +1189,7 @@ a img { width: 0; height: 0; background: rgba(0, 0, 0, 0.2); - content: ''; + content: ""; opacity: 0; -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; -o-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; @@ -1376,7 +1377,7 @@ a img { } .dark-background .menu li a { color: white; - opacity: .7; + opacity: 0.7; } .dark-background .menu li a:hover { opacity: 1; @@ -1472,25 +1473,25 @@ a img { height: 20px; border-radius: 100%; opacity: 0; - -webkit-transition: opacity .3s; - -o-transition: opacity .3s; - transition: opacity .3s; + -webkit-transition: opacity 0.3s; + -o-transition: opacity 0.3s; + transition: opacity 0.3s; } .loader::before { position: absolute; display: block; width: 100%; height: 100%; - content: ''; + content: ""; -webkit-box-sizing: content-box; box-sizing: content-box; } .not-loaded .loader, .is-loaded .loader { - margin-top: calc((20px / 2) * -1); - margin-left: calc((20px / 2) * -1); + margin-top: -10px; + margin-left: -10px; border: 1px solid rgba(0, 0, 0, 0); - -webkit-animation: rotation .7s infinite linear; - animation: rotation .7s infinite linear; + -webkit-animation: rotation 0.7s infinite linear; + animation: rotation 0.7s infinite linear; } .not-loaded .loader::before, .is-loaded .loader::before { border-top: 1px solid black; @@ -1520,7 +1521,7 @@ a img { height: 2px; background-color: #fff; border-radius: 2px; - content: ''; + content: ""; } .with-error .loader::before { left: 4px; @@ -1535,11 +1536,11 @@ a img { transform: rotate(-45deg); } -.wrap:after, .common-page .sidebar-active:after, .blog-news-page .articles-listing:after, .site-header:after, .search:after, -.search-form:after, .site-footer .blog-article-nav:after, .content-area:after, .contacts .content-area table tr:after, .footer .content-area table tr:after { +.contacts .content-area table tr:after, .footer .content-area table tr:after, .content-area:after, .site-footer .blog-article-nav:after, .search:after, +.search-form:after, .site-header:after, .blog-news-page .articles-listing:after, .common-page .sidebar-active:after, .wrap:after { display: table; clear: both; - content: ''; + content: ""; } .stretch, .background-image, @@ -1551,27 +1552,34 @@ a img { bottom: 0; } -.toggle-sub-menu, .mobile-menu-toggler, .lang-menu-btn, .search-btn, .search-submit { +.search-btn, +.search-submit, .lang-menu-btn, .mobile-menu-toggler, .toggle-sub-menu { margin: 0; padding: 0; background-color: transparent; border-style: none; cursor: pointer; } -.toggle-sub-menu:focus, .mobile-menu-toggler:focus, .lang-menu-btn:focus, .search-btn:focus, .search-submit:focus { +.search-btn:focus, +.search-submit:focus, .lang-menu-btn:focus, .mobile-menu-toggler:focus, .toggle-sub-menu:focus { outline: none; } -.toggle-sub-menu::-moz-focus-inner, .mobile-menu-toggler::-moz-focus-inner, .lang-menu-btn::-moz-focus-inner, .search-btn::-moz-focus-inner, .search-submit::-moz-focus-inner { +.search-btn::-moz-focus-inner, +.search-submit::-moz-focus-inner, .lang-menu-btn::-moz-focus-inner, .mobile-menu-toggler::-moz-focus-inner, .toggle-sub-menu::-moz-focus-inner { padding: 0; border-style: none; } -.site-search .search-input, .content-area .form_field_textfield, .content-area .form_field_textarea, .content-area .form_field_select { +.content-area .form_field_textfield, +.content-area .form_field_textarea, +.content-area .form_field_select, .site-search .search-input { -webkit-appearance: none; border-radius: 0; } -.site-search .search-input, .content-area .form_field_textfield, .content-area .form_field_textarea, .content-area .form_field_select { +.content-area .form_field_textfield, +.content-area .form_field_textarea, +.content-area .form_field_select, .site-search .search-input { font-family: inherit; font-size: inherit; line-height: inherit; @@ -1631,10 +1639,10 @@ a img { .dark-background .edy-product-widget-filter-sort, .dark-background .edy-product-widget-filter-search-input { - opacity: .7; + opacity: 0.7; } .dark-background .edy-product-widget-filter-label { - opacity: .5; + opacity: 0.5; } .front-page .page-content .content-header { @@ -1711,7 +1719,7 @@ a img { } .front-page .main-feature .feature-image:before { display: block; - content: ''; + content: ""; width: 100%; padding-top: 66.5413533835%; } @@ -1821,7 +1829,7 @@ a img { } .header-logo-wrap .header-logo:before { display: block; - content: ''; + content: ""; width: 100%; padding-top: 55.5555555556%; } @@ -1947,12 +1955,13 @@ a img { display: block; width: 100%; padding-top: 65.715%; - content: ''; + content: ""; } -.blog-news-page .article-author, .blog-news-page .article-date { +.blog-news-page .article-author, +.blog-news-page .article-date { font-size: 14px; color: black; - opacity: .35; + opacity: 0.35; font-weight: 400; line-height: 1; display: inline; @@ -2003,7 +2012,7 @@ a img { font-size: 12px; font-size: 12px; color: black; - opacity: .35; + opacity: 0.35; font-weight: 400; line-height: 1.7; position: absolute; @@ -2109,10 +2118,10 @@ a img { color: white; } .blog-article-page .comments-title .comments-title-inner { - opacity: .35; + opacity: 0.35; } .blog-article-page .comments-title .comments-count { - opacity: .7; + opacity: 0.7; } .blog-article-page .main-content { -webkit-transition: min-height 250ms; @@ -2155,7 +2164,7 @@ a img { letter-spacing: 1px; text-transform: uppercase; color: black; - opacity: .35; + opacity: 0.35; } .blog-article-page .main-content .article-author.is-hidden, .blog-article-page .main-content .article-date.is-hidden { @@ -2163,7 +2172,7 @@ a img { } .blog-article-page .article-author, .blog-article-page .article-date { - opacity: .35; + opacity: 0.35; } .blog-article-page .dark-background .article-author, .blog-article-page .dark-background .article-date { @@ -2289,7 +2298,7 @@ a img { display: inline-block; font-size: 14px; color: black; - opacity: .35; + opacity: 0.35; vertical-align: middle; } .article-comments .comments-body .form_field_textfield, @@ -2316,7 +2325,7 @@ a img { font-weight: 300; line-height: 2; color: black; - opacity: .35; + opacity: 0.35; } .article-comments .comments-close.dark-background .btn-close { background-color: #0083ba; @@ -2346,7 +2355,7 @@ a img { -webkit-transition: 500ms; -o-transition: 500ms; transition: 500ms; - opacity: .7; + opacity: 0.7; } } .article-comments .comments-close .btn-close .ico-close { @@ -2439,7 +2448,7 @@ a img { background-color: rgba(0, 0, 0, 0.03); } .blog-tags .menu .menu-link:hover { - opacity: .7; + opacity: 0.7; } .blog-tags .menu .menu-link.active { color: white; @@ -2453,7 +2462,8 @@ a img { position: relative; } @media screen and (max-width: 850px) { - .site-header .header-left, .site-header .header-right { + .site-header .header-left, + .site-header .header-right { float: none; } .no-flexbox .site-header .header-left, @@ -2528,7 +2538,7 @@ a img { text-decoration: none; } .site-header .header-title a:hover { - opacity: .7; + opacity: 0.7; } .blog-article-page .site-header .header-body { text-align: center; @@ -2686,7 +2696,7 @@ a img { display: block; width: 0; height: 0; - content: ''; + content: ""; border-width: 5px 0 5px 8px; border-style: solid; border-color: transparent transparent transparent black; @@ -2789,10 +2799,10 @@ a img { .menu-item-list .menu-item { display: inline-block; font-size: 14px; - opacity: .5; + opacity: 0.5; } .menu-item-list .menu-item:not(.current):hover { - opacity: .8; + opacity: 0.8; } .menu-item-list .menu-item.selected { font-weight: 400; @@ -2810,7 +2820,7 @@ a img { } .menu-separator { - opacity: .5; + opacity: 0.5; } .menu-separator:first-child { display: none; @@ -2830,7 +2840,6 @@ a img { .site-header .header-right .menu-main { display: none; } - .mobilemenu-open, .mobilesearch-open { position: fixed; @@ -2847,7 +2856,6 @@ a img { width: 250px; height: 100%; } - .mobile-menu-toggler { position: absolute; top: -12px; @@ -2864,7 +2872,7 @@ a img { display: block; width: 21px; height: 2px; - content: ''; + content: ""; background-color: black; } .dark-background .mobile-menu-toggler span, .dark-background .mobile-menu-toggler span:before, .dark-background .mobile-menu-toggler span:after { @@ -2891,13 +2899,12 @@ a img { top: 14px; left: 0; } - #mobile-menu { - -webkit-transition: -webkit-transform .5s; - transition: -webkit-transform .5s; - -o-transition: transform .5s; - transition: transform .5s; - transition: transform .5s, -webkit-transform .5s; + -webkit-transition: -webkit-transform 0.5s; + transition: -webkit-transform 0.5s; + -o-transition: transform 0.5s; + transition: transform 0.5s; + transition: transform 0.5s, -webkit-transform 0.5s; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); font-family: "Roboto", sans-serif; @@ -2932,9 +2939,9 @@ a img { transform: translate3d(0, 0, 0); } #mobile-menu .search-open-btn { - -webkit-transition: right .3s; - -o-transition: right .3s; - transition: right .3s; + -webkit-transition: right 0.3s; + -o-transition: right 0.3s; + transition: right 0.3s; position: absolute; top: 28px; right: 78px; @@ -2983,7 +2990,7 @@ a img { .language-names-disabled #mobile-menu ul a.lang-flag { font-size: 0; padding: 15px 15px 8px 16px; - opacity: .7; + opacity: 0.7; } .language-names-disabled #mobile-menu ul a.lang-flag:hover, .language-names-disabled #mobile-menu ul a.lang-flag.is-active { opacity: 1; @@ -3075,7 +3082,7 @@ a img { display: block; width: 21px; height: 15px; - content: ''; + content: ""; } .language-flags-disabled .lang-flag:before, .language-flags-disabled .lang-flag:after { display: none; @@ -3098,7 +3105,7 @@ a img { background-position: 0 -75px; background-repeat: no-repeat; content: attr(data-lang-code); - opacity: .95; + opacity: 0.95; -webkit-box-sizing: border-box; box-sizing: border-box; } @@ -3112,264 +3119,264 @@ a img { background-image: url("../images/ico-flags.png"); } -[data-lang-code^="sq"]:after { +[data-lang-code^=sq]:after { background-position: 0 0; - content: ''; + content: ""; } -[data-lang-code^="hy"]:after { +[data-lang-code^=hy]:after { background-position: -21px 0; - content: ''; + content: ""; } -[data-lang-code^="bn"]:after { +[data-lang-code^=bn]:after { background-position: -42px 0; - content: ''; + content: ""; } -[data-lang-code^="bg"]:after { +[data-lang-code^=bg]:after { background-position: -84px 0; - content: ''; + content: ""; } -[data-lang-code^="zh"]:after { +[data-lang-code^=zh]:after { background-position: -105px 0; - content: ''; + content: ""; } -[data-lang-code^="hr"]:after { +[data-lang-code^=hr]:after { background-position: -126px 0; - content: ''; + content: ""; } -[data-lang-code^="da"]:after { +[data-lang-code^=da]:after { background-position: -147px 0; - content: ''; + content: ""; } -[data-lang-code^="cs"]:after { +[data-lang-code^=cs]:after { background-position: -168px 0; - content: ''; + content: ""; } -[data-lang-code^="et"]:after { +[data-lang-code^=et]:after { background-position: -189px 0; - content: ''; + content: ""; } -[data-lang-code^="fi"]:after { +[data-lang-code^=fi]:after { background-position: 0 -15px; - content: ''; + content: ""; } -[data-lang-code^="fr"]:after { +[data-lang-code^=fr]:after { background-position: -21px -15px; - content: ''; + content: ""; } -[data-lang-code^="ka"]:after { +[data-lang-code^=ka]:after { background-position: -42px -15px; - content: ''; + content: ""; } -[data-lang-code^="de"]:after { +[data-lang-code^=de]:after { background-position: -63px -15px; - content: ''; + content: ""; } -[data-lang-code^="el"]:after { +[data-lang-code^=el]:after { background-position: -84px -15px; - content: ''; + content: ""; } -[data-lang-code^="hu"]:after { +[data-lang-code^=hu]:after { background-position: -105px -15px; - content: ''; + content: ""; } -[data-lang-code^="is"]:after { +[data-lang-code^=is]:after { background-position: -126px -15px; - content: ''; + content: ""; } -[data-lang-code^="hi"]:after { +[data-lang-code^=hi]:after { background-position: -147px -15px; - content: ''; + content: ""; } -[data-lang-code^="id"]:after { +[data-lang-code^=id]:after { background-position: -168px -15px; - content: ''; + content: ""; } -[data-lang-code^="fa"]:after { +[data-lang-code^=fa]:after { background-position: -189px -15px; - content: ''; + content: ""; } -[data-lang-code^="he"]:after { +[data-lang-code^=he]:after { background-position: 0 -30px; - content: ''; + content: ""; } -[data-lang-code^="it"]:after { +[data-lang-code^=it]:after { background-position: -21px -30px; - content: ''; + content: ""; } -[data-lang-code^="ja"]:after { +[data-lang-code^=ja]:after { background-position: -42px -30px; - content: ''; + content: ""; } -[data-lang-code^="ko"]:after { +[data-lang-code^=ko]:after { background-position: -63px -30px; - content: ''; + content: ""; } -[data-lang-code^="lv"]:after { +[data-lang-code^=lv]:after { background-position: -84px -30px; - content: ''; + content: ""; } -[data-lang-code^="lt"]:after { +[data-lang-code^=lt]:after { background-position: -105px -30px; - content: ''; + content: ""; } -[data-lang-code^="ms"]:after { +[data-lang-code^=ms]:after { background-position: -126px -30px; - content: ''; + content: ""; } -[data-lang-code^="nl"]:after { +[data-lang-code^=nl]:after { background-position: -147px -30px; - content: ''; + content: ""; } -[data-lang-code^="no"]:after { +[data-lang-code^=no]:after { background-position: -168px -30px; - content: ''; + content: ""; } -[data-lang-code^="ur"]:after { +[data-lang-code^=ur]:after { background-position: -189px -30px; - content: ''; + content: ""; } -[data-lang-code^="fil"]:after { +[data-lang-code^=fil]:after { background-position: 0 -45px; - content: ''; + content: ""; } -[data-lang-code^="pl"]:after { +[data-lang-code^=pl]:after { background-position: -21px -45px; - content: ''; + content: ""; } -[data-lang-code^="ro"]:after { +[data-lang-code^=ro]:after { background-position: -42px -45px; - content: ''; + content: ""; } -[data-lang-code^="ru"]:after { +[data-lang-code^=ru]:after { background-position: -63px -45px; - content: ''; + content: ""; } -[data-lang-code^="ar"]:after { +[data-lang-code^=ar]:after { background-position: -84px -45px; - content: ''; + content: ""; } -[data-lang-code^="sk"]:after { +[data-lang-code^=sk]:after { background-position: -105px -45px; - content: ''; + content: ""; } -[data-lang-code^="sl"]:after { +[data-lang-code^=sl]:after { background-position: -126px -45px; - content: ''; + content: ""; } -[data-lang-code^="es"]:after { +[data-lang-code^=es]:after { background-position: -147px -45px; - content: ''; + content: ""; } -[data-lang-code^="sv"]:after { +[data-lang-code^=sv]:after { background-position: -168px -45px; - content: ''; + content: ""; } -[data-lang-code^="tr"]:after { +[data-lang-code^=tr]:after { background-position: -189px -45px; - content: ''; + content: ""; } -[data-lang-code^="uk"]:after { +[data-lang-code^=uk]:after { background-position: 0 -60px; - content: ''; + content: ""; } -[data-lang-code^="en"]:after { +[data-lang-code^=en]:after { background-position: -21px -60px; - content: ''; + content: ""; } -[data-lang-code^="pt"]:after { +[data-lang-code^=pt]:after { background-position: -84px -60px; - content: ''; + content: ""; } -[data-lang-code^="sr"]:after { +[data-lang-code^=sr]:after { background-position: -126px -60px; - content: ''; + content: ""; } -[data-lang-code^="bn"]:after { +[data-lang-code^=bn]:after { background-position: -147px -60px; - content: ''; + content: ""; } -[data-lang-code^="th"]:after { +[data-lang-code^=th]:after { background-position: -189px -60px; - content: ''; + content: ""; } -[data-lang-code^="en_US"]:after { +[data-lang-code^=en_US]:after { background-position: -21px -60px; - content: ''; + content: ""; } -[data-lang-code^="en_GB"]:after { +[data-lang-code^=en_GB]:after { background-position: -63px -60px; - content: ''; + content: ""; } -[data-lang-code^="en_AU"]:after { +[data-lang-code^=en_AU]:after { background-position: -168px -60px; - content: ''; + content: ""; } -[data-lang-code^="en_CA"]:after { +[data-lang-code^=en_CA]:after { background-position: -105px -60px; - content: ''; + content: ""; } -[data-lang-code^="pt_BR"]:after { +[data-lang-code^=pt_BR]:after { background-position: -63px 0; - content: ''; + content: ""; } -[data-lang-code^="fr_CA"]:after { +[data-lang-code^=fr_CA]:after { background-position: -105px -60px; - content: ''; + content: ""; } -[data-lang-code^="fr_IC"]:after { +[data-lang-code^=fr_IC]:after { background-position: -42px -60px; - content: ''; + content: ""; } /* langmenu */ @@ -3390,7 +3397,7 @@ a img { display: inline-block; } .lang-menu.menu-language-list .lang-title a { - opacity: .7; + opacity: 0.7; } .lang-menu.menu-language-list .lang-title a:hover { opacity: 1; @@ -3777,7 +3784,8 @@ a img { outline: none; } -.search-btn, .search-submit { +.search-btn, +.search-submit { width: 30px; height: 50px; background-color: transparent; @@ -3788,12 +3796,13 @@ a img { background-repeat: no-repeat; background-image: url("../images/ico-search-white.png"); } -.no-svg .light-background .search-btn, .no-svg .light-background .search-submit { +.no-svg .light-background .search-btn, +.no-svg .light-background .search-submit { background-image: url("../images/ico-search-black.png"); } .search-submit { - opacity: .5; + opacity: 0.5; position: absolute; top: 0; right: 25px; @@ -4010,7 +4019,7 @@ a img { } .site-sidebar .submenu a { color: black; - opacity: .5; + opacity: 0.5; } .dark-background .site-sidebar .submenu a { color: white; @@ -4061,7 +4070,7 @@ a img { color: rgba(255, 255, 255, 0.5); } .site-sidebar .submenu .submenu-lvl2 a:hover { - opacity: .5; + opacity: 0.5; } .site-sidebar .submenu .submenu-lvl2 a.untranslated { color: rgba(199, 9, 9, 0.7); @@ -4145,14 +4154,14 @@ a img { left: 0; display: block; background-color: #fff; - content: ''; + content: ""; opacity: 0; - -webkit-transition: opacity .5s; - -o-transition: opacity .5s; - transition: opacity .5s; + -webkit-transition: opacity 0.5s; + -o-transition: opacity 0.5s; + transition: opacity 0.5s; } .editmode .content-item-box:hover .top-inner::after, .item-list-page .content-item-box:hover .top-inner::after { - opacity: .2; + opacity: 0.2; } .content-items { @@ -4179,7 +4188,7 @@ a img { } .item-top:before { display: block; - content: ''; + content: ""; width: 100%; padding-top: 100%; } @@ -4190,7 +4199,7 @@ a img { bottom: 0; left: 0; } -[data-view-state="editmode"] .item-top { +[data-view-state=editmode] .item-top { cursor: pointer; } .item-top:hover .btn, @@ -4202,9 +4211,9 @@ a img { background-color: rgba(0, 102, 187, 0.3); border: 0; opacity: 0; - -webkit-transition: background-color .5s, opacity .5s; - -o-transition: background-color .5s, opacity .5s; - transition: background-color .5s, opacity .5s; + -webkit-transition: background-color 0.5s, opacity 0.5s; + -o-transition: background-color 0.5s, opacity 0.5s; + transition: background-color 0.5s, opacity 0.5s; } .item-top .btn:hover { background-color: #0066bb; @@ -4241,9 +4250,9 @@ a img { background-color: rgba(0, 102, 187, 0.3); border: 0; opacity: 0; - -webkit-transition: background-color .5s, opacity .5s; - -o-transition: background-color .5s, opacity .5s; - transition: background-color .5s, opacity .5s; + -webkit-transition: background-color 0.5s, opacity 0.5s; + -o-transition: background-color 0.5s, opacity 0.5s; + transition: background-color 0.5s, opacity 0.5s; } .item-top .edy-img-drop-area-remove-image:hover { background-color: #0066bb; @@ -4379,7 +4388,7 @@ a img { .item-placeholder { width: 100%; - padding: .5em; + padding: 0.5em; -webkit-box-sizing: border-box; box-sizing: border-box; } @@ -4404,7 +4413,7 @@ a img { .item-list-page .item-title { font-weight: 400; } -@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 13 / 10), only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (-o-min-device-pixel-ratio: 5/4), only screen and (min-resolution: 120dpi) { +@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 13/10), only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (-o-min-device-pixel-ratio: 5/4), only screen and (min-resolution: 120dpi) { .item-list-page .item-title { font-weight: 100; } @@ -4492,13 +4501,13 @@ a img { color: white; } .site-footer .voog-reference { - opacity: .55; + opacity: 0.55; padding: 0 0 40px; color: black; text-align: center; } .site-footer .voog-reference:hover { - opacity: .8; + opacity: 0.8; } .site-footer .voog-reference-with-padding { padding-top: 40px; @@ -4547,7 +4556,7 @@ a img { } .site-footer .blog-article-nav .article-nav-full:hover .article-nav-direction, .site-footer .blog-article-nav .article-nav-half:hover .article-nav-direction { - opacity: .7; + opacity: 0.7; } .site-footer .blog-article-nav .article-nav-full a, .site-footer .blog-article-nav .article-nav-half a { @@ -4593,7 +4602,7 @@ a img { font-weight: 400; line-height: 2; color: black; - opacity: .35; + opacity: 0.35; letter-spacing: 1px; text-transform: uppercase; } @@ -4601,7 +4610,7 @@ a img { font-size: 24px; line-height: 30px; color: black; - opacity: .7; + opacity: 0.7; } .site-footer .blog-article-nav .article-nav-bg { position: absolute; @@ -4754,7 +4763,7 @@ a img { } .site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo:before { display: block; - content: ''; + content: ""; width: 100%; padding-top: 50%; } @@ -4777,7 +4786,7 @@ a img { bottom: 5px; z-index: 10000; white-space: nowrap; - background-color: #eeeeee; + background-color: rgb(238, 238, 238); height: 35px; border-radius: 3px; text-align: center; @@ -4785,7 +4794,7 @@ a img { box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); } .signout-btn-wrap:hover { - background-color: #c4c4c4; + background-color: rgb(196, 196, 196); } .signout-btn-wrap .signout-link { position: relative; @@ -4911,7 +4920,18 @@ a img { .dark-background .content-area table { color: white; } -.footer-inner.dark-background .content-area h1, .footer-inner.dark-background .content-area h2, .footer-inner.dark-background .content-area h3, .footer-inner.dark-background .content-area h4, .footer-inner.dark-background .content-area h5, .footer-inner.dark-background .content-area h6, .footer-inner.dark-background .content-area p, .footer-inner.dark-background .content-area ul, .footer-inner.dark-background .content-area ol, .footer-inner.dark-background .content-area pre, .footer-inner.dark-background .content-area code, .footer-inner.dark-background .content-area table { +.footer-inner.dark-background .content-area h1, +.footer-inner.dark-background .content-area h2, +.footer-inner.dark-background .content-area h3, +.footer-inner.dark-background .content-area h4, +.footer-inner.dark-background .content-area h5, +.footer-inner.dark-background .content-area h6, +.footer-inner.dark-background .content-area p, +.footer-inner.dark-background .content-area ul, +.footer-inner.dark-background .content-area ol, +.footer-inner.dark-background .content-area pre, +.footer-inner.dark-background .content-area code, +.footer-inner.dark-background .content-area table { color: rgba(255, 255, 255, 0.5); } .content-area h1, @@ -4946,16 +4966,16 @@ a img { font-weight: 300; } .site-header .content-area h1 { - margin-top: .3em; - margin-bottom: .3em; + margin-top: 0.3em; + margin-bottom: 0.3em; text-transform: uppercase; font-size: 70px; font-weight: 300; line-height: 1.1; } .site-header .content-area h1.blog-title, .site-header .content-area h1.blog-title a { - margin-top: .3em; - margin-bottom: .3em; + margin-top: 0.3em; + margin-bottom: 0.3em; font-size: 70px; font-style: normal; font-weight: 300; @@ -4986,8 +5006,8 @@ a img { } } .site-header .content-area h2 { - margin-top: .2em; - margin-bottom: .2em; + margin-top: 0.2em; + margin-bottom: 0.2em; } .contacts .content-area h3, .contacts .content-area h4, @@ -5001,7 +5021,10 @@ a img { .site-footer .content-area dl { color: rgba(0, 0, 0, 0.7); } -.site-footer .dark-background .content-area p, .site-footer .dark-background .content-area ul, .site-footer .dark-background .content-area ol, .site-footer .dark-background .content-area dl { +.site-footer .dark-background .content-area p, +.site-footer .dark-background .content-area ul, +.site-footer .dark-background .content-area ol, +.site-footer .dark-background .content-area dl { color: white; } .content-area ul, @@ -5029,7 +5052,7 @@ a img { font-size: 1em; font-weight: 700; line-height: inherit; - content: '°'; + content: "°"; } .content-area a { color: black; @@ -5105,7 +5128,8 @@ a img { .map .content-area iframe { margin-top: 0; } -.content-area .custom-btn, .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { +.content-area .custom-btn, +.content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { display: inline-block; background-color: #0083ba; border-color: #0083ba; @@ -5129,48 +5153,72 @@ a img { .publicmode .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { cursor: pointer; } -.site-header .content-area .custom-btn, .site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { +.site-header .content-area .custom-btn, +.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { margin-top: 30px; margin-bottom: 30px; } -.site-header .content-area .custom-btn:first-child, .site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:first-child { +.site-header .content-area .custom-btn:first-child, +.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:first-child { margin-top: 0; } -.site-header .content-area .custom-btn:last-child, .site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:last-child { +.site-header .content-area .custom-btn:last-child, +.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:last-child { margin-bottom: 0; } -.dark-background .content-area .custom-btn, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { +.dark-background .content-area .custom-btn, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { border: 2px solid #0083ba; background-color: #0083ba; color: #fff; } -.light-background .content-area .custom-btn, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { +.light-background .content-area .custom-btn, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn { border: 2px solid #0083ba; background-color: #0083ba; color: #fff; } -.dark-background .content-area .custom-btn-disabled, .dark-background .content-area .custom-btn.edy-buy-button-disabled, .light-background .content-area .custom-btn-disabled, .light-background .content-area .custom-btn.edy-buy-button-disabled, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled { +.dark-background .content-area .custom-btn-disabled, .dark-background .content-area .custom-btn.edy-buy-button-disabled, .light-background .content-area .custom-btn-disabled, .light-background .content-area .custom-btn.edy-buy-button-disabled, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled { background-color: transparent; } -.dark-background .content-area .custom-btn-disabled, .dark-background .content-area .custom-btn-disabled:hover, .dark-background .content-area .custom-btn.edy-buy-button-disabled, .dark-background .content-area .custom-btn.edy-buy-button-disabled:hover, .light-background .content-area .custom-btn-disabled, .light-background .content-area .custom-btn-disabled:hover, .light-background .content-area .custom-btn.edy-buy-button-disabled, .light-background .content-area .custom-btn.edy-buy-button-disabled:hover, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover { +.dark-background .content-area .custom-btn-disabled, .dark-background .content-area .custom-btn-disabled:hover, .dark-background .content-area .custom-btn.edy-buy-button-disabled, .dark-background .content-area .custom-btn.edy-buy-button-disabled:hover, .light-background .content-area .custom-btn-disabled, .light-background .content-area .custom-btn-disabled:hover, .light-background .content-area .custom-btn.edy-buy-button-disabled, .light-background .content-area .custom-btn.edy-buy-button-disabled:hover, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover { color: #999; cursor: default; border: 2px solid #999; } -.dark-background .content-area .custom-btn-disabled:hover, .dark-background .content-area .custom-btn.edy-buy-button-disabled:hover, .light-background .content-area .custom-btn-disabled:hover, .light-background .content-area .custom-btn.edy-buy-button-disabled:hover, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover { +.dark-background .content-area .custom-btn-disabled:hover, .dark-background .content-area .custom-btn.edy-buy-button-disabled:hover, .light-background .content-area .custom-btn-disabled:hover, .light-background .content-area .custom-btn.edy-buy-button-disabled:hover, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover { background-color: transparent; } -.content-area .custom-btn:hover, .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover { +.content-area .custom-btn:hover, +.content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover { -webkit-transition: 500ms; -o-transition: 500ms; transition: 500ms; } -.dark-background .content-area .custom-btn:hover, .dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover { +.dark-background .content-area .custom-btn:hover, +.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover { border: 2px solid #015477; background-color: #015477; color: #fff; } -.light-background .content-area .custom-btn:hover, .light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover { +.light-background .content-area .custom-btn:hover, +.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover { border: 2px solid #015477; background-color: #015477; color: #fff; @@ -5224,7 +5272,8 @@ a img { .contacts .content-area table, .editmode .contacts .content-area table { margin-bottom: 0; } -.content-area table th, .content-area table td { +.content-area table th, +.content-area table td { padding: 9px 13px; } .dark-background .content-area table th, @@ -5341,7 +5390,7 @@ a img { margin-bottom: 5px; } .content-area .form_field_required .form_field_label:after { - content: '* \a'; + content: "* \a"; } .dark-background .content-area .form_field_textfield, .dark-background .content-area .form_field_textarea, @@ -5350,10 +5399,16 @@ a img { .dark-background .content-area .form_field_checkbox + .form_control_indicator { background-color: rgba(255, 255, 255, 0.1); } -.light-background .content-area .form_field_textfield, .light-background .content-area .form_field_textarea, .light-background .content-area .form_field_select, .light-background .content-area .form_field_radio + .form_control_indicator, .light-background .content-area .form_field_checkbox + .form_control_indicator { +.light-background .content-area .form_field_textfield, +.light-background .content-area .form_field_textarea, +.light-background .content-area .form_field_select, +.light-background .content-area .form_field_radio + .form_control_indicator, +.light-background .content-area .form_field_checkbox + .form_control_indicator { background-color: rgba(0, 0, 0, 0.03); } -.content-area .form_field_textfield, .content-area .form_field_textarea, .content-area .form_field_select { +.content-area .form_field_textfield, +.content-area .form_field_textarea, +.content-area .form_field_select { font-size: 16px; font-weight: 300; line-height: 26px; @@ -5370,25 +5425,25 @@ a img { .content-area .form_field_textarea::-webkit-input-placeholder, .content-area .form_field_select::-webkit-input-placeholder { color: black; - opacity: .35; + opacity: 0.35; } .content-area .form_field_textfield:-ms-input-placeholder, .content-area .form_field_textarea:-ms-input-placeholder, .content-area .form_field_select:-ms-input-placeholder { color: black; - opacity: .35; + opacity: 0.35; } .content-area .form_field_textfield::-ms-input-placeholder, .content-area .form_field_textarea::-ms-input-placeholder, .content-area .form_field_select::-ms-input-placeholder { color: black; - opacity: .35; + opacity: 0.35; } .content-area .form_field_textfield::placeholder, .content-area .form_field_textarea::placeholder, .content-area .form_field_select::placeholder { color: black; - opacity: .35; + opacity: 0.35; } .dark-background .content-area .form_field_textfield, .dark-background .content-area .form_field_textarea, @@ -5396,23 +5451,35 @@ a img { color: white; border-color: rgba(255, 255, 255, 0.3); } -.light-background .content-area .form_field_textfield, .light-background .content-area .form_field_textarea, .light-background .content-area .form_field_select { +.light-background .content-area .form_field_textfield, +.light-background .content-area .form_field_textarea, +.light-background .content-area .form_field_select { color: rgba(0, 0, 0, 0.7); border-color: rgba(0, 0, 0, 0.13); } -.dark-background .content-area .form_field_textfield:focus, .dark-background .content-area .form_field_textarea:focus, .dark-background .content-area .form_field_select:focus { +.dark-background .content-area .form_field_textfield:focus, +.dark-background .content-area .form_field_textarea:focus, +.dark-background .content-area .form_field_select:focus { border-color: white; } -.light-background .content-area .form_field_textfield:focus, .light-background .content-area .form_field_textarea:focus, .light-background .content-area .form_field_select:focus { +.light-background .content-area .form_field_textfield:focus, +.light-background .content-area .form_field_textarea:focus, +.light-background .content-area .form_field_select:focus { border-color: rgba(0, 0, 0, 0.35); } -.content-area .form_field_textfield.form_field_size_small, .content-area .form_field_textarea.form_field_size_small, .content-area .form_field_select.form_field_size_small { +.content-area .form_field_textfield.form_field_size_small, +.content-area .form_field_textarea.form_field_size_small, +.content-area .form_field_select.form_field_size_small { width: 280px; } -.content-area .form_field_textfield.form_field_size_medium, .content-area .form_field_textarea.form_field_size_medium, .content-area .form_field_select.form_field_size_medium { +.content-area .form_field_textfield.form_field_size_medium, +.content-area .form_field_textarea.form_field_size_medium, +.content-area .form_field_select.form_field_size_medium { width: 420px; } -.content-area .form_field_textfield.form_field_size_large, .content-area .form_field_textarea.form_field_size_large, .content-area .form_field_select.form_field_size_large { +.content-area .form_field_textfield.form_field_size_large, +.content-area .form_field_textarea.form_field_size_large, +.content-area .form_field_select.form_field_size_large { width: 100%; } .content-area .form_field_select { @@ -5445,7 +5512,7 @@ a img { width: 0; height: 0; margin: auto 0; - content: ''; + content: ""; border-top: 5px solid #cccccc; border-right: 5px solid transparent; border-left: 5px solid transparent; @@ -5475,7 +5542,8 @@ a img { border-style: solid; border-color: rgba(0, 0, 0, 0.2); } -.svg .dark-background .content-area .form_field_radio + .form_control_indicator, .svg .dark-background .content-area .form_field_checkbox + .form_control_indicator { +.svg .dark-background .content-area .form_field_radio + .form_control_indicator, +.svg .dark-background .content-area .form_field_checkbox + .form_control_indicator { border-color: rgba(255, 255, 255, 0.2); } .svg .content-area .form_field_radio + .form_control_indicator { @@ -5488,15 +5556,15 @@ a img { -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0); - -webkit-transition: -webkit-transform .15s ease; - transition: -webkit-transform .15s ease; - -o-transition: transform .15s ease; - transition: transform .15s ease; - transition: transform .15s ease, -webkit-transform .15s ease; + -webkit-transition: -webkit-transform 0.15s ease; + transition: -webkit-transform 0.15s ease; + -o-transition: transform 0.15s ease; + transition: transform 0.15s ease; + transition: transform 0.15s ease, -webkit-transform 0.15s ease; position: absolute; top: 3px; left: 3px; - content: ''; + content: ""; border-radius: 100%; background-color: rgba(0, 0, 0, 0.4); } @@ -5504,11 +5572,11 @@ a img { -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); - -webkit-transition: -webkit-transform .15s ease; - transition: -webkit-transform .15s ease; - -o-transition: transform .15s ease; - transition: transform .15s ease; - transition: transform .15s ease, -webkit-transform .15s ease; + -webkit-transition: -webkit-transform 0.15s ease; + transition: -webkit-transform 0.15s ease; + -o-transition: transform 0.15s ease; + transition: transform 0.15s ease; + transition: transform 0.15s ease, -webkit-transform 0.15s ease; } .svg .dark-background .content-area .form_field_radio:checked + .form_control_indicator:before { background-color: rgba(255, 255, 255, 0.4); @@ -5524,12 +5592,12 @@ a img { width: 5px; height: 10px; margin: 1px 0 0 6px; - content: ''; - -webkit-transition: -webkit-transform .15s ease 0s; - transition: -webkit-transform .15s ease 0s; - -o-transition: transform .15s ease 0s; - transition: transform .15s ease 0s; - transition: transform .15s ease 0s, -webkit-transform .15s ease 0s; + content: ""; + -webkit-transition: -webkit-transform 0.15s ease 0s; + transition: -webkit-transform 0.15s ease 0s; + -o-transition: transform 0.15s ease 0s; + transition: transform 0.15s ease 0s; + transition: transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s; border-width: 0 2px 2px 0; border-style: none solid solid none; border-color: rgba(0, 0, 0, 0.4); @@ -5538,11 +5606,11 @@ a img { -webkit-transform: scale(1) rotate(45deg); -ms-transform: scale(1) rotate(45deg); transform: scale(1) rotate(45deg); - -webkit-transition: -webkit-transform .15s ease; - transition: -webkit-transform .15s ease; - -o-transition: transform .15s ease; - transition: transform .15s ease; - transition: transform .15s ease, -webkit-transform .15s ease; + -webkit-transition: -webkit-transform 0.15s ease; + transition: -webkit-transform 0.15s ease; + -o-transition: transform 0.15s ease; + transition: transform 0.15s ease; + transition: transform 0.15s ease, -webkit-transform 0.15s ease; } .svg .dark-background .content-area .form_field_checkbox + .form_control_indicator:before { border-color: rgba(255, 255, 255, 0.2); @@ -5564,7 +5632,7 @@ a img { border-radius: 6px; } .content-area .form_submit input:hover { - opacity: .7; + opacity: 0.7; } .dark-background .content-area .form_submit input { border-color: #0083ba; @@ -5631,4 +5699,4 @@ a img { } .content-area .edy-buy-button-variants .form_field_select { width: initial; -} +} \ No newline at end of file diff --git a/stylesheets/main.min.css b/stylesheets/main.min.css index ee7a826..b867b22 100644 --- a/stylesheets/main.min.css +++ b/stylesheets/main.min.css @@ -1 +1 @@ -@charset "UTF-8";@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:0.001dpcm){img{image-rendering:-webkit-optimize-contrast!important}}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){img{image-rendering:unset!important}}}.accessibility-block-wrap{padding:16px;background-color:#222;display:none}.accessibility-open .accessibility-block-wrap{display:block}.accessibility-block-wrap .accessibility-block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;color:#fff;-ms-flex-wrap:wrap;flex-wrap:wrap}.accessibility-block-wrap .accessibility-block div{padding:16px 16px 0;width:25%;border-left:dotted 1px #0083ba}.accessibility-block-wrap .accessibility-block div .accessibility-input{display:block;padding:0}.accessibility-block-wrap .accessibility-block li::before{display:none}.accessibility-block-wrap .accessibility-button-wrap{color:#fff;margin:32px 16px 16px;text-align:center}.accessibility-block-wrap .accessibility-button-wrap .custom-btn{color:#fff}.accessibility-block-wrap .accessibility-button-wrap .custom-btn:hover{border-color:#015477;background-color:#015477}.accessibility-block-wrap .accessibility-button-wrap .custom-btn.accessibility-save{margin-left:16px}@media screen and (max-width:480px){.accessibility-block-wrap .accessibility-button-wrap .custom-btn.accessibility-save{margin-left:0;margin-top:16px}}.accessibility-block-wrap .accessibility-button-wrap .accessibility-close-button{position:absolute;right:16px;cursor:pointer}.accessibility-block-wrap .accessibility-button-wrap .accessibility-close-button:hover{opacity:.8}@media screen and (max-width:480px){.accessibility-block-wrap .accessibility-block div{width:100%;border-right:none}}.accessibility-block-wrap .form_field_checkbox+.form_control_indicator,.accessibility-block-wrap .form_field_radio+.form_control_indicator{background:#fff}.accessibility-menu-btn-wrap{font-weight:400;cursor:pointer;text-transform:uppercase}#mobile-menu .accessibility-menu-btn-wrap{margin-top:20px}.accessibility-menu-btn-wrap:hover{opacity:.8}.accessibility-menu-btn-wrap .accessibility-btn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:27px}.accessibility-colors footer,.accessibility-colors header,.accessibility-colors main{background-color:#000;color:#f9ec5a}.accessibility-colors footer .toggle-sub-menu,.accessibility-colors header .toggle-sub-menu,.accessibility-colors main .toggle-sub-menu{fill:#f9ec5a}.accessibility-colors .header-top{background-color:#000;color:#f9ec5a}.accessibility-colors .header-top.dark-background{color:#f9ec5a}.accessibility-colors .header-top.dark-background .header-title.content-area,.accessibility-colors .header-top.dark-background .lang-menu.menu-language-list .lang-title a,.accessibility-colors .header-top.dark-background a{color:#f9ec5a}.accessibility-colors .header-top.dark-background .header-title a,.accessibility-colors .header-top.dark-background .header-title a:hover{color:#f9ec5a}.accessibility-colors .header-top.dark-background .menu li a{color:#f9ec5a}.accessibility-colors .header-top.dark-background .menu li a:hover{color:#f9ec5a}.accessibility-colors .header-top.dark-background .menu li.selected a{color:#f9ec5a}.accessibility-colors .header-top.dark-background .mobile-menu-toggler span,.accessibility-colors .header-top.dark-background .mobile-menu-toggler span:after,.accessibility-colors .header-top.dark-background .mobile-menu-toggler span:before{background-color:#f9ec5a}.accessibility-colors .header-top.light-background{color:#f9ec5a}.accessibility-colors .header-top.light-background .header-title.content-area,.accessibility-colors .header-top.light-background .lang-menu.menu-language-list .lang-title a,.accessibility-colors .header-top.light-background a{color:#f9ec5a}.accessibility-colors .header-top.light-background .header-title a,.accessibility-colors .header-top.light-background .header-title a:hover{color:#f9ec5a}.accessibility-colors .header-top.light-background .menu li a{color:#f9ec5a}.accessibility-colors .header-top.light-background .menu li a:hover{color:#f9ec5a}.accessibility-colors .header-top.light-background .menu li.selected a{color:#f9ec5a}.accessibility-colors .header-top.light-background .mobile-menu-toggler span,.accessibility-colors .header-top.light-background .mobile-menu-toggler span:after,.accessibility-colors .header-top.light-background .mobile-menu-toggler span:before{background-color:#f9ec5a}.accessibility-colors .toggle-sub-menu svg{fill:#f9ec5a}.accessibility-colors .site-sidebar .sidebar-title a{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .sidebar-title a{color:#f9ec5a}.accessibility-colors .site-sidebar .submenu a{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .submenu a{color:#f9ec5a}.accessibility-colors .site-sidebar .submenu .selected{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .submenu .selected{color:#f9ec5a}.accessibility-colors .site-sidebar .submenu .submenu-lvl2 a{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .submenu .submenu-lvl2 a{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .submenu .submenu-lvl2 .selected{color:#f9ec5a}.accessibility-colors .site-footer .dark-background a,.accessibility-colors .site-footer .dark-background b,.accessibility-colors .site-footer .dark-background dl,.accessibility-colors .site-footer .dark-background h1,.accessibility-colors .site-footer .dark-background h2,.accessibility-colors .site-footer .dark-background h3,.accessibility-colors .site-footer .dark-background h4,.accessibility-colors .site-footer .dark-background h5,.accessibility-colors .site-footer .dark-background h6,.accessibility-colors .site-footer .dark-background ol,.accessibility-colors .site-footer .dark-background p,.accessibility-colors .site-footer .dark-background pre,.accessibility-colors .site-footer .dark-background table,.accessibility-colors .site-footer .dark-background ul,.accessibility-colors .site-footer .light-background a,.accessibility-colors .site-footer .light-background b,.accessibility-colors .site-footer .light-background dl,.accessibility-colors .site-footer .light-background h1,.accessibility-colors .site-footer .light-background h2,.accessibility-colors .site-footer .light-background h3,.accessibility-colors .site-footer .light-background h4,.accessibility-colors .site-footer .light-background h5,.accessibility-colors .site-footer .light-background h6,.accessibility-colors .site-footer .light-background ol,.accessibility-colors .site-footer .light-background p,.accessibility-colors .site-footer .light-background pre,.accessibility-colors .site-footer .light-background table,.accessibility-colors .site-footer .light-background ul,.accessibility-colors .site-header .dark-background a,.accessibility-colors .site-header .dark-background b,.accessibility-colors .site-header .dark-background dl,.accessibility-colors .site-header .dark-background h1,.accessibility-colors .site-header .dark-background h2,.accessibility-colors .site-header .dark-background h3,.accessibility-colors .site-header .dark-background h4,.accessibility-colors .site-header .dark-background h5,.accessibility-colors .site-header .dark-background h6,.accessibility-colors .site-header .dark-background ol,.accessibility-colors .site-header .dark-background p,.accessibility-colors .site-header .dark-background pre,.accessibility-colors .site-header .dark-background table,.accessibility-colors .site-header .dark-background ul,.accessibility-colors .site-header .light-background a,.accessibility-colors .site-header .light-background b,.accessibility-colors .site-header .light-background dl,.accessibility-colors .site-header .light-background h1,.accessibility-colors .site-header .light-background h2,.accessibility-colors .site-header .light-background h3,.accessibility-colors .site-header .light-background h4,.accessibility-colors .site-header .light-background h5,.accessibility-colors .site-header .light-background h6,.accessibility-colors .site-header .light-background ol,.accessibility-colors .site-header .light-background p,.accessibility-colors .site-header .light-background pre,.accessibility-colors .site-header .light-background table,.accessibility-colors .site-header .light-background ul{color:#f9ec5a}.accessibility-colors .site-footer .dark-background .header-title a,.accessibility-colors .site-footer .dark-background .header-title a:hover,.accessibility-colors .site-footer .light-background .header-title a,.accessibility-colors .site-footer .light-background .header-title a:hover,.accessibility-colors .site-header .dark-background .header-title a,.accessibility-colors .site-header .dark-background .header-title a:hover,.accessibility-colors .site-header .light-background .header-title a,.accessibility-colors .site-header .light-background .header-title a:hover{color:#f9ec5a}.accessibility-colors .site-footer .dark-background .menu li a,.accessibility-colors .site-footer .light-background .menu li a,.accessibility-colors .site-header .dark-background .menu li a,.accessibility-colors .site-header .light-background .menu li a{color:#f9ec5a}.accessibility-colors .site-footer .dark-background .menu li a:hover,.accessibility-colors .site-footer .light-background .menu li a:hover,.accessibility-colors .site-header .dark-background .menu li a:hover,.accessibility-colors .site-header .light-background .menu li a:hover{color:#f9ec5a;opacity:.6}.accessibility-colors .site-footer .dark-background .menu li.selected a,.accessibility-colors .site-footer .light-background .menu li.selected a,.accessibility-colors .site-header .dark-background .menu li.selected a,.accessibility-colors .site-header .light-background .menu li.selected a{color:#f9ec5a}.accessibility-colors .site-footer .footer-menu,.accessibility-colors .site-header .footer-menu{background-color:#000;color:#f9ec5a}.accessibility-colors .site-footer .footer-body .footer-content-wrap .footer-contact-wrap,.accessibility-colors .site-footer .footer-body .footer-content-wrap .footer-menu-wrap,.accessibility-colors .site-header .footer-body .footer-content-wrap .footer-contact-wrap,.accessibility-colors .site-header .footer-body .footer-content-wrap .footer-menu-wrap{border-left-color:#f9ec5a}.accessibility-colors .site-footer .blog-article-nav,.accessibility-colors .site-header .blog-article-nav{background-color:#000;color:#f9ec5a}.accessibility-colors .site-footer .blog-article-nav .article-nav-direction,.accessibility-colors .site-header .blog-article-nav .article-nav-direction{background-color:#000;color:#f9ec5a}.accessibility-colors .page-body .background-color{background-color:#000}.accessibility-colors .search .search-inner{border:1px solid #f9ec5a}.accessibility-colors .search .search-inner .voog-search-modal,.accessibility-colors .search .search-inner input{border:1px solid #f9ec5a;background-color:#000;color:#f9ec5a}.accessibility-colors .search .search-inner .voog-search-modal .voog-search-modal-result,.accessibility-colors .search .search-inner input .voog-search-modal-result{border-top:#f9ec5a}.accessibility-colors .search .search-inner .search-btn{border-color:#f9ec5a}.accessibility-colors .search .search-inner svg path{fill:#f9ec5a}.accessibility-colors .article-comments,.accessibility-colors .blog-article-page,.accessibility-colors .blog-news-page,.accessibility-colors .blog-tags{background-color:#000;color:#f9ec5a}.accessibility-colors .article-comments .tags-title,.accessibility-colors .blog-article-page .tags-title,.accessibility-colors .blog-news-page .tags-title,.accessibility-colors .blog-tags .tags-title{color:#f9ec5a}.accessibility-colors .article-comments .comments-close .btn-close,.accessibility-colors .blog-article-page .comments-close .btn-close,.accessibility-colors .blog-news-page .comments-close .btn-close,.accessibility-colors .blog-tags .comments-close .btn-close{background-color:#000;color:#f9ec5a}.accessibility-colors .article-comments .comments-close .btn-close .ico-close,.accessibility-colors .blog-article-page .comments-close .btn-close .ico-close,.accessibility-colors .blog-news-page .comments-close .btn-close .ico-close,.accessibility-colors .blog-tags .comments-close .btn-close .ico-close{fill:#f9ec5a}.accessibility-colors .article-comments .dark-background .article-author,.accessibility-colors .article-comments .dark-background .article-date,.accessibility-colors .article-comments .dark-background .comments-title,.accessibility-colors .article-comments .light-background .article-author,.accessibility-colors .article-comments .light-background .article-date,.accessibility-colors .article-comments .light-background .comments-title,.accessibility-colors .blog-article-page .dark-background .article-author,.accessibility-colors .blog-article-page .dark-background .article-date,.accessibility-colors .blog-article-page .dark-background .comments-title,.accessibility-colors .blog-article-page .light-background .article-author,.accessibility-colors .blog-article-page .light-background .article-date,.accessibility-colors .blog-article-page .light-background .comments-title,.accessibility-colors .blog-news-page .dark-background .article-author,.accessibility-colors .blog-news-page .dark-background .article-date,.accessibility-colors .blog-news-page .dark-background .comments-title,.accessibility-colors .blog-news-page .light-background .article-author,.accessibility-colors .blog-news-page .light-background .article-date,.accessibility-colors .blog-news-page .light-background .comments-title,.accessibility-colors .blog-tags .dark-background .article-author,.accessibility-colors .blog-tags .dark-background .article-date,.accessibility-colors .blog-tags .dark-background .comments-title,.accessibility-colors .blog-tags .light-background .article-author,.accessibility-colors .blog-tags .light-background .article-date,.accessibility-colors .blog-tags .light-background .comments-title{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment .comment-author,.accessibility-colors .article-comments .dark-background .comment .comment-body,.accessibility-colors .article-comments .dark-background .comment .comment-date,.accessibility-colors .article-comments .light-background .comment .comment-author,.accessibility-colors .article-comments .light-background .comment .comment-body,.accessibility-colors .article-comments .light-background .comment .comment-date,.accessibility-colors .blog-article-page .dark-background .comment .comment-author,.accessibility-colors .blog-article-page .dark-background .comment .comment-body,.accessibility-colors .blog-article-page .dark-background .comment .comment-date,.accessibility-colors .blog-article-page .light-background .comment .comment-author,.accessibility-colors .blog-article-page .light-background .comment .comment-body,.accessibility-colors .blog-article-page .light-background .comment .comment-date,.accessibility-colors .blog-news-page .dark-background .comment .comment-author,.accessibility-colors .blog-news-page .dark-background .comment .comment-body,.accessibility-colors .blog-news-page .dark-background .comment .comment-date,.accessibility-colors .blog-news-page .light-background .comment .comment-author,.accessibility-colors .blog-news-page .light-background .comment .comment-body,.accessibility-colors .blog-news-page .light-background .comment .comment-date,.accessibility-colors .blog-tags .dark-background .comment .comment-author,.accessibility-colors .blog-tags .dark-background .comment .comment-body,.accessibility-colors .blog-tags .dark-background .comment .comment-date,.accessibility-colors .blog-tags .light-background .comment .comment-author,.accessibility-colors .blog-tags .light-background .comment .comment-body,.accessibility-colors .blog-tags .light-background .comment .comment-date{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .article-comments .dark-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form textarea::-webkit-input-placeholder{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment-form input:-ms-input-placeholder,.accessibility-colors .article-comments .dark-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form input:-ms-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form textarea:-ms-input-placeholder{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment-form input::-ms-input-placeholder,.accessibility-colors .article-comments .dark-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form input::-ms-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form textarea::-ms-input-placeholder{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment-form input::placeholder,.accessibility-colors .article-comments .dark-background .comment-form textarea::placeholder,.accessibility-colors .article-comments .light-background .comment-form input::placeholder,.accessibility-colors .article-comments .light-background .comment-form textarea::placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form input::placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form textarea::placeholder,.accessibility-colors .blog-article-page .light-background .comment-form input::placeholder,.accessibility-colors .blog-article-page .light-background .comment-form textarea::placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form input::placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form textarea::placeholder,.accessibility-colors .blog-news-page .light-background .comment-form input::placeholder,.accessibility-colors .blog-news-page .light-background .comment-form textarea::placeholder,.accessibility-colors .blog-tags .dark-background .comment-form input::placeholder,.accessibility-colors .blog-tags .dark-background .comment-form textarea::placeholder,.accessibility-colors .blog-tags .light-background .comment-form input::placeholder,.accessibility-colors .blog-tags .light-background .comment-form textarea::placeholder{color:#f9ec5a}.accessibility-colors .article-comments .edy-tag-holder,.accessibility-colors .blog-article-page .edy-tag-holder,.accessibility-colors .blog-news-page .edy-tag-holder,.accessibility-colors .blog-tags .edy-tag-holder{color:#f9ec5a;background-color:#000;border:1px solid #f9ec5a}.accessibility-colors .edy-cbtn-content{color:#f9ec5a!important}.accessibility-colors .blog-tags .menu .menu-link{color:#f9ec5a}.accessibility-colors .dark-background,.accessibility-colors .light-background{color:#f9ec5a;background-color:#000}.accessibility-colors .dark-background a,.accessibility-colors .dark-background b,.accessibility-colors .dark-background dl,.accessibility-colors .dark-background h1,.accessibility-colors .dark-background h2,.accessibility-colors .dark-background h3,.accessibility-colors .dark-background h4,.accessibility-colors .dark-background h5,.accessibility-colors .dark-background h6,.accessibility-colors .dark-background ol,.accessibility-colors .dark-background p,.accessibility-colors .dark-background pre,.accessibility-colors .dark-background table,.accessibility-colors .dark-background ul,.accessibility-colors .light-background a,.accessibility-colors .light-background b,.accessibility-colors .light-background dl,.accessibility-colors .light-background h1,.accessibility-colors .light-background h2,.accessibility-colors .light-background h3,.accessibility-colors .light-background h4,.accessibility-colors .light-background h5,.accessibility-colors .light-background h6,.accessibility-colors .light-background ol,.accessibility-colors .light-background p,.accessibility-colors .light-background pre,.accessibility-colors .light-background table,.accessibility-colors .light-background ul{color:#f9ec5a}.accessibility-colors .dark-background .mobile-menu-toggler span,.accessibility-colors .dark-background .mobile-menu-toggler span:after,.accessibility-colors .dark-background .mobile-menu-toggler span:before,.accessibility-colors .light-background .mobile-menu-toggler span,.accessibility-colors .light-background .mobile-menu-toggler span:after,.accessibility-colors .light-background .mobile-menu-toggler span:before{background-color:#f9ec5a}.accessibility-colors .dark-background .content-area,.accessibility-colors .light-background .content-area{color:#f9ec5a}.accessibility-colors .dark-background .content-area a,.accessibility-colors .dark-background .content-area b,.accessibility-colors .dark-background .content-area dl,.accessibility-colors .dark-background .content-area h1,.accessibility-colors .dark-background .content-area h2,.accessibility-colors .dark-background .content-area h3,.accessibility-colors .dark-background .content-area h4,.accessibility-colors .dark-background .content-area h5,.accessibility-colors .dark-background .content-area h6,.accessibility-colors .dark-background .content-area ol,.accessibility-colors .dark-background .content-area p,.accessibility-colors .dark-background .content-area pre,.accessibility-colors .dark-background .content-area strong,.accessibility-colors .dark-background .content-area table,.accessibility-colors .dark-background .content-area ul,.accessibility-colors .light-background .content-area a,.accessibility-colors .light-background .content-area b,.accessibility-colors .light-background .content-area dl,.accessibility-colors .light-background .content-area h1,.accessibility-colors .light-background .content-area h2,.accessibility-colors .light-background .content-area h3,.accessibility-colors .light-background .content-area h4,.accessibility-colors .light-background .content-area h5,.accessibility-colors .light-background .content-area h6,.accessibility-colors .light-background .content-area ol,.accessibility-colors .light-background .content-area p,.accessibility-colors .light-background .content-area pre,.accessibility-colors .light-background .content-area strong,.accessibility-colors .light-background .content-area table,.accessibility-colors .light-background .content-area ul{color:#f9ec5a}.accessibility-colors .dark-background .content-area a.custom-btn,.accessibility-colors .dark-background .content-area b.custom-btn,.accessibility-colors .dark-background .content-area dl.custom-btn,.accessibility-colors .dark-background .content-area h1.custom-btn,.accessibility-colors .dark-background .content-area h2.custom-btn,.accessibility-colors .dark-background .content-area h3.custom-btn,.accessibility-colors .dark-background .content-area h4.custom-btn,.accessibility-colors .dark-background .content-area h5.custom-btn,.accessibility-colors .dark-background .content-area h6.custom-btn,.accessibility-colors .dark-background .content-area ol.custom-btn,.accessibility-colors .dark-background .content-area p.custom-btn,.accessibility-colors .dark-background .content-area pre.custom-btn,.accessibility-colors .dark-background .content-area strong.custom-btn,.accessibility-colors .dark-background .content-area table.custom-btn,.accessibility-colors .dark-background .content-area ul.custom-btn,.accessibility-colors .light-background .content-area a.custom-btn,.accessibility-colors .light-background .content-area b.custom-btn,.accessibility-colors .light-background .content-area dl.custom-btn,.accessibility-colors .light-background .content-area h1.custom-btn,.accessibility-colors .light-background .content-area h2.custom-btn,.accessibility-colors .light-background .content-area h3.custom-btn,.accessibility-colors .light-background .content-area h4.custom-btn,.accessibility-colors .light-background .content-area h5.custom-btn,.accessibility-colors .light-background .content-area h6.custom-btn,.accessibility-colors .light-background .content-area ol.custom-btn,.accessibility-colors .light-background .content-area p.custom-btn,.accessibility-colors .light-background .content-area pre.custom-btn,.accessibility-colors .light-background .content-area strong.custom-btn,.accessibility-colors .light-background .content-area table.custom-btn,.accessibility-colors .light-background .content-area ul.custom-btn{color:#f9ec5a;border-color:#f9ec5a;background-color:#000}.accessibility-colors .dark-background .content-area a.custom-btn:hover,.accessibility-colors .dark-background .content-area b.custom-btn:hover,.accessibility-colors .dark-background .content-area dl.custom-btn:hover,.accessibility-colors .dark-background .content-area h1.custom-btn:hover,.accessibility-colors .dark-background .content-area h2.custom-btn:hover,.accessibility-colors .dark-background .content-area h3.custom-btn:hover,.accessibility-colors .dark-background .content-area h4.custom-btn:hover,.accessibility-colors .dark-background .content-area h5.custom-btn:hover,.accessibility-colors .dark-background .content-area h6.custom-btn:hover,.accessibility-colors .dark-background .content-area ol.custom-btn:hover,.accessibility-colors .dark-background .content-area p.custom-btn:hover,.accessibility-colors .dark-background .content-area pre.custom-btn:hover,.accessibility-colors .dark-background .content-area strong.custom-btn:hover,.accessibility-colors .dark-background .content-area table.custom-btn:hover,.accessibility-colors .dark-background .content-area ul.custom-btn:hover,.accessibility-colors .light-background .content-area a.custom-btn:hover,.accessibility-colors .light-background .content-area b.custom-btn:hover,.accessibility-colors .light-background .content-area dl.custom-btn:hover,.accessibility-colors .light-background .content-area h1.custom-btn:hover,.accessibility-colors .light-background .content-area h2.custom-btn:hover,.accessibility-colors .light-background .content-area h3.custom-btn:hover,.accessibility-colors .light-background .content-area h4.custom-btn:hover,.accessibility-colors .light-background .content-area h5.custom-btn:hover,.accessibility-colors .light-background .content-area h6.custom-btn:hover,.accessibility-colors .light-background .content-area ol.custom-btn:hover,.accessibility-colors .light-background .content-area p.custom-btn:hover,.accessibility-colors .light-background .content-area pre.custom-btn:hover,.accessibility-colors .light-background .content-area strong.custom-btn:hover,.accessibility-colors .light-background .content-area table.custom-btn:hover,.accessibility-colors .light-background .content-area ul.custom-btn:hover{background-color:#222;border-color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_submit,.accessibility-colors .light-background .content-area .form_submit{color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_submit input,.accessibility-colors .light-background .content-area .form_submit input{color:#f9ec5a}.accessibility-colors .dark-background .content-area table td,.accessibility-colors .dark-background .content-area table th,.accessibility-colors .light-background .content-area table td,.accessibility-colors .light-background .content-area table th{border-color:#f9ec5a;color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_field .edy-fe-label,.accessibility-colors .dark-background .content-area .form_field .form_field_label,.accessibility-colors .light-background .content-area .form_field .edy-fe-label,.accessibility-colors .light-background .content-area .form_field .form_field_label{border-color:#f9ec5a;color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_field_textarea,.accessibility-colors .dark-background .content-area .form_field_textfield,.accessibility-colors .dark-background .content-area label:not(.form_field_label),.accessibility-colors .light-background .content-area .form_field_textarea,.accessibility-colors .light-background .content-area .form_field_textfield,.accessibility-colors .light-background .content-area label:not(.form_field_label){border-color:#f9ec5a;color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_submit input,.accessibility-colors .light-background .content-area .form_submit input{background-color:#000;border:2px solid #f9ec5a;color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_submit input:hover,.accessibility-colors .light-background .content-area .form_submit input:hover{background-color:#222;border:2px solid #f9ec5a}.accessibility-colors .dark-background .content-area .form_field_checkbox+.form_control_indicator,.accessibility-colors .dark-background .content-area .form_field_radio+.form_control_indicator,.accessibility-colors .light-background .content-area .form_field_checkbox+.form_control_indicator,.accessibility-colors .light-background .content-area .form_field_radio+.form_control_indicator{background-color:#f9ec5a}.accessibility-colors .dark-background .content-area .custom-btn,.accessibility-colors .light-background .content-area .custom-btn{color:#f9ec5a;border-color:#f9ec5a;background-color:#000}.accessibility-colors .dark-background .content-area .custom-btn:hover,.accessibility-colors .light-background .content-area .custom-btn:hover{background-color:#222;border-color:#f9ec5a}.accessibility-colors .dark-background .header-title a,.accessibility-colors .dark-background .header-title a:hover,.accessibility-colors .light-background .header-title a,.accessibility-colors .light-background .header-title a:hover{color:#f9ec5a}.accessibility-colors .dark-background .menu li a:not(.untranslated),.accessibility-colors .light-background .menu li a:not(.untranslated){color:#f9ec5a}.accessibility-colors .dark-background .menu li.selected a,.accessibility-colors .light-background .menu li.selected a{color:#f9ec5a}.accessibility-colors .dark-background .lang-title,.accessibility-colors .light-background .lang-title{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu.menu-language-list .lang-title a,.accessibility-colors .light-background .lang-menu.menu-language-list .lang-title a{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu.menu-language-list .lang-title a.is-active,.accessibility-colors .dark-background .lang-menu.menu-language-list .lang-title a:hover,.accessibility-colors .light-background .lang-menu.menu-language-list .lang-title a.is-active,.accessibility-colors .light-background .lang-menu.menu-language-list .lang-title a:hover{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu.menu-language-list .lang-title a.selected,.accessibility-colors .light-background .lang-menu.menu-language-list .lang-title a.selected{color:#f9ec5a}.accessibility-colors .dark-background .voog-reference svg path,.accessibility-colors .light-background .voog-reference svg path{fill:#f9ec5a}.accessibility-colors .dark-background .site-options .search-btn svg path,.accessibility-colors .light-background .site-options .search-btn svg path{fill:#f9ec5a}@media screen and (max-width:640px){.search-open .accessibility-colors .dark-background .site-options .search-btn svg path,.search-open .accessibility-colors .light-background .site-options .search-btn svg path{fill:#f9ec5a}}.accessibility-colors .menu-main{color:#f9ec5a}@media screen and (max-width:1024px){.accessibility-colors .mobile-menu-toggler span,.accessibility-colors .mobile-menu-toggler span:after,.accessibility-colors .mobile-menu-toggler span:before{background-color:#000}.dark-background .accessibility-colors .mobile-menu-toggler span,.dark-background .accessibility-colors .mobile-menu-toggler span:after,.dark-background .accessibility-colors .mobile-menu-toggler span:before{background-color:#000}.language-flags-disabled .accessibility-colors .mobile-menu-toggler span .lang-menu-btn .lang-title,.language-flags-disabled .accessibility-colors .mobile-menu-toggler span:after .lang-menu-btn .lang-title,.language-flags-disabled .accessibility-colors .mobile-menu-toggler span:before .lang-menu-btn .lang-title{color:#f9ec5a}.accessibility-colors #mobile-menu{color:#f9ec5a;background-color:#000}.accessibility-colors #mobile-menu .search-open-btn svg{fill:#f9ec5a}.accessibility-colors #mobile-menu ul a,.accessibility-colors #mobile-menu ul li{color:#f9ec5a}.accessibility-colors #mobile-menu .navigation-menu ul a.selected{color:#f9ec5a}.accessibility-colors #mobile-menu .lang-menu ul li a.is-active{color:#f9ec5a}}.accessibility-colors .lang-flag:before{background-color:#000}.lang-menu.menu-language-list .lang-title a.is-active{color:#f9ec5a}.lang-menu li a{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu a.lang-flag{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu a.lang-flag:hover{color:#f9ec5a}.lang-menu-btn .lang-title-inner:after{border-color:#f9ec5a transparent transparent transparent}.accessibility-colors .dark-background .lang-menu-btn .lang-title-inner:after{border-color:#f9ec5a transparent transparent transparent}.accessibility-size-large .accessibility-menu-btn-wrap,.accessibility-size-large .footer-menu,.accessibility-size-large .lang-menu-btn{font-size:20px}.accessibility-size-large #footer-menu .toggle-sub-menu,.accessibility-size-large #mobile-menu .toggle-sub-menu{top:16px}.accessibility-size-large .content-item-box .item-title{font-size:24px}.accessibility-size-large .site-sidebar .submenu li{font-size:26px}.accessibility-size-large .site-sidebar .sidebar-title{font-size:26px}.accessibility-size-large .site-footer .blog-article-nav .article-nav-direction{font-size:20px}.accessibility-size-large .blog-tags .tags-title{font-size:24px}.accessibility-size-large .blog-article-page .article-author,.accessibility-size-large .blog-article-page .article-date,.accessibility-size-large .blog-article-page .comments-title,.accessibility-size-large .blog-news-page .article-author,.accessibility-size-large .blog-news-page .article-date,.accessibility-size-large .blog-news-page .comments-title{font-size:22px}.accessibility-size-large .blog-tags .menu .menu-link{font-size:20px}.accessibility-size-large .menu-main li{font-size:20px}.accessibility-size-large #mobile-menu .navigation-menu{font-size:20px}.accessibility-size-large .accessibility-menu-btn-wrap,.accessibility-size-large .lang-menu-btn{font-size:20px}.accessibility-size-large .content-area{font-size:20px}.accessibility-size-large .content-area .form_field_textarea,.accessibility-size-large .content-area .form_field_textfield,.accessibility-size-large .content-area a.custom-btn,.accessibility-size-large .content-area code,.accessibility-size-large .content-area div.custom-btn,.accessibility-size-large .content-area dl,.accessibility-size-large .content-area h5,.accessibility-size-large .content-area h6,.accessibility-size-large .content-area label:not(.form_field_label),.accessibility-size-large .content-area ol,.accessibility-size-large .content-area p,.accessibility-size-large .content-area pre,.accessibility-size-large .content-area ul{font-size:20px}.accessibility-size-large .content-area .form_field .edy-fe-label,.accessibility-size-large .content-area .form_field .form_field_label{font-size:20px}.accessibility-size-large .content-area .form_field_textarea,.accessibility-size-large .content-area .form_field_textfield,.accessibility-size-large .content-area label:not(.form_field_label){font-size:20px}.accessibility-size-large .content-area .form_submit input{font-size:20px}.accessibility-size-large .content-area.accessibility-block-wrap{font-size:16px}.accessibility-size-large .content-area.accessibility-block-wrap div label,.accessibility-size-large .content-area.accessibility-block-wrap div ul{font-size:16px}.accessibility-size-large .content-area.accessibility-block-wrap div h2{font-size:24px}.accessibility-size-large .content-area.accessibility-block-wrap a.custom-btn,.accessibility-size-large .content-area.accessibility-block-wrap div.custom-btn{font-size:16px}.site-footer .accessibility-size-large .content-area{font-size:20px}.accessibility-size-large .content-area h1,.accessibility-size-large .content-area h1 a,.accessibility-size-large .content-area h1 a:hover{font-size:34px;font-weight:300}.accessibility-size-large .content-area h2{font-size:28px}.accessibility-size-large .content-area h3{font-size:24px}.accessibility-size-large .content-area h4{font-size:20px}.accessibility-size-large .content-area table td,.accessibility-size-large .content-area table th{font-size:20px}.accessibility-size-large .main-feature .feature-content{font-size:20px}.accessibility-size-large .front-page .main-feature .content-area{font-size:20px}.accessibility-size-huge .accessibility-menu-btn-wrap,.accessibility-size-huge .footer-menu,.accessibility-size-huge .lang-menu-btn{font-size:24px}.accessibility-size-huge .menu-main li{font-size:24px}.accessibility-size-huge #footer-menu .toggle-sub-menu,.accessibility-size-huge #mobile-menu .toggle-sub-menu{top:18px}.accessibility-size-huge #mobile-menu .navigation-menu{font-size:24px}.accessibility-size-huge .content-item-box .item-title{font-size:24px}.accessibility-size-huge .site-sidebar .submenu li{font-size:26px}.accessibility-size-huge .site-sidebar .sidebar-title{font-size:26px}.accessibility-size-huge .site-footer .blog-article-nav .article-nav-direction{font-size:20px}.accessibility-size-huge .blog-tags .tags-title{font-size:24px}.accessibility-size-huge .blog-article-page .article-author,.accessibility-size-huge .blog-article-page .article-date,.accessibility-size-huge .blog-article-page .comments-title,.accessibility-size-huge .blog-news-page .article-author,.accessibility-size-huge .blog-news-page .article-date,.accessibility-size-huge .blog-news-page .comments-title{font-size:22px}.accessibility-size-huge .blog-tags .menu .menu-link{font-size:20px}.accessibility-size-huge .content-area{font-size:24px}.accessibility-size-huge .content-area .form_field_textarea,.accessibility-size-huge .content-area .form_field_textfield,.accessibility-size-huge .content-area a.custom-btn,.accessibility-size-huge .content-area code,.accessibility-size-huge .content-area div.custom-btn,.accessibility-size-huge .content-area dl,.accessibility-size-huge .content-area h5,.accessibility-size-huge .content-area h6,.accessibility-size-huge .content-area label:not(.form_field_label),.accessibility-size-huge .content-area ol,.accessibility-size-huge .content-area p,.accessibility-size-huge .content-area pre,.accessibility-size-huge .content-area ul{font-size:24px}.accessibility-size-huge .content-area .form_field .edy-fe-label,.accessibility-size-huge .content-area .form_field .form_field_label{font-size:24px}.accessibility-size-huge .content-area .form_submit input{font-size:24px}.accessibility-size-huge .content-area.accessibility-block-wrap{font-size:16px}.accessibility-size-huge .content-area.accessibility-block-wrap div label,.accessibility-size-huge .content-area.accessibility-block-wrap div ul{font-size:16px}.accessibility-size-huge .content-area.accessibility-block-wrap div h2{font-size:24px}.accessibility-size-huge .content-area.accessibility-block-wrap a.custom-btn,.accessibility-size-huge .content-area.accessibility-block-wrap div.custom-btn{font-size:16px}.site-footer .accessibility-size-huge .content-area{font-size:24px}.accessibility-size-huge .content-area h1,.accessibility-size-huge .content-area h1 a,.accessibility-size-huge .content-area h1 a:hover{font-size:38px;font-weight:300}.accessibility-size-huge .content-area h2{font-size:30px}.accessibility-size-huge .content-area h3{font-size:28px}.accessibility-size-huge .content-area h4{font-size:26px}.accessibility-size-huge .content-area table td,.accessibility-size-huge .content-area table th{font-size:24px}.accessibility-size-huge .main-feature .feature-content{font-size:24px}.accessibility-size-huge .front-page .main-feature .content-area{font-size:24px}.accessibility-line-height-large{line-height:2.5}.accessibility-line-height-large .content-area,.accessibility-line-height-large .site-footer,.accessibility-line-height-large .site-header{line-height:2.5}.accessibility-line-height-large .content-area.accessibility-block-wrap,.accessibility-line-height-large .site-footer.accessibility-block-wrap,.accessibility-line-height-large .site-header.accessibility-block-wrap{line-height:1.7}.accessibility-line-height-large .content-area .header-bottom-inner .content-area h1,.accessibility-line-height-large .site-footer .header-bottom-inner .content-area h1,.accessibility-line-height-large .site-header .header-bottom-inner .content-area h1{line-height:1.5}.accessibility-line-height-large .front-page .main-feature .content-area{line-height:2.5}.accessibility-line-height-large .main-feature .feature-content{line-height:2.5}.accessibility-line-height-large .header-top{line-height:1}.accessibility-line-height-huge{line-height:3.5}.accessibility-line-height-huge .content-area,.accessibility-line-height-huge .site-footer,.accessibility-line-height-huge .site-header{line-height:3.5}.accessibility-line-height-huge .content-area.accessibility-block-wrap,.accessibility-line-height-huge .site-footer.accessibility-block-wrap,.accessibility-line-height-huge .site-header.accessibility-block-wrap{line-height:1.7}.accessibility-line-height-huge .content-area .header-bottom-inner .content-area h1,.accessibility-line-height-huge .site-footer .header-bottom-inner .content-area h1,.accessibility-line-height-huge .site-header .header-bottom-inner .content-area h1{line-height:2}.accessibility-line-height-huge .front-page .main-feature .content-area{line-height:3.5}.accessibility-line-height-huge .main-feature .feature-content{line-height:3.5}.accessibility-line-height-huge .header-top{line-height:1}@media screen and (max-width:640px){html.comments-open,html.search-open{height:100%;overflow:hidden}}body{margin:0;font-family:Roboto,sans-serif;font-size:16px;font-weight:300;line-height:1;overflow-x:hidden;-webkit-text-size-adjust:100%}@media screen and (max-width:640px){.comments-open body,.search-open body{position:fixed;top:0;left:0;width:100%;height:100%;overflow:hidden}}@media screen and (max-width:640px){.mobilemenu-open body{position:fixed;top:0;left:0;width:100%;height:100%;overflow:hidden}}a{color:inherit;text-decoration:none}a img{border-style:none}.svg-spritesheet{display:none}.voog-bg-picker-btn{top:0;left:10px;padding:0;border-style:none;opacity:.9}.voog-bg-picker-btn::-moz-focus-inner{padding:0;border:none}.voog-bg-picker-btn.is-hidden{display:none}.header-bottom .voog-bg-picker-btn{top:70px}.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:145px}@media screen and (max-width:1024px){.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:120px}}@media screen and (max-width:640px){.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:70px}}.blog-article-page .header-bottom .voog-bg-picker-btn{top:113px}.header-bottom .voog-bg-picker-btn:hover{opacity:1}.btn{display:none}.btn::-moz-focus-inner{padding:0;border:0}.btn.edy-bgpicker-toggle-button{display:block}.site-container{margin:0 auto;position:relative;-webkit-perspective:1000px;perspective:1000px;-webkit-transition:-webkit-transform .5s;transition:-webkit-transform .5s;-o-transition:transform .5s;transition:transform .5s;transition:transform .5s,-webkit-transform .5s}.site-container:after{position:absolute;top:0;right:0;width:0;height:0;background:rgba(0,0,0,.2);content:'';opacity:0;-webkit-transition:opacity .5s,width .1s .5s,height .1s .5s;-o-transition:opacity .5s,width .1s .5s,height .1s .5s;transition:opacity .5s,width .1s .5s,height .1s .5s}.flexbox .site-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:100vh}.editmode.flexbox .site-container{min-height:calc(100vh - 40px)}@media screen and (max-width:1024px){.mobilemenu-open .site-container{-webkit-transform:translate3d(-250px,0,0);transform:translate3d(-250px,0,0)}}.mobilemenu-open .site-container:after{width:100%;height:100%;opacity:1;-webkit-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.blog-article-page .site-container{overflow:hidden}.comments-open .site-container{overflow:visible}.page-body{position:relative}.flexbox .page-body{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.page-content{display:block;position:relative;max-width:100vw}.background-color,.background-image{position:absolute}.background-image{z-index:-2;background-position:center;background-size:cover}.background-color{z-index:-1}.wrap{margin:0 auto}.header-top .wrap{max-width:100%}.inner{margin:0 auto;padding:50px 40px 60px}.inner:empty{display:none}.inner.has-bottom-content{padding-bottom:30px}.inner.no-bottom-padding{padding-bottom:0}.front-page .main-content .inner{padding:70px 40px 0}@media screen and (max-width:640px){.front-page .main-content .inner{padding:40px 20px 0}}@media screen and (max-width:640px){.item-list-page.sidebar-inactive .inner{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.item-list-page.sidebar-inactive .inner{padding-right:40px;padding-left:40px}}@media screen and (max-width:640px){.item-list-page.sidebar-active .inner{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.item-list-page.sidebar-active .inner{padding-right:40px}}@media screen and (min-width:641px) and (max-width:1024px){.item-list-page.sidebar-active .inner{padding-left:40px}}@media screen and (min-width:1025px){.item-list-page.sidebar-active .inner{padding-left:0}}@media screen and (max-width:640px){.item-page.sidebar-inactive .inner{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.item-page.sidebar-inactive .inner{padding-right:40px;padding-left:40px}}@media screen and (max-width:640px){.item-page.sidebar-active .inner{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.item-page.sidebar-active .inner{padding-right:40px}}@media screen and (min-width:641px) and (max-width:1024px){.item-page.sidebar-active .inner{padding-left:40px}}@media screen and (min-width:1025px){.item-page.sidebar-active .inner{padding-left:0}}@media screen and (max-width:640px){.inner{padding:30px 20px 40px}}.dark-background{color:#fff}.dark-background h1,.dark-background h2,.dark-background h3,.dark-background h4,.dark-background p,.dark-background pre{color:#fff}.site-footer .dark-background{color:rgba(255,255,255,.7)}.site-footer .dark-background a,.site-footer .dark-background b{color:#fff}.dark-background .header-title a{color:#fff}.dark-background .menu li a{color:#fff;opacity:.7}.dark-background .menu li a:hover{opacity:1}.dark-background .menu li.selected a{opacity:1}.dark-background .lang-title{color:#fff}.dark-background .lang-menu.menu-language-list .lang-title a{color:#fff}.dark-background .voog-reference svg path{fill:#fff}.dark-background .site-options .search-btn svg path{fill:#fff}@media screen and (max-width:640px){.search-open .dark-background .site-options .search-btn svg path{fill:rgba(0,0,0,.7)}}.light-background{color:#000}.light-background h1,.light-background h2,.light-background h3,.light-background h4{color:#000}.site-header .light-background a{color:#000}.site-header .light-background .header-title a{color:#000}.site-header .light-background .menu li a{color:rgba(0,0,0,.7)}.site-header .light-background .menu li a:hover{color:#000}.site-header .light-background .menu li a.untranslated{color:rgba(199,9,9,.7)}.site-header .light-background .menu li a.untranslated:hover{color:#c70909}.site-header .light-background .menu li.selected a{color:#000}.site-footer .light-background{color:rgba(0,0,0,.7)}.light-background .lang-title{color:#000}.table-holder{overflow:auto;-webkit-overflow-scrolling:touch;max-width:100%}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.loader{position:absolute;top:50%;left:50%;z-index:999;width:20px;height:20px;border-radius:100%;opacity:0;-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}.loader::before{position:absolute;display:block;width:100%;height:100%;content:'';-webkit-box-sizing:content-box;box-sizing:content-box}.is-loaded .loader,.not-loaded .loader{margin-top:calc((20px / 2) * -1);margin-left:calc((20px / 2) * -1);border:1px solid transparent;-webkit-animation:rotation .7s infinite linear;animation:rotation .7s infinite linear}.is-loaded .loader::before,.not-loaded .loader::before{border-top:1px solid #000;border-right:1px solid transparent;border-bottom:1px solid transparent;border-left:1px solid transparent;border-radius:100%}.not-loaded .loader{opacity:1}.is-loaded .loader{opacity:0}.with-error .loader{width:30px;height:30px;margin-top:-15px;margin-left:-15px;background-color:rgba(199,9,9,.7);opacity:1}.with-error .loader::after,.with-error .loader::before{position:absolute;top:14px;width:22px;height:2px;background-color:#fff;border-radius:2px;content:''}.with-error .loader::before{left:4px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.with-error .loader::after{right:4px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.blog-news-page .articles-listing:after,.common-page .sidebar-active:after,.contacts .content-area table tr:after,.content-area:after,.footer .content-area table tr:after,.search-form:after,.search:after,.site-footer .blog-article-nav:after,.site-header:after,.wrap:after{display:table;clear:both;content:''}.background-color,.background-image,.stretch{position:absolute;top:0;left:0;right:0;bottom:0}.lang-menu-btn,.mobile-menu-toggler,.search-btn,.search-submit,.toggle-sub-menu{margin:0;padding:0;background-color:transparent;border-style:none;cursor:pointer}.lang-menu-btn:focus,.mobile-menu-toggler:focus,.search-btn:focus,.search-submit:focus,.toggle-sub-menu:focus{outline:0}.lang-menu-btn::-moz-focus-inner,.mobile-menu-toggler::-moz-focus-inner,.search-btn::-moz-focus-inner,.search-submit::-moz-focus-inner,.toggle-sub-menu::-moz-focus-inner{padding:0;border-style:none}.content-area .form_field_select,.content-area .form_field_textarea,.content-area .form_field_textfield,.site-search .search-input{-webkit-appearance:none;border-radius:0}.content-area .form_field_select,.content-area .form_field_textarea,.content-area .form_field_textfield,.site-search .search-input{font-family:inherit;font-size:inherit;line-height:inherit}.wrap{max-width:1040px}.edy-content-element>.form{margin:20px 0}.product-content .without-image .item-top{background-image:url(../assets/ico-placeholder.svg);background-size:40px;background-repeat:no-repeat;background-position:center;background-color:#f2f2f2}.product-content .product-price{padding:12px 0 24px 0}.product-content .product-price-divider{margin:4px}.product-content .product-description{padding-bottom:12px}.product-content .content-gallery{margin:32px 0}.product-content .product-cross-page-info{margin-bottom:32px}.flex-col{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:50%}.flex-col .content-body,.flex-col .content-illustrations{max-width:100%}.flex-col .content-body{position:-webkit-sticky;position:sticky;top:64px;z-index:10601}.dark-background .edy-product-widget-filter-search-input,.dark-background .edy-product-widget-filter-sort{opacity:.7}.dark-background .edy-product-widget-filter-label{opacity:.5}.front-page .page-content .content-header{font-size:50px;font-weight:700;line-height:1}.front-page .page-content .content-slogan{font-size:24px;font-weight:400;line-height:1}.front-page .page-content .content-header{margin-bottom:10px}.front-page .page-content .content-slogan{margin-bottom:80px}.front-page .main-feature{padding-top:70px}@media screen and (max-width:640px){.front-page .main-feature{padding-top:40px}}.front-page .main-feature .wrap{padding:0 40px;font-size:0;text-align:center;max-width:1123px}@media screen and (max-width:640px){.front-page .main-feature .wrap{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.front-page .main-feature .feature{display:inline-block;vertical-align:top;width:33.3%}}.editmode .front-page .main-feature .feature:nth-child(3n+1) .aspect-ratio-inner:not(.active),.editmode .front-page .main-feature .feature:nth-child(3n+2) .aspect-ratio-inner:not(.active){border-left-style:dashed}.editmode .front-page .main-feature .feature:nth-child(3n+2) .aspect-ratio-inner:not(.active),.editmode .front-page .main-feature .feature:nth-child(3n+3) .aspect-ratio-inner:not(.active){border-right-style:dashed}.front-page .main-feature .feature:empty{display:none}@media screen and (min-width:640px) and (max-width:1024px){.front-page .main-feature .feature:first-child .feature-content{margin-right:15px;margin-left:0}.front-page .main-feature .feature:nth-child(2) .feature-content{margin-right:15px;margin-left:15px}.front-page .main-feature .feature:last-child .feature-content{margin-right:0;margin-left:15px}}.front-page .main-feature .feature-image{position:relative;margin-bottom:25px}.front-page .main-feature .feature-image:before{display:block;content:'';width:100%;padding-top:66.5413533835%}.front-page .main-feature .feature-image>.aspect-ratio-inner{position:absolute;top:0;right:0;bottom:0;left:0}.front-page .main-feature .feature-image.has-margin{margin-bottom:70px}.front-page .main-feature .feature-image.empty-hidden{display:none}.front-page .main-feature .aspect-ratio-inner{background-size:cover;background-position:center}.front-page .main-feature .aspect-ratio-inner:not(.active){border-width:1px}.editmode .front-page .main-feature .aspect-ratio-inner:not(.active){border-top-style:dashed;border-bottom-style:dashed}@media screen and (max-width:640px){.editmode .front-page .main-feature .aspect-ratio-inner:not(.active){border-right-style:dashed;border-left-style:dashed}}.front-page .main-feature .aspect-ratio-inner.active{border-width:0}.editmode .front-page .main-feature .aspect-ratio-inner{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.front-page .main-feature .edy-img-drop-area .edy-img-drop-area-remove-image{top:5px;right:5px}.front-page .main-feature .edy-img-drop-area-placeholder{font-size:14px}.front-page .main-feature .feature-content{margin:0 30px 70px;font-size:16px}@media screen and (max-width:640px){.front-page .main-feature .feature-content{margin:0 0 40px}}.front-page .main-feature .feature-content:empty{display:none}.front-page .main-feature .content-area{text-align:left;line-height:1.7}.front-page .main-feature .content-area h3{margin-bottom:8px}.front-page .front-page-content-bottom .wrap{height:360px;display:table;table-layout:fixed;width:100%}.front-page .front-page-content-bottom .wrap .inner{display:table-cell;vertical-align:middle;width:100%}.front-page .content-full{position:relative}.front-page .content-full .content-full-inner{position:relative}.header-logo-wrap{position:absolute;left:10px;bottom:22px;width:200px;height:100px}@media screen and (max-width:640px){.header-logo-wrap{width:150px;height:75px}}.header-logo-wrap .header-logo{position:relative}.header-logo-wrap .header-logo:before{display:block;content:'';width:100%;padding-top:55.5555555556%}.header-logo-wrap .header-logo>.aspect-ratio-inner{position:absolute;top:0;right:0;bottom:0;left:0}.header-logo-wrap .header-logo .aspect-ratio-inner{background-size:contain;background-position:left!important;background-repeat:no-repeat}.common-page .sidebar-active{max-width:1040px;width:100%;margin:0 auto}.common-page .sidebar-active .wrap{margin:0}@media screen and (max-width:1024px){.common-page .sidebar-active .wrap{margin-right:auto;margin-left:auto}}.common-page .sidebar-active .inner{width:auto;margin:0}@media screen and (min-width:1025px){.common-page .sidebar-active .page-content{float:right;vertical-align:top;width:calc(100% - 260px)}}.common-page .main-content .wrap{max-width:780px}.common-page .main-content .content-half{float:left;width:50%;-webkit-box-sizing:border-box;box-sizing:border-box}.common-page .main-content .content-half.has-padding{padding-top:50px}@media screen and (max-width:640px){.common-page .main-content .content-half{float:none;width:100%}}@media screen and (min-width:851px){.common-page .main-content .content-left{padding:0 20px 60px 40px}}@media screen and (max-width:640px){.common-page .main-content .content-left{padding:0 20px 20px}}@media screen and (min-width:851px){.common-page .main-content .content-right{padding:0 40px 60px 20px}}@media screen and (max-width:640px){.common-page .main-content .content-right{padding:0 20px 20px}}.blog-news-page .main-content .wrap{max-width:780px}.blog-news-page .blog-intro-content{padding-bottom:50px}.blog-news-page .article-title{font-size:30px;font-weight:300;margin:10px 0 0}@media screen and (max-width:850px){.blog-news-page .article-title{font-size:24px}}.blog-news-page .article-title a{color:#000;text-decoration:none}.blog-news-page .article-content{margin-top:20px}.blog-news-page .blog-article{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;position:relative;padding-top:50px}.blog-news-page .blog-article:first-child{padding-top:0}.blog-news-page .blog-article .article-image{position:relative;z-index:1;margin-top:25px;margin-bottom:20px}.blog-news-page .blog-article .article-image:before{display:block;width:100%;padding-top:65.715%;content:''}.blog-news-page .article-author,.blog-news-page .article-date{font-size:14px;color:#000;opacity:.35;font-weight:400;line-height:1;display:inline;letter-spacing:1px;text-transform:uppercase}.dark-background .blog-news-page .article-author,.dark-background .blog-news-page .article-date{color:rgba(255,255,255,.35)}.blog-news-page .article-excerpt{color:rgba(0,0,0,.7);font-size:rem-calc(18px);font-weight:300;line-height:1.7;margin-bottom:20px}.blog-news-page .article-read-more-btn{display:inline-block;text-decoration:underline}.blog-news-page .article-read-more-btn:hover{text-decoration:none}@media screen and (max-width:640px){.blog-news-page .article-header{margin:0}}.blog-news-page .articles-listing{max-width:695px;margin:0 auto}.blog-news-page .articles-listing .articles-listing-header{margin:62px 0 30px}.blog-news-page .articles-listing .articles-listing-title{font-size:22px;text-transform:uppercase}.blog-news-page .articles-listing .blog-article{padding:0}.blog-news-page .articles-listing .blog-article .article-header{margin:0 0 20px}.blog-news-page .articles-listing .blog-article .article-date{font-size:12px;font-size:12px;color:#000;opacity:.35;font-weight:400;line-height:1.7;position:absolute;top:4px;letter-spacing:1px}.blog-news-page .articles-listing .blog-article .article-title{font-size:18px;font-weight:300;line-height:1.4;margin-left:170px}@media screen and (max-width:480px){.blog-news-page .articles-listing{margin:0}.blog-news-page .articles-listing .blog-article .article-date{position:static}.blog-news-page .articles-listing .blog-article .article-title{margin:0}}.blog-news-page .dark-background .article-author,.blog-news-page .dark-background .article-date,.blog-news-page .dark-background .articles-listing .article-date{color:rgba(255,255,255,.35)}.blog-article-page .article-types-toggle{font-size:0;position:absolute;top:85px;left:20px;display:inline-block;overflow:hidden;width:150px;border-radius:5px}.blog-article-page .article-types-toggle .type-btn{font-family:inherit;font-size:16px;line-height:1.3;display:inline-block;float:left;width:75px;padding:5px 5px 3px;cursor:pointer;text-align:center;text-decoration:none;color:#fff;border-style:none;outline:0;background-color:rgba(0,0,0,.5)}.blog-article-page .article-types-toggle .type-btn:hover{background-color:rgba(0,0,0,.7)}.blog-article-page .article-types-toggle .type-btn.is-active{background-color:#000}.blog-article-page.header-top-with-bg .article-types-toggle{top:150px}@media screen and (max-width:1024px){.blog-article-page.header-top-with-bg .article-types-toggle{top:125px}}@media screen and (max-width:640px){.blog-article-page.header-top-with-bg .article-types-toggle{top:80px}}.blog-article-page .article-body,.blog-article-page .article-excerpt{font-size:16px;font-weight:300;line-height:1.7;margin:30px 0 0;color:rgba(0,0,0,.7)}.blog-article-page .article-excerpt{font-weight:400}.blog-article-page .article-excerpt:empty{display:none}.blog-article-page .comments-title{font-size:14px;font-weight:400;line-height:1.7;display:inline-block;cursor:pointer;text-transform:uppercase;color:#000;margin-right:30px}.blog-article-page .comments-title:hover .comments-count,.blog-article-page .comments-title:hover .comments-title-inner{opacity:1}.dark-background .blog-article-page .comments-title{color:#fff}.blog-article-page .comments-title .comments-title-inner{opacity:.35}.blog-article-page .comments-title .comments-count{opacity:.7}.blog-article-page .main-content{-webkit-transition:min-height 250ms;-o-transition:min-height 250ms;transition:min-height 250ms;min-height:0;will-change:min-height}.blog-article-page .main-content .wrap{max-width:780px}.blog-article-page .main-content .article-meta{display:inline-block;margin-right:30px}.blog-article-page .main-content .article-meta.is-hidden{display:none}.blog-article-page .main-content .article-header{margin:10px 0 30px}@media screen and (max-width:480px){.blog-article-page .main-content .article-header.comments-open .blog-article-page .main-content .article-header{display:none}}.blog-article-page .main-content .article-header .article-title{line-height:1.4;margin-bottom:0}.blog-article-page .main-content .article-header a{border-bottom:none}.blog-article-page .main-content .article-author,.blog-article-page .main-content .article-date{font-size:14px;font-weight:400;line-height:1;display:inline;letter-spacing:1px;text-transform:uppercase;color:#000;opacity:.35}.blog-article-page .main-content .article-author.is-hidden,.blog-article-page .main-content .article-date.is-hidden{display:none}.blog-article-page .article-author,.blog-article-page .article-date{opacity:.35}.blog-article-page .dark-background .article-author,.blog-article-page .dark-background .article-date{color:#fff}.blog-article-page.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:180px}@media screen and (max-width:1024px){.blog-article-page.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:155px}}@media screen and (max-width:640px){.blog-article-page.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:115px}}.article-settings-wrap{display:inline-block}.blog-article-page .wrap .hide-article-comments,.blog-news-page .wrap .hide-article-comments,.site-header .wrap .hide-article-comments{display:none}.blog-article-page .wrap .article-date.hide-article-date,.blog-news-page .wrap .article-date.hide-article-date,.site-header .wrap .article-date.hide-article-date{display:none}.blog-article-page .wrap .article-author.hide-article-author,.blog-news-page .wrap .article-author.hide-article-author,.site-header .wrap .article-author.hide-article-author{display:none}.date-separator.hide-separator{display:none}.article-comments{-webkit-transition:250ms;-o-transition:250ms;transition:250ms;position:absolute;top:0;right:-486px;z-index:1;width:440px;padding:45px 40px;background-color:#fff;-webkit-box-shadow:-10px 19px 30px rgba(68,68,68,.31);box-shadow:-10px 19px 30px rgba(68,68,68,.31);-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:640px){.article-comments{display:none;right:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:0s;-o-transition:0s;transition:0s}}.article-comments.open{-webkit-transition:250ms;-o-transition:250ms;transition:250ms;top:0;right:0;-webkit-box-shadow:0 0 20px rgba(0,0,0,.1);box-shadow:0 0 20px rgba(0,0,0,.1)}@media screen and (max-width:640px){.article-comments.open{display:block;-webkit-transition:0s;-o-transition:0s;transition:0s;width:100%}}.article-comments .comments-body{max-height:100%}@media screen and (max-width:640px){.comments-open .article-comments .comments-body{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;-webkit-overflow-scrolling:touch;-webkit-box-sizing:border-box;box-sizing:border-box;height:100vh;padding:20px;background-color:#fff}}.article-comments .comments-body .comments-header .comments-title{margin-top:0}.article-comments .comments-body .comments-title{margin:20px 0 20px 0;font-size:24px;font-weight:300;line-height:1.7;color:#000;cursor:text;text-transform:none}.article-comments .comments-body .comments-title .comments-count{display:inline-block;font-size:14px;color:#000;opacity:.35;vertical-align:middle}.article-comments .comments-body .form_field_textarea,.article-comments .comments-body .form_field_textfield{padding-top:10px;padding-bottom:10px;background-color:#fff}.article-comments .comment{margin:20px 0 0;color:rgba(0,0,0,.7)}.article-comments .comment:first-child{margin-top:0}.article-comments .comment .comment-body{display:block;font-size:16px;line-height:24px}.article-comments .comment .comment-author,.article-comments .comment .comment-date{font-size:14px;font-weight:300;line-height:2;color:#000;opacity:.35}.article-comments .comments-close.dark-background .btn-close{background-color:#0083ba}.article-comments .comments-close.dark-background .btn-close .ico-close{fill:#000}.article-comments .comments-close .btn-close{position:absolute;top:0;left:-46px;width:46px;height:46px;line-height:1;cursor:pointer;background-color:#0083ba}@media screen and (max-width:850px){.article-comments .comments-close .btn-close{right:0;left:auto;background-color:#0083ba}}@media screen and (min-width:851px){.article-comments .comments-close .btn-close:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s;opacity:.7}}.article-comments .comments-close .btn-close .ico-close{padding:15px;fill:#fff}@media screen and (max-width:850px){.article-comments .comments-close .btn-close .ico-close{fill:rgba(0,0,0,.7)}.article-comments .comments-close .btn-close .ico-close:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s;fill:rgba(0,0,0,.7)}}.blog-tags{margin-bottom:20px}.blog-article .blog-tags{margin-bottom:15px}.blog-tags .tags-toggle{position:relative;display:inline-block;cursor:pointer}.blog-tags .tags-icon{position:absolute;top:-3px;left:0;fill:rgba(0,0,0,.7)}.dark-background .blog-tags .tags-icon{fill:rgba(255,255,255,.7)}.blog-tags .tags-title{padding:0 20px 0 25px;font-weight:400;font-size:14px;text-transform:uppercase}.blog-tags .ico-arrow{position:absolute;right:0;top:3px;width:0;height:0;border-style:solid;border-width:8px 5px 0 5px;border-color:#000 transparent transparent transparent}.blog-tags .ico-arrow.active{border-width:0 5px 8px 5px;border-color:transparent transparent #000 transparent}.dark-background .blog-tags .ico-arrow.active{border-color:#fff transparent transparent transparent}.dark-background .blog-tags .ico-arrow{border-color:transparent transparent #fff transparent}.blog-tags .tags-bottom{display:none;margin-top:15px}.blog-tags .tags-bottom.visible{display:block}.blog-tags .menu{display:inline-block;padding-left:0}.blog-tags .menu .menu-item{display:inline-block;margin-top:5px;vertical-align:top}.blog-tags .menu .menu-item:before{display:none}.blog-tags .menu .menu-link{padding:1px 5px;font-size:12px;color:#a4a4a4;text-decoration:none;border-radius:3px;background-color:rgba(0,0,0,.03)}.blog-tags .menu .menu-link:hover{opacity:.7}.blog-tags .menu .menu-link.active{color:#fff;background-color:#a4a4a4}.dark-background .blog-tags .menu .menu-link{background-color:rgba(255,255,255,.2)}.site-header{position:relative}@media screen and (max-width:850px){.site-header .header-left,.site-header .header-right{float:none}.no-flexbox .site-header .header-left,.no-flexbox .site-header .header-right{display:table-cell;vertical-align:top}.site-header .header-left{-webkit-box-flex:1;-ms-flex:1;flex:1}}@media screen and (max-width:640px){.search-open .site-header{position:static}}.site-header .header-top .wrap{padding-top:40px;padding-right:40px;padding-left:40px}.flexbox .site-header .header-top .wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.header-top-with-bg .site-header .header-top .wrap{padding-bottom:40px}@media screen and (max-width:640px){.header-top-with-bg .site-header .header-top .wrap{padding-bottom:14px}}@media screen and (max-width:640px){.site-header .header-top .wrap{padding-top:20px;padding-right:20px;padding-left:20px}}.site-header .header-top .site-options{display:inline-block;vertical-align:top;height:27px}@media screen and (max-width:1024px){.site-header .header-top .site-options{margin-left:20px}}.site-header .header-title{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;font-size:24px;font-weight:300;line-height:1;position:relative;min-width:140px}.site-header .header-title a{text-decoration:none}.site-header .header-title a:hover{opacity:.7}.blog-article-page .site-header .header-body{text-align:center}.site-header .header-left{max-width:100%}.flexbox .site-header .header-left{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.no-flexbox .site-header .header-left{float:left}@media screen and (max-width:640px){.no-flexbox .site-header .header-left{float:none}}.site-header .header-right{position:relative;text-align:right}@media screen and (max-width:1024px){.site-header .header-right{margin-top:1px}}@media screen and (max-width:640px){.search-open .site-header .header-right{position:static}}.no-flexbox .site-header .header-right{float:right}.site-header .header-bottom .header-bottom-inner{display:table;width:100%;max-width:1040px;margin:0 auto;table-layout:fixed;border-collapse:collapse}.blog-article-page .site-header .header-bottom .header-bottom-inner,.blog-news-page .site-header .header-bottom .header-bottom-inner,.common-page .site-header .header-bottom .header-bottom-inner,.item-list-page .site-header .header-bottom .header-bottom-inner{height:253px}@media screen and (max-width:640px){.blog-article-page .site-header .header-bottom .header-bottom-inner,.blog-news-page .site-header .header-bottom .header-bottom-inner,.common-page .site-header .header-bottom .header-bottom-inner,.item-list-page .site-header .header-bottom .header-bottom-inner{height:130px}}.front-page .site-header .header-bottom .header-bottom-inner{height:606px}@media screen and (max-width:640px){.front-page .site-header .header-bottom .header-bottom-inner{height:400px}}.site-header .header-bottom .header-bottom-inner.header-bottom-only .wrap{padding-top:90px}.site-header .header-bottom .header-bottom-inner .wrap{display:table-cell;padding:60px 40px 90px;vertical-align:middle}.header-top-with-bg .site-header .header-bottom .header-bottom-inner .wrap{padding-top:74px;padding-bottom:76px}@media screen and (max-width:640px){.site-header .header-bottom .header-bottom-inner .wrap{padding:40px 20px 60px}.header-top-with-bg .site-header .header-bottom .header-bottom-inner .wrap{padding-top:49px;padding-bottom:51px}}.site-header.photo-article .header-bottom .header-bottom-inner{height:606px}@media screen and (max-width:640px){.site-header.photo-article .header-bottom .header-bottom-inner{height:400px}}.site-header .header-body .article-author,.site-header .header-body .article-date{font-size:14px;font-weight:400;line-height:2;display:inline;letter-spacing:1px;text-transform:uppercase}.site-header .header-body .article-author.is-hidden,.site-header .header-body .article-date.is-hidden{display:none}.site-header .header-body .article-title{font-size:60px;font-weight:300;line-height:1.2;margin:0 0 10px;text-transform:none}.publicmode .site-header .header-body .article-title{cursor:pointer}@media screen and (max-width:640px){.site-header .header-body .article-title{font-size:32px}}.site-header .header-body .article-title a{font-size:1em;text-decoration:none}.site-header .header-body .blog-title{font-weight:700;line-height:1;margin-top:0;text-transform:uppercase}.site-header .header-body .blog-title.is-hidden{display:none}.menu-btn-wrap{display:inline-block;vertical-align:middle;margin-left:30px}.language-menu-mode-list .menu-btn-wrap.menu-language-popover-btn{display:none}@media screen and (max-width:1024px){.menu-btn-wrap{display:none}}.toggle-sub-menu{position:absolute;top:14px;left:-12px;display:block}.no-svg .toggle-sub-menu:before{display:block;width:0;height:0;content:'';border-width:5px 0 5px 8px;border-style:solid;border-color:transparent transparent transparent #000}.svg .toggle-sub-menu{fill:#0083ba}.no-svg .toggle-sub-menu.active:before{border-width:8px 5px 0;border-color:#000 transparent transparent transparent}.svg .toggle-sub-menu.active{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.no-svg .toggle-sub-menu.highlighted{border-color:#0083ba transparent transparent transparent}.svg .toggle-sub-menu.highlighted{fill:#0083ba}.menu{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;margin-top:0;margin-bottom:0;padding-left:0;list-style-type:none}.menu li{font-weight:300;line-height:1.7}.menu li:last-child{margin-right:0}.menu li.selected{font-weight:500}.menu li.is-hidden{display:none}.menu li a{display:block;border-style:none}.menu li a.untranslated{color:rgba(199,9,9,.7)}.menu li a.untranslated:hover{color:#c70909}.menu-main{display:inline-block;vertical-align:top;text-transform:uppercase}.menu-main li{display:inline-block;margin-left:20px;font-size:16px}.menu-sub li{margin-right:10px}.menu-language-settings{margin-top:0;margin-bottom:0;padding-left:0}.language-menu-mode-popover .menu-language-settings .menu-item-cms{padding-top:5px!important}.language-menu-mode-list .menu-language-settings .menu-item-cms{padding-top:2px!important}.menu-item-list{margin-top:15px}@media screen and (min-width:1025px){.menu-item-list.is-hidden-desktop{display:none}}.item-list-page .menu-item-list{margin-bottom:15px}.common-page .menu-item-list{margin-bottom:18px}.menu-item-list .menu-item{display:inline-block;font-size:14px;opacity:.5}.menu-item-list .menu-item:not(.current):hover{opacity:.8}.menu-item-list .menu-item.selected{font-weight:400}.menu-item-list .menu-item.current{font-weight:500;opacity:1}.menu-item-cms{margin-left:10px}.menu-item-cms.float-right{float:right}.menu-separator{opacity:.5}.menu-separator:first-child{display:none}#mobile-menu{display:none}.mobile-menu-toggler{display:none}@media screen and (max-width:1024px){.site-header .header-right .menu-main{display:none}.mobilemenu-open,.mobilesearch-open{position:fixed;overflow:hidden;top:0;left:0;width:100%;height:100%}.mobilemenu-open #mobile-menu,.mobilesearch-open #mobile-menu{position:absolute;top:0;width:250px;height:100%}.mobile-menu-toggler{position:absolute;top:-12px;right:-12px;display:block;width:45px;height:44px;outline:0}.mobile-menu-toggler span,.mobile-menu-toggler span:after,.mobile-menu-toggler span:before{position:absolute;top:14px;left:12px;display:block;width:21px;height:2px;content:'';background-color:#000}.dark-background .mobile-menu-toggler span,.dark-background .mobile-menu-toggler span:after,.dark-background .mobile-menu-toggler span:before{background-color:#fff}.language-flags-disabled .mobile-menu-toggler span .lang-menu-btn,.language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn,.language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn{position:static;width:auto;height:auto;background-color:#c70909}.language-flags-disabled .mobile-menu-toggler span .lang-menu-btn:after,.language-flags-disabled .mobile-menu-toggler span .lang-menu-btn:before,.language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn:after,.language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn:before,.language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn:after,.language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn:before{display:none}.language-flags-disabled .mobile-menu-toggler span .lang-menu-btn .lang-title,.language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn .lang-title,.language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn .lang-title{position:static;color:#fff}.mobile-menu-toggler span:before{top:7px;left:0}.mobile-menu-toggler span:after{top:14px;left:0}#mobile-menu{-webkit-transition:-webkit-transform .5s;transition:-webkit-transform .5s;-o-transition:transform .5s;transition:transform .5s;transition:transform .5s,-webkit-transform .5s;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);font-family:Roboto,sans-serif;position:fixed;z-index:1000;top:0;right:0;height:100%;display:block;overflow:auto;-webkit-box-sizing:border-box;box-sizing:border-box;width:250px;padding:30px 20px;background-color:#fff}#mobile-menu.reset-touch{-webkit-overflow-scrolling:touch}}@media screen and (max-width:1024px) and (max-width:640px){#mobile-menu{padding-top:10px}}@media screen and (max-width:1024px){.editmode #mobile-menu{height:calc(100% - 40px)}.mobilemenu-open #mobile-menu{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}#mobile-menu .search-open-btn{-webkit-transition:right .3s;-o-transition:right .3s;transition:right .3s;position:absolute;top:28px;right:78px;width:42px;height:42px;margin-left:0}#mobile-menu .search-open-btn.no-back-btn{right:108px}#mobile-menu .search-open-btn.search-active{display:none}#mobile-menu .search-open-btn svg{fill:#000}#mobile-menu ul{margin:0;padding:0;list-style-type:none}#mobile-menu ul li{position:relative;margin:0}.language-names-disabled #mobile-menu ul li.lang-item{position:relative;left:-5px;display:inline-block}#mobile-menu ul li.is-hidden{display:none}#mobile-menu ul li.edit-btn{margin:10px 0}#mobile-menu ul a{line-height:1.3;padding:10px 0;text-transform:uppercase;color:rgba(0,0,0,.7)}.language-names-enabled #mobile-menu ul a.lang-flag{font-size:16px}.language-names-disabled #mobile-menu ul a.lang-flag{font-size:0;padding:15px 15px 8px 16px;opacity:.7}.language-names-disabled #mobile-menu ul a.lang-flag.is-active,.language-names-disabled #mobile-menu ul a.lang-flag:hover{opacity:1}#mobile-menu ul a.untranslated{color:rgba(199,9,9,.7)}#mobile-menu ul a.untranslated:hover{color:#c70909}#mobile-menu .navigation-menu{word-break:break-all;font-size:18px}#mobile-menu .navigation-menu .with-children>a{margin-right:30px}#mobile-menu .navigation-menu ul a{display:block}#mobile-menu .navigation-menu ul a.visible{display:inline-block}#mobile-menu .navigation-menu ul a.selected{font-weight:500;color:#000}#mobile-menu .navigation-menu ul a.indented{margin-left:10px}#mobile-menu .navigation-menu ul.current-menu>li:first-child>a{text-transform:uppercase}#mobile-menu .navigation-menu ul.child-menu li a.edy-cbtn{display:inline!important}#mobile-menu .navigation-menu .option-btn{padding:15px 0}#mobile-menu .sub-menu a{text-transform:initial}#mobile-menu .menu-level-2,#mobile-menu .menu-level-3{display:none;padding-left:10px}#mobile-menu .current-parent>.menu-level-2,#mobile-menu .current-parent>.menu-level-3{display:block}#mobile-menu .lang-menu{display:block;margin-top:20px;margin-left:0}#mobile-menu .lang-menu ul{margin:0;padding:0}#mobile-menu .lang-menu ul li{text-align:left}#mobile-menu .lang-menu ul li a{padding:7px 0 5px;text-align:left}.language-names-enabled #mobile-menu .lang-menu ul li a.lang-flag:after,.language-names-enabled #mobile-menu .lang-menu ul li a.lang-flag:before{top:8px;right:auto;left:0}.language-names-disabled #mobile-menu .lang-menu ul li a.lang-flag:after,.language-names-disabled #mobile-menu .lang-menu ul li a.lang-flag:before{top:5px;left:5px}#mobile-menu .lang-menu ul li a.is-active{font-weight:500;color:#000}.language-flags-enabled #mobile-menu .lang-menu a{padding-left:25px}}.lang-flag:after,.lang-flag:before{position:absolute;top:0;left:0;display:block;width:21px;height:15px;content:''}.language-flags-disabled .lang-flag:after,.language-flags-disabled .lang-flag:before{display:none}.lang-flag:after{background-position:-189px -60px}.lang-flag:before{background-color:#000}.lang-flag:after{padding-top:3px;padding-bottom:3px;font-size:9px;line-height:1;text-align:center;text-transform:uppercase;background-position:0 -75px;background-repeat:no-repeat;content:attr(data-lang-code);opacity:.95;-webkit-box-sizing:border-box;box-sizing:border-box}.no-boxshadow .lang-flag:after{border:1px solid #fff}.svg .lang-flag:after{background-image:url(../assets/ico-flags.svg)}.lang-flag:after .no-svg{background-image:url(../images/ico-flags.png)}[data-lang-code^=sq]:after{background-position:0 0;content:''}[data-lang-code^=hy]:after{background-position:-21px 0;content:''}[data-lang-code^=bn]:after{background-position:-42px 0;content:''}[data-lang-code^=bg]:after{background-position:-84px 0;content:''}[data-lang-code^=zh]:after{background-position:-105px 0;content:''}[data-lang-code^=hr]:after{background-position:-126px 0;content:''}[data-lang-code^=da]:after{background-position:-147px 0;content:''}[data-lang-code^=cs]:after{background-position:-168px 0;content:''}[data-lang-code^=et]:after{background-position:-189px 0;content:''}[data-lang-code^=fi]:after{background-position:0 -15px;content:''}[data-lang-code^=fr]:after{background-position:-21px -15px;content:''}[data-lang-code^=ka]:after{background-position:-42px -15px;content:''}[data-lang-code^=de]:after{background-position:-63px -15px;content:''}[data-lang-code^=el]:after{background-position:-84px -15px;content:''}[data-lang-code^=hu]:after{background-position:-105px -15px;content:''}[data-lang-code^=is]:after{background-position:-126px -15px;content:''}[data-lang-code^=hi]:after{background-position:-147px -15px;content:''}[data-lang-code^=id]:after{background-position:-168px -15px;content:''}[data-lang-code^=fa]:after{background-position:-189px -15px;content:''}[data-lang-code^=he]:after{background-position:0 -30px;content:''}[data-lang-code^=it]:after{background-position:-21px -30px;content:''}[data-lang-code^=ja]:after{background-position:-42px -30px;content:''}[data-lang-code^=ko]:after{background-position:-63px -30px;content:''}[data-lang-code^=lv]:after{background-position:-84px -30px;content:''}[data-lang-code^=lt]:after{background-position:-105px -30px;content:''}[data-lang-code^=ms]:after{background-position:-126px -30px;content:''}[data-lang-code^=nl]:after{background-position:-147px -30px;content:''}[data-lang-code^=no]:after{background-position:-168px -30px;content:''}[data-lang-code^=ur]:after{background-position:-189px -30px;content:''}[data-lang-code^=fil]:after{background-position:0 -45px;content:''}[data-lang-code^=pl]:after{background-position:-21px -45px;content:''}[data-lang-code^=ro]:after{background-position:-42px -45px;content:''}[data-lang-code^=ru]:after{background-position:-63px -45px;content:''}[data-lang-code^=ar]:after{background-position:-84px -45px;content:''}[data-lang-code^=sk]:after{background-position:-105px -45px;content:''}[data-lang-code^=sl]:after{background-position:-126px -45px;content:''}[data-lang-code^=es]:after{background-position:-147px -45px;content:''}[data-lang-code^=sv]:after{background-position:-168px -45px;content:''}[data-lang-code^=tr]:after{background-position:-189px -45px;content:''}[data-lang-code^=uk]:after{background-position:0 -60px;content:''}[data-lang-code^=en]:after{background-position:-21px -60px;content:''}[data-lang-code^=pt]:after{background-position:-84px -60px;content:''}[data-lang-code^=sr]:after{background-position:-126px -60px;content:''}[data-lang-code^=bn]:after{background-position:-147px -60px;content:''}[data-lang-code^=th]:after{background-position:-189px -60px;content:''}[data-lang-code^=en_US]:after{background-position:-21px -60px;content:''}[data-lang-code^=en_GB]:after{background-position:-63px -60px;content:''}[data-lang-code^=en_AU]:after{background-position:-168px -60px;content:''}[data-lang-code^=en_CA]:after{background-position:-105px -60px;content:''}[data-lang-code^=pt_BR]:after{background-position:-63px 0;content:''}[data-lang-code^=fr_CA]:after{background-position:-105px -60px;content:''}[data-lang-code^=fr_IC]:after{background-position:-42px -60px;content:''}.lang-menu{display:inline-block;margin-left:40px;vertical-align:top}@media screen and (max-width:1024px){.lang-menu{display:none}}.language-menu-mode-popover .lang-menu.menu-language-list{display:none}.lang-menu.menu-language-list .lang-title{display:inline-block}.lang-menu.menu-language-list .lang-title a{opacity:.7}.lang-menu.menu-language-list .lang-title a:hover{opacity:1}.lang-menu.menu-language-list .lang-title a.is-active{font-weight:400;opacity:1}.lang-menu.menu-language-list .menu-item-cms{display:inline-block;padding-left:5px}.lang-menu li{line-height:normal;display:block;text-align:right;text-transform:uppercase}.lang-menu li a{font-weight:400;color:rgba(0,0,0,.7)}.lang-menu li.menu-item-cms{padding-right:18px;padding-left:18px}.lang-menu li.menu-item-cms:last-child{padding-top:5px;padding-bottom:10px}.language-menu-mode-list .lang-menu li.menu-item-cms:last-child{padding-right:9px}#mobile-menu .lang-menu li.menu-item-cms:last-child{padding-top:0;padding-left:0}.lang-menu a.lang-flag{position:relative;display:block;text-align:right}.dark-background .lang-menu a.lang-flag,.light-background .lang-menu a.lang-flag{color:rgba(0,0,0,.7)}.dark-background .lang-menu a.lang-flag:hover,.light-background .lang-menu a.lang-flag:hover{color:#000}.language-names-enabled.language-flags-enabled .lang-menu a.lang-flag{padding:5px 40px 5px 13px}.language-menu-mode-popover.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag{padding:15px 32px 14px 13px}.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag{padding:15px 15px 8px 16px}.lang-menu a.lang-flag:after,.lang-menu a.lang-flag:before{left:12px}.language-menu-mode-popover .lang-menu a.lang-flag:after,.language-menu-mode-popover .lang-menu a.lang-flag:before{top:7px}.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag:after,.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag:before{left:5px}.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag:after,.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag:before,.language-menu-mode-list.language-names-enabled.language-flags-enabled .lang-menu a.lang-flag:after,.language-menu-mode-list.language-names-enabled.language-flags-enabled .lang-menu a.lang-flag:before{top:5px}.lang-menu a.lang-flag:after,.lang-menu a.lang-flag:before{right:12px;left:auto}.lang-menu a.edy-menu-langadd{padding:5px}.language-flags-disabled .lang-menu a.lang-flag{padding:5px 10px}.language-menu-mode-list.language-flags-disabled .lang-menu .lang-title:last-child a.lang-flag{padding-right:0}.lang-title{text-transform:uppercase;background-color:transparent}.lang-title a{text-transform:uppercase;background-color:transparent}.language-names-enabled .lang-title a{font-size:14px}.language-names-disabled .lang-title a{font-size:0}.lang-menu-btn{font-family:inherit;font-size:16px;position:relative;display:block;margin:0;padding:6px 3px;cursor:pointer;border:none;background:0 0;line-height:1}.language-flags-enabled .lang-menu-btn{width:21px;padding:13px 14px 13px 13px}.language-flags-enabled .lang-menu-btn .lang-title{display:none}.lang-menu-btn.lang-flag:after,.lang-menu-btn.lang-flag:before{top:6px;left:3px}.lang-menu-btn .lang-title-inner{position:relative;padding:5px 12px 5px 5px}.lang-menu-btn .lang-title-inner:after{position:absolute;top:50%;right:0;display:block;margin-top:-3px;width:0;height:0;content:"";border-style:solid;border-width:6px 3px 0 3px;border-color:#000 transparent transparent transparent}.dark-background .lang-menu-btn .lang-title-inner:after{border-color:#fff transparent transparent transparent}.lang-menu-popover{line-height:1;position:absolute;z-index:1;display:none;padding:5px 0;text-align:left;background-color:#fff;-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3)}.no-boxshadow .lang-menu-popover{border:1px solid #fff}.editmode .lang-menu-popover{padding-bottom:0}@media screen and (min-width:1025px){.menu-language-popover-open .lang-menu-popover{display:block}}.lang-menu-popover a:hover{background-color:rgba(0,0,0,.1)}.lang-menu-popover a.active{background-color:rgba(0,0,0,.2)}#footer-menu{padding:0 24px}#footer-menu.reset-touch{-webkit-overflow-scrolling:touch}@media screen and (max-width:640px){#footer-menu{padding-top:10px;padding-right:32px}}#footer-menu .toggle-sub-menu{top:14px;left:-14px}#footer-menu ul{margin:0;padding:0;list-style-type:none}#footer-menu ul li{position:relative;margin:0}#footer-menu ul a{line-height:1.3;padding:10px 0;text-transform:uppercase}#footer-menu ul a.untranslated{color:rgba(199,9,9,.7)}#footer-menu ul a.untranslated:hover{color:#c70909}#footer-menu .navigation-menu{word-break:break-all}#footer-menu .navigation-menu .with-children>a{margin-right:30px}#footer-menu .navigation-menu ul a{display:block}#footer-menu .navigation-menu ul a.visible{display:inline-block}#footer-menu .navigation-menu ul a.selected{font-weight:500;color:#000}#footer-menu .navigation-menu ul a.indented{margin-left:10px}#footer-menu .navigation-menu ul.current-menu>li:first-child>a{text-transform:uppercase}#footer-menu .navigation-menu ul.child-menu li a.edy-cbtn{display:inline!important}#footer-menu .navigation-menu .option-btn{padding:15px 0}#footer-menu .sub-menu a{text-transform:initial}#footer-menu .menu-level-2,#footer-menu .menu-level-3{display:none;padding-left:10px}#footer-menu .current-parent>.menu-level-2,#footer-menu .current-parent>.menu-level-3{display:block}#footer-menu .lang-menu{display:block;margin-top:20px;margin-left:0}#footer-menu .lang-menu ul{margin:0;padding:0}#footer-menu .lang-menu ul li{text-align:left}#footer-menu .lang-menu ul li a{padding:7px 0 5px;text-align:left}.site-search{margin-right:10px}.site-search .search-input{width:128px;padding:4px 5px 3px;font-size:16px;border-width:1px;border-style:solid;border-color:rgba(0,0,0,.53);border-radius:3px}.site-search .search-submit{position:relative;top:-1px}.search-label{display:none}.search{display:none;position:absolute;width:310px;height:50px;line-height:1}@media screen and (max-width:640px){.search{position:fixed;top:0;right:0;bottom:0;left:0;height:auto;width:auto;background-color:#f7f7f7}}.search.active{position:absolute;right:0;z-index:20;display:block}@media screen and (min-width:641px){.search.active{top:30px}}.search-middle{vertical-align:middle;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.search-inner{position:relative;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.1);box-shadow:0 2px 4px 0 rgba(0,0,0,.1)}.search-form{position:relative;z-index:20;background-color:#fff;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.1);box-shadow:0 2px 4px 0 rgba(0,0,0,.1)}@media screen and (max-width:640px){.search-form{padding-top:10px;padding-bottom:6px;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}}.search-form,.search-form.selected{margin:0 auto;border:none}@media screen and (min-width:641px){.search-form,.search-form.selected{max-width:400px}}.search-input{vertical-align:middle;width:100%;height:40px;margin:0;padding:0 55px 0 15px;font-family:inherit;font-size:16px;line-height:20px;color:#000;background:0 0;-webkit-box-sizing:border-box;box-sizing:border-box;border:none}@media screen and (max-width:640px){.search-open .search-input{padding:0 61px 0 42px}}.search-input::-ms-clear{display:none}.search-input::-webkit-input-placeholder{padding:2px 0 4px 0;line-height:1;color:rgba(0,0,0,.5)}.search-input:focus{outline:0}.search-btn,.search-submit{width:30px;height:50px;background-color:transparent}.no-svg .search-btn,.no-svg .search-submit{background-position:center;background-repeat:no-repeat;background-image:url(../images/ico-search-white.png)}.no-svg .light-background .search-btn,.no-svg .light-background .search-submit{background-image:url(../images/ico-search-black.png)}.search-submit{opacity:.5;position:absolute;top:0;right:25px;padding-top:2px;width:41px;background-size:32px;background-color:transparent}.search-submit:hover{opacity:1}.search-btn{z-index:21;vertical-align:middle;width:26px;height:26px;font-size:0}@media screen and (min-width:1025px){.search-btn{margin-left:28px}}@media screen and (max-width:1024px){.search-btn{margin-right:36px;top:-3px;position:relative}.search-active .search-btn{position:static}}.front-page .header-options .search-btn{top:1px}.content-page .header-options .search-btn{top:4px}.header-options .search-btn svg{fill:rgba(0,0,0,.7)}.front-page .header-options .search-btn svg{fill:#fff}.front-page .light-background .search-btn svg{fill:#000}.search-btn:hover svg{fill:rgba(0,0,0,.47)}.search-btn:focus{outline:0}@media screen and (max-width:640px){.content-page .header-options .search-btn{margin-right:35px}}@media screen and (max-width:640px){.search-open .search-open-btn{margin:0;position:absolute;top:16px;left:10px}.comments-open .search-open-btn{display:none}}.search-close-btn{position:absolute;right:0;width:auto;height:auto;margin:0;border-left:1px solid #eee}@media screen and (min-width:641px){.search-close-btn{top:8px;padding:8px 15px}}@media screen and (max-width:640px){.search-close-btn{top:10px;z-index:1000;padding:12px 20px}}.voog-search-modal{display:none;-webkit-box-sizing:border-box;box-sizing:border-box;z-index:999;width:100%;max-height:calc(100vh - 140px);margin:0 auto;background-color:#fff;-webkit-box-shadow:none;box-shadow:none;overflow:auto;-webkit-overflow-scrolling:touch;text-align:left}.voog-search-modal.no-content{padding:20px;color:#000}.voog-search-modal.search-results-active{display:block}@media screen and (min-width:641px){.voog-search-modal{max-width:400px}}.voog-search-modal-results h3{margin:0;font-size:16px;color:#000;font-weight:400;line-height:1.3}.voog-search-modal-results h3 a{text-decoration:none;color:#000}.voog-search-modal-results h3 a:hover{color:rgba(0,0,0,.8)}.voog-search-modal-results p{margin:5px 0 0;font-size:16px;line-height:24px;color:rgba(0,0,0,.7)}.voog-search-modal-results em{font-style:normal;background-color:rgba(249,236,90,.5);border-radius:2px;padding:0 2px}.voog-search-modal-result{padding:15px;border-top:rgba(0,0,0,.13) solid 1px}.voog-search-modal-result:first-of-type{border-top:1px solid transparent}.site-sidebar{float:left;vertical-align:top;width:220px;margin:50px 0 50px 40px}@media screen and (max-width:1024px){.site-sidebar{display:none}}@media screen and (min-width:1500px){.site-sidebar{width:20%}}.site-sidebar .sidebar-title{font-size:18px;font-weight:400;line-height:2;text-transform:uppercase;margin:0}@media screen and (max-width:1024px){.site-sidebar .sidebar-title{display:none}}.site-sidebar .sidebar-title a{color:#000}.dark-background .site-sidebar .sidebar-title a{color:#fff}.site-sidebar .submenu{margin-bottom:0;padding:0}.site-sidebar .submenu li,.site-sidebar .submenu ul{list-style:none}.site-sidebar .submenu li{font-size:18px;font-weight:300;line-height:1.7;margin:15px 0}.site-sidebar .submenu li:last-child{margin-bottom:0}@media screen and (max-width:1024px){.site-sidebar .submenu li{display:inline-block;margin-right:20px}}.site-sidebar .submenu a{color:#000;opacity:.5}.dark-background .site-sidebar .submenu a{color:#fff}.site-sidebar .submenu a:hover{opacity:1}.dark-background .site-sidebar .submenu a:hover{color:rgba(255,255,255,.8)}.site-sidebar .submenu a.untranslated{color:rgba(199,9,9,.7)}.site-sidebar .submenu a.untranslated:hover{color:#c70909}.site-sidebar .submenu .selected{font-weight:500;opacity:1}.dark-background .site-sidebar .submenu .selected{color:#fff}.dark-background .site-sidebar .submenu .selected:hover{color:#fff}.site-sidebar .submenu .submenu-lvl2{padding-left:25px}@media screen and (max-width:1024px){.site-sidebar .submenu .submenu-lvl2{display:none}}.site-sidebar .submenu .submenu-lvl2 li{font-size:16px;line-height:1.7;font-weight:300}.site-sidebar .submenu .submenu-lvl2 a{color:#000;opacity:1}.dark-background .site-sidebar .submenu .submenu-lvl2 a{color:#fff}.dark-background .site-sidebar .submenu .submenu-lvl2 a:hover{color:rgba(255,255,255,.5)}.site-sidebar .submenu .submenu-lvl2 a:hover{opacity:.5}.site-sidebar .submenu .submenu-lvl2 a.untranslated{color:rgba(199,9,9,.7)}.site-sidebar .submenu .submenu-lvl2 a.untranslated:hover{color:#c70909}.site-sidebar .submenu .submenu-lvl2 .selected{font-weight:500}.dark-background .site-sidebar .submenu .submenu-lvl2 .selected{color:#fff}.dark-background .site-sidebar .submenu .submenu-lvl2 .selected a:hover{color:#fff}.site-sidebar .submenu .submenu-lvl2 .selected a:hover{opacity:1}.content-item-boxes{margin-top:-15px;font-size:0;line-height:1.3}@media screen and (min-width:241px) and (max-width:640px){.content-item-boxes{margin-right:-10px;margin-left:-10px}}@media screen and (min-width:641px){.content-item-boxes{margin-right:-15px;margin-left:-15px}}.content-item-box{color:rgba(0,0,0,.8)}.item-list-page .content-item-box{-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:240px){.item-list-page .content-item-box{display:block}}@media screen and (min-width:241px){.item-list-page .content-item-box{display:inline-block;vertical-align:top}}@media screen and (min-width:241px) and (max-width:640px){.item-list-page .content-item-box{width:50%;padding:10px 10px 5px 10px}}@media screen and (min-width:641px){.item-list-page .content-item-box{width:33.3%;min-width:195px;padding:15px 2%}}.content-illustrations .content-item-box{margin-bottom:40px}.content-item-box .top-inner{opacity:1}.editmode .content-item-box .top-inner::after,.item-list-page .content-item-box .top-inner::after{position:absolute;top:0;right:0;bottom:0;left:0;display:block;background-color:#fff;content:'';opacity:0;-webkit-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.editmode .content-item-box:hover .top-inner::after,.item-list-page .content-item-box:hover .top-inner::after{opacity:.2}.content-items{padding-right:20px;padding-left:20px}@media screen and (max-width:640px){.content-items{margin-top:30px}}@media screen and (min-width:641px){.content-items{margin-top:100px}}.content-item{margin-bottom:15px}.item-top{position:relative}.item-top:before{display:block;content:'';width:100%;padding-top:100%}.item-top>.aspect-ratio-inner{position:absolute;top:0;right:0;bottom:0;left:0}[data-view-state=editmode] .item-top{cursor:pointer}.item-top:hover .btn,.item-top:hover .edy-img-drop-area-remove-image{opacity:1}.item-top .btn{padding:0;background-color:rgba(0,102,187,.3);border:0;opacity:0;-webkit-transition:background-color .5s,opacity .5s;-o-transition:background-color .5s,opacity .5s;transition:background-color .5s,opacity .5s}.item-top .btn:hover{background-color:#06b}.item-top .bg-crop-btn{height:45px;width:45px;position:absolute;top:0;left:0;z-index:9;margin-top:10px;margin-left:10px;cursor:pointer;border-radius:100%;color:#fff}.item-top .bg-crop-btn:focus{outline:0}.item-top .bg-crop-btn.is-visible{display:block}.item-top .bg-crop-btn.is-hidden,.without-image .item-top .bg-crop-btn{display:none}.item-top .edy-img-drop-area-remove-image{height:45px;width:45px;top:10px;right:10px;z-index:9;color:#fff;background-color:rgba(0,102,187,.3);border:0;opacity:0;-webkit-transition:background-color .5s,opacity .5s;-o-transition:background-color .5s,opacity .5s;transition:background-color .5s,opacity .5s}.item-top .edy-img-drop-area-remove-image:hover{background-color:#06b}.item-top .edy-img-drop-area-remove-image-ico{margin-top:-10px;margin-left:-8px}.item-top .top-inner{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-weight:300;line-height:1.2;text-align:center}.publicmode .item-top .top-inner{overflow:hidden}.publicmode .item-top .top-inner .image-landscape.not-cropped{width:100%;height:auto;max-width:100%}.publicmode .item-top .top-inner .image-landscape.is-cropped{width:auto;height:100%}.publicmode .item-top .top-inner .image-portrait.not-cropped{width:auto;height:100%;max-height:100%}.publicmode .item-top .top-inner .image-portrait.is-cropped{width:100%;height:auto}.publicmode .item-top .top-inner .image-square{width:100%;height:auto}.with-image .item-top .top-inner:not(.product-page-image){background-color:rgba(0,0,0,.02)}.without-image .item-top .top-inner{border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px}.product-content .item-top .top-inner .item-image{height:100%;width:100%;-o-object-fit:contain;object-fit:contain}@media screen and (max-width:240px){.item-top .top-inner{font-size:16px}}@media screen and (min-width:241px){.item-top .top-inner{font-size:13px}}@media screen and (min-width:291px){.item-top .top-inner{font-size:16px}}@media screen and (min-width:341px){.item-top .top-inner{font-size:20px}}@media screen and (min-width:1025px){.item-top .top-inner{font-size:30px}}.item-top .image-drop-area{background-position:center!important;background-repeat:no-repeat}.item-top .image-drop-area.not-cropped{background-size:contain}.item-top .image-drop-area:not(.active){border-color:rgba(0,0,0,.4);border-style:dashed;border-width:1px}.item-top .image-drop-area:not(.active):hover{border-style:solid}@media screen and (max-width:640px){.item-top .image-drop-area .edy-img-drop-area-placeholder{font-size:13px}}@media screen and (min-width:641px){.item-top .image-drop-area .edy-img-drop-area-placeholder{font-size:16px}}.item-image{border:0}.publicmode .item-image.is-cropped{position:absolute;top:-100%;right:-100%;bottom:-100%;left:-100%;max-width:none;margin:auto}.item-list-page .item-image{display:block}.item-placeholder{width:100%;padding:.5em;-webkit-box-sizing:border-box;box-sizing:border-box}.item-title{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;margin-top:0;margin-bottom:0;line-height:1.2;text-align:center}.item-title .item-link{color:inherit}.content-item-box .item-title .item-link{display:block}.item-list-page .item-title{font-weight:400}@media only screen and (-webkit-min-device-pixel-ratio:1.3),only screen and (-o-min-device-pixel-ratio:13 / 10),only screen and (-webkit-min-device-pixel-ratio:1.25),only screen and (-o-min-device-pixel-ratio:5/4),only screen and (min-resolution:120dpi){.item-list-page .item-title{font-weight:100}}@media screen and (max-width:640px){.content-item-box .item-title{font-size:13px}}@media screen and (min-width:641px){.content-item-box .item-title{font-size:16px}}@media screen and (max-width:640px){.content-item .item-title{font-size:16px}}@media screen and (min-width:641px){.content-item .item-title{font-size:30px}}@media screen and (max-width:640px){.blog-article-page .item-title{font-size:32px}}@media screen and (min-width:641px){.blog-article-page .item-title{font-size:50px}}.content-item-box>.item-title{margin-top:20px;margin-bottom:5px}@media screen and (min-width:641px){.content-illustrations{-webkit-box-flex:1;-ms-flex:1;flex:1;max-width:520px;margin-right:40px}}@media screen and (max-width:640px){.item-page .content-body:not(.product-content-right){padding-top:40px}}@media screen and (min-width:641px){.item-page .content-body:not(.product-content-right){-webkit-box-flex:1;-ms-flex:1;flex:1}}.items-body{padding-top:30px;padding-bottom:30px}@media screen and (min-width:641px){.items-body{display:-webkit-box;display:-ms-flexbox;display:flex}}.site-footer{position:relative;min-height:100px}.site-footer .inner{min-height:25px;padding-top:40px;padding-bottom:40px}.site-footer .dark-background .content-area a{color:#fff}.site-footer .voog-reference{opacity:.55;padding:0 0 40px;color:#000;text-align:center}.site-footer .voog-reference:hover{opacity:.8}.site-footer .voog-reference-with-padding{padding-top:40px}.site-footer .blog-article-nav{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;display:table;width:100%;background-color:#fff}@media screen and (max-width:640px){.site-footer .blog-article-nav{display:block}}.site-footer .blog-article-nav .article-nav-full,.site-footer .blog-article-nav .article-nav-half{position:relative;display:table-cell;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%;vertical-align:top;border-top:1px solid rgba(0,0,0,.1)}@media screen and (max-width:640px){.site-footer .blog-article-nav .article-nav-full,.site-footer .blog-article-nav .article-nav-half{display:block;width:100%}}.site-footer .blog-article-nav .article-nav-full:hover,.site-footer .blog-article-nav .article-nav-half:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.site-footer .blog-article-nav .article-nav-full:hover .article-nav-title,.site-footer .blog-article-nav .article-nav-half:hover .article-nav-title{opacity:1}.site-footer .blog-article-nav .article-nav-full:hover .article-nav-direction,.site-footer .blog-article-nav .article-nav-half:hover .article-nav-direction{opacity:.7}.site-footer .blog-article-nav .article-nav-full a,.site-footer .blog-article-nav .article-nav-half a{display:block;height:100%;padding:55px 50px}@media screen and (max-width:640px){.site-footer .blog-article-nav .article-nav-full a,.site-footer .blog-article-nav .article-nav-half a{padding:30px 20px;text-align:center}}.site-footer .blog-article-nav .article-nav-full{display:block;width:100%}.site-footer .blog-article-nav .article-nav-full a{text-align:center}.site-footer .blog-article-nav .article-nav-prev{text-align:right}.site-footer .blog-article-nav .article-nav-next{border-left:1px solid rgba(0,0,0,.1)}@media screen and (max-width:640px){.site-footer .blog-article-nav .article-nav-next{margin-left:0;border-top:1px solid rgba(0,0,0,.1);border-left:0}}.site-footer .blog-article-nav .article-nav-inner{display:inline-block;width:100%;max-width:400px}.site-footer .blog-article-nav .article-nav-direction{margin-bottom:3px;font-size:12px;font-weight:400;line-height:2;color:#000;opacity:.35;letter-spacing:1px;text-transform:uppercase}.site-footer .blog-article-nav .article-nav-title{font-size:24px;line-height:30px;color:#000;opacity:.7}.site-footer .blog-article-nav .article-nav-bg{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.site-footer .blog-article-nav.dark-background .article-nav-full,.site-footer .blog-article-nav.dark-background .article-nav-half{border-top:1px solid rgba(255,255,255,.1)}.site-footer .blog-article-nav.dark-background .article-nav-title{color:rgba(255,255,255,.7)}.site-footer .blog-article-nav.dark-background .article-nav-direction{color:rgba(255,255,255,.35)}.site-footer .blog-article-nav.dark-background .article-nav-next{border-left:1px solid rgba(255,255,255,.1)}@media screen and (max-width:640px){.site-footer .blog-article-nav.dark-background .article-nav-next{border-top:1px solid rgba(255,255,255,.1)}}@media screen and (max-width:640px){.comments-open .site-footer{display:none}}.site-footer .footer-body{display:-webkit-box;display:-ms-flexbox;display:flex}.site-footer .footer-body .voog-bg-picker-btn{top:-8px;left:34px}.site-footer .footer-body .footer-social-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.site-footer .footer-body .footer-social-wrap .footer-social{max-width:84px}.site-footer .footer-body .footer-social-wrap .footer-social .edy-content-social-buttons-list .edy-content-social-button{display:block;border-bottom:dotted 1px}.site-footer .footer-body .footer-social-wrap .footer-social .edy-content-social-buttons-list .edy-content-social-button:last-child{border-bottom:none}.site-footer .footer-body .footer-social-wrap .footer-social .edy-content-social-buttons-list svg{display:-webkit-box;display:-ms-flexbox;display:flex}.site-footer .footer-body .footer-content-wrap{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:640px){.site-footer .footer-body .footer-content-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.site-footer .footer-body .footer-content-wrap .footer-contact-wrap{width:50%;margin:24px 0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;border-left:dotted 1px #0083ba}@media screen and (max-width:1024px){.site-footer .footer-body .footer-content-wrap .footer-contact-wrap{width:60%}}@media screen and (max-width:640px){.site-footer .footer-body .footer-content-wrap .footer-contact-wrap{width:calc(100% - 24px);margin:0 0 24px 24px}}.site-footer .footer-body .footer-content-wrap .footer-contact-wrap .footer-contact{padding:0 24px;min-width:300px}@media screen and (max-width:640px){.site-footer .footer-body .footer-content-wrap .footer-contact-wrap .footer-contact{padding-right:32px;min-width:calc(100% - 108px)}}.site-footer .footer-body .footer-content-wrap .footer-menu-wrap{width:30%;margin:24px 0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;border-left:dotted 1px #0083ba}@media screen and (max-width:1024px){.site-footer .footer-body .footer-content-wrap .footer-menu-wrap{width:calc(40% - 24px);margin:24px 0 24px 24px}}@media screen and (max-width:640px){.site-footer .footer-body .footer-content-wrap .footer-menu-wrap{width:calc(100% - 24px)}}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap{width:20%}@media screen and (max-width:1024px){.site-footer .footer-body .footer-content-wrap .footer-logo-wrap{display:none}}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap.empty-hidden{display:none}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo{max-width:250px;margin:24px 0 24px 24px;margin-right:0;position:relative;position:relative}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo:before{display:block;content:'';width:100%;padding-top:50%}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo>.aspect-ratio-inner{position:absolute;top:0;right:0;bottom:0;left:0}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo .aspect-ratio-inner{background-size:contain;background-position:center!important;background-repeat:no-repeat}.signout-btn-wrap{position:fixed;right:5px;bottom:5px;z-index:10000;white-space:nowrap;background-color:#eee;height:35px;border-radius:3px;text-align:center;-webkit-box-shadow:0 1px 6px rgba(0,0,0,.5);box-shadow:0 1px 6px rgba(0,0,0,.5)}.signout-btn-wrap:hover{background-color:#c4c4c4}.signout-btn-wrap .signout-link{position:relative;z-index:10;display:block;padding:0 10px}.signout-btn-wrap .signout-name{display:inline-block;vertical-align:top;font-size:16px;font-weight:400;font-family:Roboto,sans-serif;line-height:37px;padding-left:8px;color:rgba(27,33,36,.8)}.signout-btn-wrap .signout-name:hover{color:rgba(27,33,36,.9)}.signout-btn-wrap .signout-ico{height:35px;display:inline-block;color:rgba(27,33,36,.7)}.signout-btn-wrap .signout-svg{margin-top:3px}.content-area{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;color:rgba(0,0,0,.7);font-size:18px;line-height:1.7}.content-area:empty{display:none}.dark-background .content-area{color:#fff}.site-footer .dark-background .content-area{color:#fff}.site-footer .content-area{text-align:center;font-size:16px;color:rgba(0,0,0,.7)}.content-area.footer-left{font-size:16px}.content-area.footer-right{font-size:16px}.content-area .edy-positionable-container-center-block:first-child,.content-area .edy-positionable-container-left-block:first-child,.content-area .edy-positionable-container-maxwidth:first-child,.content-area .edy-positionable-container-right-block:first-child,.content-area .edy-texteditor-container-wrapper-center:first-child,.content-area .edy-texteditor-container-wrapper-left-block:first-child,.content-area .edy-texteditor-container-wrapper-right-block:first-child,.content-area .table-container:first-child,.content-area code:first-child,.content-area dl:first-child,.content-area form:first-child,.content-area h1:first-child,.content-area h2:first-child,.content-area h3:first-child,.content-area h4:first-child,.content-area h5:first-child,.content-area h6:first-child,.content-area iframe:first-child,.content-area ol:first-child,.content-area p:first-child,.content-area pre:first-child,.content-area table:first-child,.content-area ul:first-child{margin-top:0}.content-area .edy-positionable-container-center-block:last-child,.content-area .edy-positionable-container-left-block:last-child,.content-area .edy-positionable-container-maxwidth:last-child,.content-area .edy-positionable-container-right-block:last-child,.content-area .edy-texteditor-container-wrapper-center:last-child,.content-area .edy-texteditor-container-wrapper-left-block:last-child,.content-area .edy-texteditor-container-wrapper-right-block:last-child,.content-area .table-container:last-child,.content-area code:last-child,.content-area dl:last-child,.content-area form:last-child,.content-area h1:last-child,.content-area h2:last-child,.content-area h3:last-child,.content-area h4:last-child,.content-area h5:last-child,.content-area h6:last-child,.content-area iframe:last-child,.content-area ol:last-child,.content-area p:last-child,.content-area pre:last-child,.content-area table:last-child,.content-area ul:last-child{margin-bottom:0}.dark-background .content-area code,.dark-background .content-area h1,.dark-background .content-area h2,.dark-background .content-area h3,.dark-background .content-area h4,.dark-background .content-area h5,.dark-background .content-area h6,.dark-background .content-area ol,.dark-background .content-area p,.dark-background .content-area pre,.dark-background .content-area table,.dark-background .content-area ul{color:#fff}.footer-inner.dark-background .content-area code,.footer-inner.dark-background .content-area h1,.footer-inner.dark-background .content-area h2,.footer-inner.dark-background .content-area h3,.footer-inner.dark-background .content-area h4,.footer-inner.dark-background .content-area h5,.footer-inner.dark-background .content-area h6,.footer-inner.dark-background .content-area ol,.footer-inner.dark-background .content-area p,.footer-inner.dark-background .content-area pre,.footer-inner.dark-background .content-area table,.footer-inner.dark-background .content-area ul{color:rgba(255,255,255,.5)}.content-area h1,.content-area h2,.content-area h3,.content-area h4,.content-area h5,.content-area h6{font-weight:300;color:#000;line-height:1.4}.content-area h1 a,.content-area h2 a,.content-area h3 a,.content-area h4 a,.content-area h5 a,.content-area h6 a{color:#000;text-decoration:none}.site-header .content-area h1:first-child,.site-header .content-area h2:first-child{margin-top:0}.site-header .content-area h1:last-child,.site-header .content-area h2:last-child{margin-bottom:0}.content-area h1{font-size:30px;font-weight:300}.site-header .content-area h1{margin-top:.3em;margin-bottom:.3em;text-transform:uppercase;font-size:70px;font-weight:300;line-height:1.1}.site-header .content-area h1.blog-title,.site-header .content-area h1.blog-title a{margin-top:.3em;margin-bottom:.3em;font-size:70px;font-style:normal;font-weight:300;line-height:1.1;text-align:center;text-decoration:none;text-transform:uppercase}@media screen and (max-width:640px){.site-header .content-area h1{font-size:30px}}.content-area h1.article-title{font-style:normal;text-decoration:none}.blog-article-page .content-area h1.article-title{text-align:center}.content-area h2{font-size:24px;line-height:1.4}@media screen and (max-width:640px){.content-area h2{font-size:24px}}.site-header .content-area h2{margin-top:.2em;margin-bottom:.2em}.contacts .content-area h3,.contacts .content-area h4,.contacts .content-area h5,.contacts .content-area h6{font-weight:400}.site-footer .content-area dl,.site-footer .content-area ol,.site-footer .content-area p,.site-footer .content-area ul{color:rgba(0,0,0,.7)}.site-footer .dark-background .content-area dl,.site-footer .dark-background .content-area ol,.site-footer .dark-background .content-area p,.site-footer .dark-background .content-area ul{color:#fff}.content-area dl,.content-area ol,.content-area ul{text-align:left}.content-area dl li,.content-area ol li,.content-area ul li{margin-top:10px}.content-area ul{list-style-type:none}.content-area ul li{position:relative}.content-area ul li:before{position:absolute;top:.2em;left:-15px;display:inline-block;vertical-align:middle;font-size:1em;font-weight:700;line-height:inherit;content:'°'}.content-area a{color:#000;text-decoration:underline;cursor:pointer}.content-area a:hover{text-decoration:none}.dark-background .content-area a{color:#fff}.content-area b,.content-area strong{font-weight:400;color:#000}.content-area code,.content-area form,.content-area iframe,.content-area pre,.content-area table{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;word-break:normal;word-wrap:normal}.content-area .edy-positionable-container-center-block,.content-area .edy-positionable-container-left-block,.content-area .edy-positionable-container-right-block,.content-area .embed-container,.content-area .table-container,.content-area pre,.editmode .content-area table{margin-top:30px;margin-bottom:30px}.content-area code,.content-area pre{font-size:16px;background-color:rgba(0,0,0,.1)}.content-area pre{overflow:auto;-webkit-overflow-scrolling:touch;padding:10px}.content-area pre code{display:inline;padding:0;white-space:pre;line-height:inherit;background-color:transparent;overflow-wrap:normal;word-wrap:normal;word-break:normal}.content-area code{display:inline-block;padding:5px;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all}.content-area blockquote{margin:20px 40px 20px 0;padding-left:20px;border-left:2px solid}.content-area iframe{max-width:100%}.map .content-area iframe{margin-top:0}.content-area .custom-btn,.content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{display:inline-block;background-color:#0083ba;border-color:#0083ba;-webkit-box-sizing:border-box;box-sizing:border-box;padding:6px 20px;text-transform:uppercase;font-size:16px;font-weight:700;line-height:1.7;text-align:center;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;text-decoration:none;border-radius:6px}.publicmode .content-area .custom-btn,.publicmode .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{cursor:pointer}.site-header .content-area .custom-btn,.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{margin-top:30px;margin-bottom:30px}.site-header .content-area .custom-btn:first-child,.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:first-child{margin-top:0}.site-header .content-area .custom-btn:last-child,.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:last-child{margin-bottom:0}.dark-background .content-area .custom-btn,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{border:2px solid #0083ba;background-color:#0083ba;color:#fff}.light-background .content-area .custom-btn,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{border:2px solid #0083ba;background-color:#0083ba;color:#fff}.dark-background .content-area .custom-btn-disabled,.dark-background .content-area .custom-btn.edy-buy-button-disabled,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled,.light-background .content-area .custom-btn-disabled,.light-background .content-area .custom-btn.edy-buy-button-disabled,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled{background-color:transparent}.dark-background .content-area .custom-btn-disabled,.dark-background .content-area .custom-btn-disabled:hover,.dark-background .content-area .custom-btn.edy-buy-button-disabled,.dark-background .content-area .custom-btn.edy-buy-button-disabled:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover,.light-background .content-area .custom-btn-disabled,.light-background .content-area .custom-btn-disabled:hover,.light-background .content-area .custom-btn.edy-buy-button-disabled,.light-background .content-area .custom-btn.edy-buy-button-disabled:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover{color:#999;cursor:default;border:2px solid #999}.dark-background .content-area .custom-btn-disabled:hover,.dark-background .content-area .custom-btn.edy-buy-button-disabled:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover,.light-background .content-area .custom-btn-disabled:hover,.light-background .content-area .custom-btn.edy-buy-button-disabled:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover{background-color:transparent}.content-area .custom-btn:hover,.content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.dark-background .content-area .custom-btn:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover{border:2px solid #015477;background-color:#015477;color:#fff}.light-background .content-area .custom-btn:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover{border:2px solid #015477;background-color:#015477;color:#fff}.content-area .contacts::first-line{color:red!important}.content-area .edy-positionable-container-left{margin-right:3%}.content-area .edy-positionable-container-right{margin-left:3%}.content-area .edy-image-container-with-title:after{display:block;padding:4px;font-size:13px;line-height:1.4em;content:attr(data-title)}.content-area .table-container{border-right:1px solid rgba(0,0,0,.1);border-left:1px solid rgba(0,0,0,.1)}.content .content-area .table-container{margin-bottom:35px}.content-area .overthrow{overflow:auto;-webkit-overflow-scrolling:touch}.contacts .content-area .overthrow{-webkit-overflow-scrolling:none}.content-area form{margin:20px 0}.content-area form:first-child{margin-top:0}.content-area table{width:100%;margin:0 auto;font-size:16px;border-collapse:collapse;border-spacing:0}.editmode .content .content-area table{margin-bottom:35px}.contacts .content-area table,.editmode .contacts .content-area table{margin-bottom:0}.content-area table td,.content-area table th{padding:9px 13px}.dark-background .content-area table td,.dark-background .content-area table th{border-color:#fff;border-style:solid;border-width:1px}.content-area table th{text-align:left;font-weight:400;color:#fff;background-color:#000;border-color:#000;border-style:solid;border-width:1px}.footer .content-area table th{color:rgba(255,255,255,.5)}.content-area table td{border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px}.dark-background .content-area table td{border-color:rgba(255,255,255,.1);border-style:solid;border-width:1px}.contacts .content-area table,.footer .content-area table{width:auto;border:none}.contacts .content-area table tr td,.footer .content-area table tr td{background:0 0}.contacts .content-area table tr td:first-child,.footer .content-area table tr td:first-child{padding-left:0;border-left:none}.contacts .content-area table tr td:last-child,.footer .content-area table tr td:last-child{padding-right:0}.contacts .content-area table{font-size:24px;line-height:1em}.contacts .content-area table tr td{padding:0 25px;color:rgba(0,0,0,.7);border-top:none;border-left:2px solid rgba(0,0,0,.2);border-right:none;border-bottom:none}@media screen and (max-width:984px){.contacts .content-area table{font-size:20px}}@media screen and (max-width:850px){.contacts .content-area table{font-size:16px}}.footer .content-area table tr td{padding:0 12px;border:none}.footer .content-area table tr td:last-child{padding-right:0}@media screen and (max-width:522px){.contacts .content-area table,.contacts .content-area table tbody,.contacts .content-area table tr,.footer .content-area table,.footer .content-area table tbody,.footer .content-area table tr{display:block}.contacts .content-area table tr td,.footer .content-area table tr td{width:100%;float:left;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.contacts .content-area table{line-height:inherit}.contacts .content-area table tr td{border-left:none;border-bottom:2px solid rgba(0,0,0,.2)}}.content-area .form,.content-area form{clear:both;font-size:16px}.content-area .form_field{padding-top:8px;padding-bottom:8px}.content-area .form_field:first-child{padding-top:0}.content-area .form_field:last-child{padding-bottom:0}.content-area .form_field .edy-fe-label,.content-area .form_field label{font-size:16px;position:relative;display:block;margin-bottom:5px}.content-area .form_field_required .form_field_label:after{content:'* \a'}.dark-background .content-area .form_field_checkbox+.form_control_indicator,.dark-background .content-area .form_field_radio+.form_control_indicator,.dark-background .content-area .form_field_select,.dark-background .content-area .form_field_textarea,.dark-background .content-area .form_field_textfield{background-color:rgba(255,255,255,.1)}.light-background .content-area .form_field_checkbox+.form_control_indicator,.light-background .content-area .form_field_radio+.form_control_indicator,.light-background .content-area .form_field_select,.light-background .content-area .form_field_textarea,.light-background .content-area .form_field_textfield{background-color:rgba(0,0,0,.03)}.content-area .form_field_select,.content-area .form_field_textarea,.content-area .form_field_textfield{font-size:16px;font-weight:300;line-height:26px;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:100%;padding:8px 13px;vertical-align:bottom;border-width:1px;border-style:solid;outline:0}.content-area .form_field_select::-webkit-input-placeholder,.content-area .form_field_textarea::-webkit-input-placeholder,.content-area .form_field_textfield::-webkit-input-placeholder{color:#000;opacity:.35}.content-area .form_field_select:-ms-input-placeholder,.content-area .form_field_textarea:-ms-input-placeholder,.content-area .form_field_textfield:-ms-input-placeholder{color:#000;opacity:.35}.content-area .form_field_select::-ms-input-placeholder,.content-area .form_field_textarea::-ms-input-placeholder,.content-area .form_field_textfield::-ms-input-placeholder{color:#000;opacity:.35}.content-area .form_field_select::placeholder,.content-area .form_field_textarea::placeholder,.content-area .form_field_textfield::placeholder{color:#000;opacity:.35}.dark-background .content-area .form_field_select,.dark-background .content-area .form_field_textarea,.dark-background .content-area .form_field_textfield{color:#fff;border-color:rgba(255,255,255,.3)}.light-background .content-area .form_field_select,.light-background .content-area .form_field_textarea,.light-background .content-area .form_field_textfield{color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.13)}.dark-background .content-area .form_field_select:focus,.dark-background .content-area .form_field_textarea:focus,.dark-background .content-area .form_field_textfield:focus{border-color:#fff}.light-background .content-area .form_field_select:focus,.light-background .content-area .form_field_textarea:focus,.light-background .content-area .form_field_textfield:focus{border-color:rgba(0,0,0,.35)}.content-area .form_field_select.form_field_size_small,.content-area .form_field_textarea.form_field_size_small,.content-area .form_field_textfield.form_field_size_small{width:280px}.content-area .form_field_select.form_field_size_medium,.content-area .form_field_textarea.form_field_size_medium,.content-area .form_field_textfield.form_field_size_medium{width:420px}.content-area .form_field_select.form_field_size_large,.content-area .form_field_textarea.form_field_size_large,.content-area .form_field_textfield.form_field_size_large{width:100%}.content-area .form_field_select{position:relative;padding-right:27px;background-repeat:no-repeat;background-position:right 10px center;-moz-appearance:none;-ms-appearance:none}.dark-background .content-area .form_field_select{background-image:url(../assets/ico-arrow-white.svg)}.light-background .content-area .form_field_select{background-image:url(../assets/ico-arrow.svg)}.content-area .form_field_select>option{background-color:#fff;color:#000}.content-area .form_field_select::-ms-expand{display:none}.content-area .form_field_select:after{position:absolute;top:0;right:15px;bottom:0;display:block;width:0;height:0;margin:auto 0;content:'';border-top:5px solid #ccc;border-right:5px solid transparent;border-left:5px solid transparent}.content-area .form_field_select.form_field_size_small{min-width:auto}.content-area .form_field_select.form_field_size_medium{min-width:124px}.content-area .form_field_select.form_field_size_large{min-width:184px}.svg .content-area .form_field_checkbox,.svg .content-area .form_field_radio{display:none}.svg .content-area .form_field_checkbox+.form_control_indicator,.svg .content-area .form_field_radio+.form_control_indicator{height:18px;width:18px;position:relative;display:inline-block;margin-right:10px;vertical-align:middle;border-width:1px;border-style:solid;border-color:rgba(0,0,0,.2)}.svg .dark-background .content-area .form_field_checkbox+.form_control_indicator,.svg .dark-background .content-area .form_field_radio+.form_control_indicator{border-color:rgba(255,255,255,.2)}.svg .content-area .form_field_radio+.form_control_indicator{top:-1px;border-radius:100%}.svg .content-area .form_field_radio+.form_control_indicator:before{height:12px;width:12px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .15s ease;transition:-webkit-transform .15s ease;-o-transition:transform .15s ease;transition:transform .15s ease;transition:transform .15s ease,-webkit-transform .15s ease;position:absolute;top:3px;left:3px;content:'';border-radius:100%;background-color:rgba(0,0,0,.4)}.svg .content-area .form_field_radio:checked+.form_control_indicator:before{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .15s ease;transition:-webkit-transform .15s ease;-o-transition:transform .15s ease;transition:transform .15s ease;transition:transform .15s ease,-webkit-transform .15s ease}.svg .dark-background .content-area .form_field_radio:checked+.form_control_indicator:before{background-color:rgba(255,255,255,.4)}.svg .content-area .form_field_checkbox+.form_control_indicator{top:-2px}.svg .content-area .form_field_checkbox+.form_control_indicator:before{-webkit-transform:scale(0) rotate(45deg);-ms-transform:scale(0) rotate(45deg);transform:scale(0) rotate(45deg);display:block;width:5px;height:10px;margin:1px 0 0 6px;content:'';-webkit-transition:-webkit-transform .15s ease 0s;transition:-webkit-transform .15s ease 0s;-o-transition:transform .15s ease 0s;transition:transform .15s ease 0s;transition:transform .15s ease 0s,-webkit-transform .15s ease 0s;border-width:0 2px 2px 0;border-style:none solid solid none;border-color:rgba(0,0,0,.4)}.svg .content-area .form_field_checkbox:checked+.form_control_indicator:before{-webkit-transform:scale(1) rotate(45deg);-ms-transform:scale(1) rotate(45deg);transform:scale(1) rotate(45deg);-webkit-transition:-webkit-transform .15s ease;transition:-webkit-transform .15s ease;-o-transition:transform .15s ease;transition:transform .15s ease;transition:transform .15s ease,-webkit-transform .15s ease}.svg .dark-background .content-area .form_field_checkbox+.form_control_indicator:before{border-color:rgba(255,255,255,.2)}.content-area .form_submit{margin-top:16px}.content-area .form_submit input{-webkit-appearance:none;border-radius:0;font-family:Roboto,sans-serif;font-size:16px;font-weight:400;line-height:2;padding:6px 20px;cursor:pointer;text-transform:uppercase;border:none;border-radius:6px}.content-area .form_submit input:hover{opacity:.7}.dark-background .content-area .form_submit input{border-color:#0083ba;background-color:#0083ba;color:#fff}.light-background .content-area .form_submit input{border-color:#0083ba;background-color:#0083ba;color:#fff}@media screen and (min-width:850px){.content-half .content-area .form_submit input{width:100%}}@media screen and (max-width:640px){.content-half .content-area .form_submit input{width:100%}}.content-area .form_submit input:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.content-area .form_submit input:focus{outline:0}.content-area .article-comments .form_submit input{width:100%}.content-area .form_error,.content-area .form_notice{font-size:22px;font-weight:300}.content-area .form_error,.content-area .form_field_error{color:red}.content-area .form_error{margin-bottom:20px;color:red}.content-area .form_field_with_errors .form_field_textarea,.content-area .form_field_with_errors .form_field_textfield{border:1px solid red}.content-area .form_field_error{font-size:16px}.content-area .form_notice{margin-bottom:20px;color:rgba(14,203,0,.7)}.content-area .edy-buy-button-container .form_field{padding:12px 0}.content-area .edy-buy-button-variants .form_field{padding-top:6px;padding-bottom:6px}.content-area .edy-buy-button-variants .form_field_select{width:initial} \ No newline at end of file +@charset "UTF-8";@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:0.001dpcm){img{image-rendering:-webkit-optimize-contrast!important}}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){img{image-rendering:unset!important}}}.accessibility-block-wrap{padding:16px;background-color:#222;display:none}.accessibility-open .accessibility-block-wrap{display:block}.accessibility-block-wrap .accessibility-block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;color:#fff;-ms-flex-wrap:wrap;flex-wrap:wrap}.accessibility-block-wrap .accessibility-block div{padding:16px 16px 0;width:25%;border-left:dotted 1px #0083ba}.accessibility-block-wrap .accessibility-block div .accessibility-input{display:block;padding:0}.accessibility-block-wrap .accessibility-block li::before{display:none}.accessibility-block-wrap .accessibility-button-wrap{color:#fff;margin:32px 16px 16px;text-align:center}.accessibility-block-wrap .accessibility-button-wrap .custom-btn{color:#fff}.accessibility-block-wrap .accessibility-button-wrap .custom-btn:hover{border-color:#015477;background-color:#015477}.accessibility-block-wrap .accessibility-button-wrap .custom-btn.accessibility-save{margin-left:16px}@media screen and (max-width:480px){.accessibility-block-wrap .accessibility-button-wrap .custom-btn.accessibility-save{margin-left:0;margin-top:16px}}.accessibility-block-wrap .accessibility-button-wrap .accessibility-close-button{position:absolute;right:16px;cursor:pointer}.accessibility-block-wrap .accessibility-button-wrap .accessibility-close-button:hover{opacity:.8}@media screen and (max-width:480px){.accessibility-block-wrap .accessibility-block div{width:100%;border-right:none}}.accessibility-block-wrap .form_field_checkbox+.form_control_indicator,.accessibility-block-wrap .form_field_radio+.form_control_indicator{background:#fff}.accessibility-menu-btn-wrap{font-weight:400;cursor:pointer;text-transform:uppercase}#mobile-menu .accessibility-menu-btn-wrap{margin-top:20px}.accessibility-menu-btn-wrap:hover{opacity:.8}.accessibility-menu-btn-wrap .accessibility-btn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:27px}.accessibility-colors footer,.accessibility-colors header,.accessibility-colors main{background-color:#000;color:#f9ec5a}.accessibility-colors footer .toggle-sub-menu,.accessibility-colors header .toggle-sub-menu,.accessibility-colors main .toggle-sub-menu{fill:#f9ec5a}.accessibility-colors .header-top{background-color:#000;color:#f9ec5a}.accessibility-colors .header-top.dark-background{color:#f9ec5a}.accessibility-colors .header-top.dark-background .header-title.content-area,.accessibility-colors .header-top.dark-background .lang-menu.menu-language-list .lang-title a,.accessibility-colors .header-top.dark-background a{color:#f9ec5a}.accessibility-colors .header-top.dark-background .header-title a,.accessibility-colors .header-top.dark-background .header-title a:hover{color:#f9ec5a}.accessibility-colors .header-top.dark-background .menu li a{color:#f9ec5a}.accessibility-colors .header-top.dark-background .menu li a:hover{color:#f9ec5a}.accessibility-colors .header-top.dark-background .menu li.selected a{color:#f9ec5a}.accessibility-colors .header-top.dark-background .mobile-menu-toggler span,.accessibility-colors .header-top.dark-background .mobile-menu-toggler span:after,.accessibility-colors .header-top.dark-background .mobile-menu-toggler span:before{background-color:#f9ec5a}.accessibility-colors .header-top.light-background{color:#f9ec5a}.accessibility-colors .header-top.light-background .header-title.content-area,.accessibility-colors .header-top.light-background .lang-menu.menu-language-list .lang-title a,.accessibility-colors .header-top.light-background a{color:#f9ec5a}.accessibility-colors .header-top.light-background .header-title a,.accessibility-colors .header-top.light-background .header-title a:hover{color:#f9ec5a}.accessibility-colors .header-top.light-background .menu li a{color:#f9ec5a}.accessibility-colors .header-top.light-background .menu li a:hover{color:#f9ec5a}.accessibility-colors .header-top.light-background .menu li.selected a{color:#f9ec5a}.accessibility-colors .header-top.light-background .mobile-menu-toggler span,.accessibility-colors .header-top.light-background .mobile-menu-toggler span:after,.accessibility-colors .header-top.light-background .mobile-menu-toggler span:before{background-color:#f9ec5a}.accessibility-colors .toggle-sub-menu svg{fill:#f9ec5a}.accessibility-colors .site-sidebar .sidebar-title a{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .sidebar-title a{color:#f9ec5a}.accessibility-colors .site-sidebar .submenu a{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .submenu a{color:#f9ec5a}.accessibility-colors .site-sidebar .submenu .selected{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .submenu .selected{color:#f9ec5a}.accessibility-colors .site-sidebar .submenu .submenu-lvl2 a{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .submenu .submenu-lvl2 a{color:#f9ec5a}.dark-background .accessibility-colors .site-sidebar .submenu .submenu-lvl2 .selected{color:#f9ec5a}.accessibility-colors .site-footer .dark-background a,.accessibility-colors .site-footer .dark-background b,.accessibility-colors .site-footer .dark-background dl,.accessibility-colors .site-footer .dark-background h1,.accessibility-colors .site-footer .dark-background h2,.accessibility-colors .site-footer .dark-background h3,.accessibility-colors .site-footer .dark-background h4,.accessibility-colors .site-footer .dark-background h5,.accessibility-colors .site-footer .dark-background h6,.accessibility-colors .site-footer .dark-background ol,.accessibility-colors .site-footer .dark-background p,.accessibility-colors .site-footer .dark-background pre,.accessibility-colors .site-footer .dark-background table,.accessibility-colors .site-footer .dark-background ul,.accessibility-colors .site-footer .light-background a,.accessibility-colors .site-footer .light-background b,.accessibility-colors .site-footer .light-background dl,.accessibility-colors .site-footer .light-background h1,.accessibility-colors .site-footer .light-background h2,.accessibility-colors .site-footer .light-background h3,.accessibility-colors .site-footer .light-background h4,.accessibility-colors .site-footer .light-background h5,.accessibility-colors .site-footer .light-background h6,.accessibility-colors .site-footer .light-background ol,.accessibility-colors .site-footer .light-background p,.accessibility-colors .site-footer .light-background pre,.accessibility-colors .site-footer .light-background table,.accessibility-colors .site-footer .light-background ul,.accessibility-colors .site-header .dark-background a,.accessibility-colors .site-header .dark-background b,.accessibility-colors .site-header .dark-background dl,.accessibility-colors .site-header .dark-background h1,.accessibility-colors .site-header .dark-background h2,.accessibility-colors .site-header .dark-background h3,.accessibility-colors .site-header .dark-background h4,.accessibility-colors .site-header .dark-background h5,.accessibility-colors .site-header .dark-background h6,.accessibility-colors .site-header .dark-background ol,.accessibility-colors .site-header .dark-background p,.accessibility-colors .site-header .dark-background pre,.accessibility-colors .site-header .dark-background table,.accessibility-colors .site-header .dark-background ul,.accessibility-colors .site-header .light-background a,.accessibility-colors .site-header .light-background b,.accessibility-colors .site-header .light-background dl,.accessibility-colors .site-header .light-background h1,.accessibility-colors .site-header .light-background h2,.accessibility-colors .site-header .light-background h3,.accessibility-colors .site-header .light-background h4,.accessibility-colors .site-header .light-background h5,.accessibility-colors .site-header .light-background h6,.accessibility-colors .site-header .light-background ol,.accessibility-colors .site-header .light-background p,.accessibility-colors .site-header .light-background pre,.accessibility-colors .site-header .light-background table,.accessibility-colors .site-header .light-background ul{color:#f9ec5a}.accessibility-colors .site-footer .dark-background .header-title a,.accessibility-colors .site-footer .dark-background .header-title a:hover,.accessibility-colors .site-footer .light-background .header-title a,.accessibility-colors .site-footer .light-background .header-title a:hover,.accessibility-colors .site-header .dark-background .header-title a,.accessibility-colors .site-header .dark-background .header-title a:hover,.accessibility-colors .site-header .light-background .header-title a,.accessibility-colors .site-header .light-background .header-title a:hover{color:#f9ec5a}.accessibility-colors .site-footer .dark-background .menu li a,.accessibility-colors .site-footer .light-background .menu li a,.accessibility-colors .site-header .dark-background .menu li a,.accessibility-colors .site-header .light-background .menu li a{color:#f9ec5a}.accessibility-colors .site-footer .dark-background .menu li a:hover,.accessibility-colors .site-footer .light-background .menu li a:hover,.accessibility-colors .site-header .dark-background .menu li a:hover,.accessibility-colors .site-header .light-background .menu li a:hover{color:#f9ec5a;opacity:.6}.accessibility-colors .site-footer .dark-background .menu li.selected a,.accessibility-colors .site-footer .light-background .menu li.selected a,.accessibility-colors .site-header .dark-background .menu li.selected a,.accessibility-colors .site-header .light-background .menu li.selected a{color:#f9ec5a}.accessibility-colors .site-footer .footer-menu,.accessibility-colors .site-header .footer-menu{background-color:#000;color:#f9ec5a}.accessibility-colors .site-footer .footer-body .footer-content-wrap .footer-contact-wrap,.accessibility-colors .site-footer .footer-body .footer-content-wrap .footer-menu-wrap,.accessibility-colors .site-header .footer-body .footer-content-wrap .footer-contact-wrap,.accessibility-colors .site-header .footer-body .footer-content-wrap .footer-menu-wrap{border-left-color:#f9ec5a}.accessibility-colors .site-footer .blog-article-nav,.accessibility-colors .site-header .blog-article-nav{background-color:#000;color:#f9ec5a}.accessibility-colors .site-footer .blog-article-nav .article-nav-direction,.accessibility-colors .site-header .blog-article-nav .article-nav-direction{background-color:#000;color:#f9ec5a}.accessibility-colors .page-body .background-color{background-color:#000}.accessibility-colors .search .search-inner{border:1px solid #f9ec5a}.accessibility-colors .search .search-inner .voog-search-modal,.accessibility-colors .search .search-inner input{border:1px solid #f9ec5a;background-color:#000;color:#f9ec5a}.accessibility-colors .search .search-inner .voog-search-modal .voog-search-modal-result,.accessibility-colors .search .search-inner input .voog-search-modal-result{border-top:#f9ec5a}.accessibility-colors .search .search-inner .search-btn{border-color:#f9ec5a}.accessibility-colors .search .search-inner svg path{fill:#f9ec5a}.accessibility-colors .article-comments,.accessibility-colors .blog-article-page,.accessibility-colors .blog-news-page,.accessibility-colors .blog-tags{background-color:#000;color:#f9ec5a}.accessibility-colors .article-comments .tags-title,.accessibility-colors .blog-article-page .tags-title,.accessibility-colors .blog-news-page .tags-title,.accessibility-colors .blog-tags .tags-title{color:#f9ec5a}.accessibility-colors .article-comments .comments-close .btn-close,.accessibility-colors .blog-article-page .comments-close .btn-close,.accessibility-colors .blog-news-page .comments-close .btn-close,.accessibility-colors .blog-tags .comments-close .btn-close{background-color:#000;color:#f9ec5a}.accessibility-colors .article-comments .comments-close .btn-close .ico-close,.accessibility-colors .blog-article-page .comments-close .btn-close .ico-close,.accessibility-colors .blog-news-page .comments-close .btn-close .ico-close,.accessibility-colors .blog-tags .comments-close .btn-close .ico-close{fill:#f9ec5a}.accessibility-colors .article-comments .dark-background .article-author,.accessibility-colors .article-comments .dark-background .article-date,.accessibility-colors .article-comments .dark-background .comments-title,.accessibility-colors .article-comments .light-background .article-author,.accessibility-colors .article-comments .light-background .article-date,.accessibility-colors .article-comments .light-background .comments-title,.accessibility-colors .blog-article-page .dark-background .article-author,.accessibility-colors .blog-article-page .dark-background .article-date,.accessibility-colors .blog-article-page .dark-background .comments-title,.accessibility-colors .blog-article-page .light-background .article-author,.accessibility-colors .blog-article-page .light-background .article-date,.accessibility-colors .blog-article-page .light-background .comments-title,.accessibility-colors .blog-news-page .dark-background .article-author,.accessibility-colors .blog-news-page .dark-background .article-date,.accessibility-colors .blog-news-page .dark-background .comments-title,.accessibility-colors .blog-news-page .light-background .article-author,.accessibility-colors .blog-news-page .light-background .article-date,.accessibility-colors .blog-news-page .light-background .comments-title,.accessibility-colors .blog-tags .dark-background .article-author,.accessibility-colors .blog-tags .dark-background .article-date,.accessibility-colors .blog-tags .dark-background .comments-title,.accessibility-colors .blog-tags .light-background .article-author,.accessibility-colors .blog-tags .light-background .article-date,.accessibility-colors .blog-tags .light-background .comments-title{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment .comment-author,.accessibility-colors .article-comments .dark-background .comment .comment-body,.accessibility-colors .article-comments .dark-background .comment .comment-date,.accessibility-colors .article-comments .light-background .comment .comment-author,.accessibility-colors .article-comments .light-background .comment .comment-body,.accessibility-colors .article-comments .light-background .comment .comment-date,.accessibility-colors .blog-article-page .dark-background .comment .comment-author,.accessibility-colors .blog-article-page .dark-background .comment .comment-body,.accessibility-colors .blog-article-page .dark-background .comment .comment-date,.accessibility-colors .blog-article-page .light-background .comment .comment-author,.accessibility-colors .blog-article-page .light-background .comment .comment-body,.accessibility-colors .blog-article-page .light-background .comment .comment-date,.accessibility-colors .blog-news-page .dark-background .comment .comment-author,.accessibility-colors .blog-news-page .dark-background .comment .comment-body,.accessibility-colors .blog-news-page .dark-background .comment .comment-date,.accessibility-colors .blog-news-page .light-background .comment .comment-author,.accessibility-colors .blog-news-page .light-background .comment .comment-body,.accessibility-colors .blog-news-page .light-background .comment .comment-date,.accessibility-colors .blog-tags .dark-background .comment .comment-author,.accessibility-colors .blog-tags .dark-background .comment .comment-body,.accessibility-colors .blog-tags .dark-background .comment .comment-date,.accessibility-colors .blog-tags .light-background .comment .comment-author,.accessibility-colors .blog-tags .light-background .comment .comment-body,.accessibility-colors .blog-tags .light-background .comment .comment-date{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .article-comments .dark-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form textarea::-webkit-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form input::-webkit-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form textarea::-webkit-input-placeholder{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment-form input:-ms-input-placeholder,.accessibility-colors .article-comments .dark-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form input:-ms-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form textarea:-ms-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form input:-ms-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form textarea:-ms-input-placeholder{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment-form input::-ms-input-placeholder,.accessibility-colors .article-comments .dark-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form input::-ms-input-placeholder,.accessibility-colors .article-comments .light-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-article-page .light-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-news-page .light-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-tags .dark-background .comment-form textarea::-ms-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form input::-ms-input-placeholder,.accessibility-colors .blog-tags .light-background .comment-form textarea::-ms-input-placeholder{color:#f9ec5a}.accessibility-colors .article-comments .dark-background .comment-form input::placeholder,.accessibility-colors .article-comments .dark-background .comment-form textarea::placeholder,.accessibility-colors .article-comments .light-background .comment-form input::placeholder,.accessibility-colors .article-comments .light-background .comment-form textarea::placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form input::placeholder,.accessibility-colors .blog-article-page .dark-background .comment-form textarea::placeholder,.accessibility-colors .blog-article-page .light-background .comment-form input::placeholder,.accessibility-colors .blog-article-page .light-background .comment-form textarea::placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form input::placeholder,.accessibility-colors .blog-news-page .dark-background .comment-form textarea::placeholder,.accessibility-colors .blog-news-page .light-background .comment-form input::placeholder,.accessibility-colors .blog-news-page .light-background .comment-form textarea::placeholder,.accessibility-colors .blog-tags .dark-background .comment-form input::placeholder,.accessibility-colors .blog-tags .dark-background .comment-form textarea::placeholder,.accessibility-colors .blog-tags .light-background .comment-form input::placeholder,.accessibility-colors .blog-tags .light-background .comment-form textarea::placeholder{color:#f9ec5a}.accessibility-colors .article-comments .edy-tag-holder,.accessibility-colors .blog-article-page .edy-tag-holder,.accessibility-colors .blog-news-page .edy-tag-holder,.accessibility-colors .blog-tags .edy-tag-holder{color:#f9ec5a;background-color:#000;border:1px solid #f9ec5a}.accessibility-colors .edy-cbtn-content{color:#f9ec5a!important}.accessibility-colors .blog-tags .menu .menu-link{color:#f9ec5a}.accessibility-colors .dark-background,.accessibility-colors .light-background{color:#f9ec5a;background-color:#000}.accessibility-colors .dark-background a,.accessibility-colors .dark-background b,.accessibility-colors .dark-background dl,.accessibility-colors .dark-background h1,.accessibility-colors .dark-background h2,.accessibility-colors .dark-background h3,.accessibility-colors .dark-background h4,.accessibility-colors .dark-background h5,.accessibility-colors .dark-background h6,.accessibility-colors .dark-background ol,.accessibility-colors .dark-background p,.accessibility-colors .dark-background pre,.accessibility-colors .dark-background table,.accessibility-colors .dark-background ul,.accessibility-colors .light-background a,.accessibility-colors .light-background b,.accessibility-colors .light-background dl,.accessibility-colors .light-background h1,.accessibility-colors .light-background h2,.accessibility-colors .light-background h3,.accessibility-colors .light-background h4,.accessibility-colors .light-background h5,.accessibility-colors .light-background h6,.accessibility-colors .light-background ol,.accessibility-colors .light-background p,.accessibility-colors .light-background pre,.accessibility-colors .light-background table,.accessibility-colors .light-background ul{color:#f9ec5a}.accessibility-colors .dark-background .mobile-menu-toggler span,.accessibility-colors .dark-background .mobile-menu-toggler span:after,.accessibility-colors .dark-background .mobile-menu-toggler span:before,.accessibility-colors .light-background .mobile-menu-toggler span,.accessibility-colors .light-background .mobile-menu-toggler span:after,.accessibility-colors .light-background .mobile-menu-toggler span:before{background-color:#f9ec5a}.accessibility-colors .dark-background .content-area,.accessibility-colors .light-background .content-area{color:#f9ec5a}.accessibility-colors .dark-background .content-area a,.accessibility-colors .dark-background .content-area b,.accessibility-colors .dark-background .content-area dl,.accessibility-colors .dark-background .content-area h1,.accessibility-colors .dark-background .content-area h2,.accessibility-colors .dark-background .content-area h3,.accessibility-colors .dark-background .content-area h4,.accessibility-colors .dark-background .content-area h5,.accessibility-colors .dark-background .content-area h6,.accessibility-colors .dark-background .content-area ol,.accessibility-colors .dark-background .content-area p,.accessibility-colors .dark-background .content-area pre,.accessibility-colors .dark-background .content-area strong,.accessibility-colors .dark-background .content-area table,.accessibility-colors .dark-background .content-area ul,.accessibility-colors .light-background .content-area a,.accessibility-colors .light-background .content-area b,.accessibility-colors .light-background .content-area dl,.accessibility-colors .light-background .content-area h1,.accessibility-colors .light-background .content-area h2,.accessibility-colors .light-background .content-area h3,.accessibility-colors .light-background .content-area h4,.accessibility-colors .light-background .content-area h5,.accessibility-colors .light-background .content-area h6,.accessibility-colors .light-background .content-area ol,.accessibility-colors .light-background .content-area p,.accessibility-colors .light-background .content-area pre,.accessibility-colors .light-background .content-area strong,.accessibility-colors .light-background .content-area table,.accessibility-colors .light-background .content-area ul{color:#f9ec5a}.accessibility-colors .dark-background .content-area a.custom-btn,.accessibility-colors .dark-background .content-area b.custom-btn,.accessibility-colors .dark-background .content-area dl.custom-btn,.accessibility-colors .dark-background .content-area h1.custom-btn,.accessibility-colors .dark-background .content-area h2.custom-btn,.accessibility-colors .dark-background .content-area h3.custom-btn,.accessibility-colors .dark-background .content-area h4.custom-btn,.accessibility-colors .dark-background .content-area h5.custom-btn,.accessibility-colors .dark-background .content-area h6.custom-btn,.accessibility-colors .dark-background .content-area ol.custom-btn,.accessibility-colors .dark-background .content-area p.custom-btn,.accessibility-colors .dark-background .content-area pre.custom-btn,.accessibility-colors .dark-background .content-area strong.custom-btn,.accessibility-colors .dark-background .content-area table.custom-btn,.accessibility-colors .dark-background .content-area ul.custom-btn,.accessibility-colors .light-background .content-area a.custom-btn,.accessibility-colors .light-background .content-area b.custom-btn,.accessibility-colors .light-background .content-area dl.custom-btn,.accessibility-colors .light-background .content-area h1.custom-btn,.accessibility-colors .light-background .content-area h2.custom-btn,.accessibility-colors .light-background .content-area h3.custom-btn,.accessibility-colors .light-background .content-area h4.custom-btn,.accessibility-colors .light-background .content-area h5.custom-btn,.accessibility-colors .light-background .content-area h6.custom-btn,.accessibility-colors .light-background .content-area ol.custom-btn,.accessibility-colors .light-background .content-area p.custom-btn,.accessibility-colors .light-background .content-area pre.custom-btn,.accessibility-colors .light-background .content-area strong.custom-btn,.accessibility-colors .light-background .content-area table.custom-btn,.accessibility-colors .light-background .content-area ul.custom-btn{color:#f9ec5a;border-color:#f9ec5a;background-color:#000}.accessibility-colors .dark-background .content-area a.custom-btn:hover,.accessibility-colors .dark-background .content-area b.custom-btn:hover,.accessibility-colors .dark-background .content-area dl.custom-btn:hover,.accessibility-colors .dark-background .content-area h1.custom-btn:hover,.accessibility-colors .dark-background .content-area h2.custom-btn:hover,.accessibility-colors .dark-background .content-area h3.custom-btn:hover,.accessibility-colors .dark-background .content-area h4.custom-btn:hover,.accessibility-colors .dark-background .content-area h5.custom-btn:hover,.accessibility-colors .dark-background .content-area h6.custom-btn:hover,.accessibility-colors .dark-background .content-area ol.custom-btn:hover,.accessibility-colors .dark-background .content-area p.custom-btn:hover,.accessibility-colors .dark-background .content-area pre.custom-btn:hover,.accessibility-colors .dark-background .content-area strong.custom-btn:hover,.accessibility-colors .dark-background .content-area table.custom-btn:hover,.accessibility-colors .dark-background .content-area ul.custom-btn:hover,.accessibility-colors .light-background .content-area a.custom-btn:hover,.accessibility-colors .light-background .content-area b.custom-btn:hover,.accessibility-colors .light-background .content-area dl.custom-btn:hover,.accessibility-colors .light-background .content-area h1.custom-btn:hover,.accessibility-colors .light-background .content-area h2.custom-btn:hover,.accessibility-colors .light-background .content-area h3.custom-btn:hover,.accessibility-colors .light-background .content-area h4.custom-btn:hover,.accessibility-colors .light-background .content-area h5.custom-btn:hover,.accessibility-colors .light-background .content-area h6.custom-btn:hover,.accessibility-colors .light-background .content-area ol.custom-btn:hover,.accessibility-colors .light-background .content-area p.custom-btn:hover,.accessibility-colors .light-background .content-area pre.custom-btn:hover,.accessibility-colors .light-background .content-area strong.custom-btn:hover,.accessibility-colors .light-background .content-area table.custom-btn:hover,.accessibility-colors .light-background .content-area ul.custom-btn:hover{background-color:#222;border-color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_submit,.accessibility-colors .light-background .content-area .form_submit{color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_submit input,.accessibility-colors .light-background .content-area .form_submit input{color:#f9ec5a}.accessibility-colors .dark-background .content-area table td,.accessibility-colors .dark-background .content-area table th,.accessibility-colors .light-background .content-area table td,.accessibility-colors .light-background .content-area table th{border-color:#f9ec5a;color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_field .edy-fe-label,.accessibility-colors .dark-background .content-area .form_field .form_field_label,.accessibility-colors .light-background .content-area .form_field .edy-fe-label,.accessibility-colors .light-background .content-area .form_field .form_field_label{border-color:#f9ec5a;color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_field_textarea,.accessibility-colors .dark-background .content-area .form_field_textfield,.accessibility-colors .dark-background .content-area label:not(.form_field_label),.accessibility-colors .light-background .content-area .form_field_textarea,.accessibility-colors .light-background .content-area .form_field_textfield,.accessibility-colors .light-background .content-area label:not(.form_field_label){border-color:#f9ec5a;color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_submit input,.accessibility-colors .light-background .content-area .form_submit input{background-color:#000;border:2px solid #f9ec5a;color:#f9ec5a}.accessibility-colors .dark-background .content-area .form_submit input:hover,.accessibility-colors .light-background .content-area .form_submit input:hover{background-color:#222;border:2px solid #f9ec5a}.accessibility-colors .dark-background .content-area .form_field_checkbox+.form_control_indicator,.accessibility-colors .dark-background .content-area .form_field_radio+.form_control_indicator,.accessibility-colors .light-background .content-area .form_field_checkbox+.form_control_indicator,.accessibility-colors .light-background .content-area .form_field_radio+.form_control_indicator{background-color:#f9ec5a}.accessibility-colors .dark-background .content-area .custom-btn,.accessibility-colors .light-background .content-area .custom-btn{color:#f9ec5a;border-color:#f9ec5a;background-color:#000}.accessibility-colors .dark-background .content-area .custom-btn:hover,.accessibility-colors .light-background .content-area .custom-btn:hover{background-color:#222;border-color:#f9ec5a}.accessibility-colors .dark-background .header-title a,.accessibility-colors .dark-background .header-title a:hover,.accessibility-colors .light-background .header-title a,.accessibility-colors .light-background .header-title a:hover{color:#f9ec5a}.accessibility-colors .dark-background .menu li a:not(.untranslated),.accessibility-colors .light-background .menu li a:not(.untranslated){color:#f9ec5a}.accessibility-colors .dark-background .menu li.selected a,.accessibility-colors .light-background .menu li.selected a{color:#f9ec5a}.accessibility-colors .dark-background .lang-title,.accessibility-colors .light-background .lang-title{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu.menu-language-list .lang-title a,.accessibility-colors .light-background .lang-menu.menu-language-list .lang-title a{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu.menu-language-list .lang-title a.is-active,.accessibility-colors .dark-background .lang-menu.menu-language-list .lang-title a:hover,.accessibility-colors .light-background .lang-menu.menu-language-list .lang-title a.is-active,.accessibility-colors .light-background .lang-menu.menu-language-list .lang-title a:hover{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu.menu-language-list .lang-title a.selected,.accessibility-colors .light-background .lang-menu.menu-language-list .lang-title a.selected{color:#f9ec5a}.accessibility-colors .dark-background .voog-reference svg path,.accessibility-colors .light-background .voog-reference svg path{fill:#f9ec5a}.accessibility-colors .dark-background .site-options .search-btn svg path,.accessibility-colors .light-background .site-options .search-btn svg path{fill:#f9ec5a}@media screen and (max-width:640px){.search-open .accessibility-colors .dark-background .site-options .search-btn svg path,.search-open .accessibility-colors .light-background .site-options .search-btn svg path{fill:#f9ec5a}}.accessibility-colors .menu-main{color:#f9ec5a}@media screen and (max-width:1024px){.accessibility-colors .mobile-menu-toggler span,.accessibility-colors .mobile-menu-toggler span:after,.accessibility-colors .mobile-menu-toggler span:before{background-color:#000}.dark-background .accessibility-colors .mobile-menu-toggler span,.dark-background .accessibility-colors .mobile-menu-toggler span:after,.dark-background .accessibility-colors .mobile-menu-toggler span:before{background-color:#000}.language-flags-disabled .accessibility-colors .mobile-menu-toggler span .lang-menu-btn .lang-title,.language-flags-disabled .accessibility-colors .mobile-menu-toggler span:after .lang-menu-btn .lang-title,.language-flags-disabled .accessibility-colors .mobile-menu-toggler span:before .lang-menu-btn .lang-title{color:#f9ec5a}.accessibility-colors #mobile-menu{color:#f9ec5a;background-color:#000}.accessibility-colors #mobile-menu .search-open-btn svg{fill:#f9ec5a}.accessibility-colors #mobile-menu ul a,.accessibility-colors #mobile-menu ul li{color:#f9ec5a}.accessibility-colors #mobile-menu .navigation-menu ul a.selected{color:#f9ec5a}.accessibility-colors #mobile-menu .lang-menu ul li a.is-active{color:#f9ec5a}}.accessibility-colors .lang-flag:before{background-color:#000}.lang-menu.menu-language-list .lang-title a.is-active{color:#f9ec5a}.lang-menu li a{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu a.lang-flag{color:#f9ec5a}.accessibility-colors .dark-background .lang-menu a.lang-flag:hover{color:#f9ec5a}.lang-menu-btn .lang-title-inner:after{border-color:#f9ec5a transparent transparent transparent}.accessibility-colors .dark-background .lang-menu-btn .lang-title-inner:after{border-color:#f9ec5a transparent transparent transparent}.accessibility-size-large .accessibility-menu-btn-wrap,.accessibility-size-large .footer-menu,.accessibility-size-large .lang-menu-btn{font-size:20px}.accessibility-size-large #footer-menu .toggle-sub-menu,.accessibility-size-large #mobile-menu .toggle-sub-menu{top:16px}.accessibility-size-large .content-item-box .item-title{font-size:24px}.accessibility-size-large .site-sidebar .submenu li{font-size:26px}.accessibility-size-large .site-sidebar .sidebar-title{font-size:26px}.accessibility-size-large .site-footer .blog-article-nav .article-nav-direction{font-size:20px}.accessibility-size-large .blog-tags .tags-title{font-size:24px}.accessibility-size-large .blog-article-page .article-author,.accessibility-size-large .blog-article-page .article-date,.accessibility-size-large .blog-article-page .comments-title,.accessibility-size-large .blog-news-page .article-author,.accessibility-size-large .blog-news-page .article-date,.accessibility-size-large .blog-news-page .comments-title{font-size:22px}.accessibility-size-large .blog-tags .menu .menu-link{font-size:20px}.accessibility-size-large .menu-main li{font-size:20px}.accessibility-size-large #mobile-menu .navigation-menu{font-size:20px}.accessibility-size-large .accessibility-menu-btn-wrap,.accessibility-size-large .lang-menu-btn{font-size:20px}.accessibility-size-large .content-area{font-size:20px}.accessibility-size-large .content-area .form_field_textarea,.accessibility-size-large .content-area .form_field_textfield,.accessibility-size-large .content-area a.custom-btn,.accessibility-size-large .content-area code,.accessibility-size-large .content-area div.custom-btn,.accessibility-size-large .content-area dl,.accessibility-size-large .content-area h5,.accessibility-size-large .content-area h6,.accessibility-size-large .content-area label:not(.form_field_label),.accessibility-size-large .content-area ol,.accessibility-size-large .content-area p,.accessibility-size-large .content-area pre,.accessibility-size-large .content-area ul{font-size:20px}.accessibility-size-large .content-area .form_field .edy-fe-label,.accessibility-size-large .content-area .form_field .form_field_label{font-size:20px}.accessibility-size-large .content-area .form_field_textarea,.accessibility-size-large .content-area .form_field_textfield,.accessibility-size-large .content-area label:not(.form_field_label){font-size:20px}.accessibility-size-large .content-area .form_submit input{font-size:20px}.accessibility-size-large .content-area.accessibility-block-wrap{font-size:16px}.accessibility-size-large .content-area.accessibility-block-wrap div label,.accessibility-size-large .content-area.accessibility-block-wrap div ul{font-size:16px}.accessibility-size-large .content-area.accessibility-block-wrap div h2{font-size:24px}.accessibility-size-large .content-area.accessibility-block-wrap a.custom-btn,.accessibility-size-large .content-area.accessibility-block-wrap div.custom-btn{font-size:16px}.site-footer .accessibility-size-large .content-area{font-size:20px}.accessibility-size-large .content-area h1,.accessibility-size-large .content-area h1 a,.accessibility-size-large .content-area h1 a:hover{font-size:34px;font-weight:300}.accessibility-size-large .content-area h2{font-size:28px}.accessibility-size-large .content-area h3{font-size:24px}.accessibility-size-large .content-area h4{font-size:20px}.accessibility-size-large .content-area table td,.accessibility-size-large .content-area table th{font-size:20px}.accessibility-size-large .main-feature .feature-content{font-size:20px}.accessibility-size-large .front-page .main-feature .content-area{font-size:20px}.accessibility-size-huge .accessibility-menu-btn-wrap,.accessibility-size-huge .footer-menu,.accessibility-size-huge .lang-menu-btn{font-size:24px}.accessibility-size-huge .menu-main li{font-size:24px}.accessibility-size-huge #footer-menu .toggle-sub-menu,.accessibility-size-huge #mobile-menu .toggle-sub-menu{top:18px}.accessibility-size-huge #mobile-menu .navigation-menu{font-size:24px}.accessibility-size-huge .content-item-box .item-title{font-size:24px}.accessibility-size-huge .site-sidebar .submenu li{font-size:26px}.accessibility-size-huge .site-sidebar .sidebar-title{font-size:26px}.accessibility-size-huge .site-footer .blog-article-nav .article-nav-direction{font-size:20px}.accessibility-size-huge .blog-tags .tags-title{font-size:24px}.accessibility-size-huge .blog-article-page .article-author,.accessibility-size-huge .blog-article-page .article-date,.accessibility-size-huge .blog-article-page .comments-title,.accessibility-size-huge .blog-news-page .article-author,.accessibility-size-huge .blog-news-page .article-date,.accessibility-size-huge .blog-news-page .comments-title{font-size:22px}.accessibility-size-huge .blog-tags .menu .menu-link{font-size:20px}.accessibility-size-huge .content-area{font-size:24px}.accessibility-size-huge .content-area .form_field_textarea,.accessibility-size-huge .content-area .form_field_textfield,.accessibility-size-huge .content-area a.custom-btn,.accessibility-size-huge .content-area code,.accessibility-size-huge .content-area div.custom-btn,.accessibility-size-huge .content-area dl,.accessibility-size-huge .content-area h5,.accessibility-size-huge .content-area h6,.accessibility-size-huge .content-area label:not(.form_field_label),.accessibility-size-huge .content-area ol,.accessibility-size-huge .content-area p,.accessibility-size-huge .content-area pre,.accessibility-size-huge .content-area ul{font-size:24px}.accessibility-size-huge .content-area .form_field .edy-fe-label,.accessibility-size-huge .content-area .form_field .form_field_label{font-size:24px}.accessibility-size-huge .content-area .form_submit input{font-size:24px}.accessibility-size-huge .content-area.accessibility-block-wrap{font-size:16px}.accessibility-size-huge .content-area.accessibility-block-wrap div label,.accessibility-size-huge .content-area.accessibility-block-wrap div ul{font-size:16px}.accessibility-size-huge .content-area.accessibility-block-wrap div h2{font-size:24px}.accessibility-size-huge .content-area.accessibility-block-wrap a.custom-btn,.accessibility-size-huge .content-area.accessibility-block-wrap div.custom-btn{font-size:16px}.site-footer .accessibility-size-huge .content-area{font-size:24px}.accessibility-size-huge .content-area h1,.accessibility-size-huge .content-area h1 a,.accessibility-size-huge .content-area h1 a:hover{font-size:38px;font-weight:300}.accessibility-size-huge .content-area h2{font-size:30px}.accessibility-size-huge .content-area h3{font-size:28px}.accessibility-size-huge .content-area h4{font-size:26px}.accessibility-size-huge .content-area table td,.accessibility-size-huge .content-area table th{font-size:24px}.accessibility-size-huge .main-feature .feature-content{font-size:24px}.accessibility-size-huge .front-page .main-feature .content-area{font-size:24px}.accessibility-line-height-large{line-height:2.5}.accessibility-line-height-large .content-area,.accessibility-line-height-large .site-footer,.accessibility-line-height-large .site-header{line-height:2.5}.accessibility-line-height-large .content-area.accessibility-block-wrap,.accessibility-line-height-large .site-footer.accessibility-block-wrap,.accessibility-line-height-large .site-header.accessibility-block-wrap{line-height:1.7}.accessibility-line-height-large .content-area .header-bottom-inner .content-area h1,.accessibility-line-height-large .site-footer .header-bottom-inner .content-area h1,.accessibility-line-height-large .site-header .header-bottom-inner .content-area h1{line-height:1.5}.accessibility-line-height-large .front-page .main-feature .content-area{line-height:2.5}.accessibility-line-height-large .main-feature .feature-content{line-height:2.5}.accessibility-line-height-large .header-top{line-height:1}.accessibility-line-height-huge{line-height:3.5}.accessibility-line-height-huge .content-area,.accessibility-line-height-huge .site-footer,.accessibility-line-height-huge .site-header{line-height:3.5}.accessibility-line-height-huge .content-area.accessibility-block-wrap,.accessibility-line-height-huge .site-footer.accessibility-block-wrap,.accessibility-line-height-huge .site-header.accessibility-block-wrap{line-height:1.7}.accessibility-line-height-huge .content-area .header-bottom-inner .content-area h1,.accessibility-line-height-huge .site-footer .header-bottom-inner .content-area h1,.accessibility-line-height-huge .site-header .header-bottom-inner .content-area h1{line-height:2}.accessibility-line-height-huge .front-page .main-feature .content-area{line-height:3.5}.accessibility-line-height-huge .main-feature .feature-content{line-height:3.5}.accessibility-line-height-huge .header-top{line-height:1}@media screen and (max-width:640px){html.comments-open,html.search-open{height:100%;overflow:hidden}}body{margin:0;font-family:Roboto,sans-serif;font-size:16px;font-weight:300;line-height:1;overflow-x:hidden;-webkit-text-size-adjust:100%}@media screen and (max-width:640px){.comments-open body,.search-open body{position:fixed;top:0;left:0;width:100%;height:100%;overflow:hidden}}@media screen and (max-width:640px){.mobilemenu-open body{position:fixed;top:0;left:0;width:100%;height:100%;overflow:hidden}}a{color:inherit;text-decoration:none}a img{border-style:none}.svg-spritesheet{display:none}.voog-bg-picker-btn{top:0;left:10px;padding:0;border-style:none;opacity:.9}.voog-bg-picker-btn::-moz-focus-inner{padding:0;border:none}.voog-bg-picker-btn.is-hidden{display:none}.header-bottom .voog-bg-picker-btn{top:70px}.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:145px}@media screen and (max-width:1024px){.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:120px}}@media screen and (max-width:640px){.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:70px}}.blog-article-page .header-bottom .voog-bg-picker-btn{top:113px}.header-bottom .voog-bg-picker-btn:hover{opacity:1}.btn{display:none}.btn::-moz-focus-inner{padding:0;border:0}.btn.edy-bgpicker-toggle-button{display:block}.site-container{margin:0 auto;position:relative;-webkit-perspective:1000px;perspective:1000px;-webkit-transition:-webkit-transform .5s;transition:-webkit-transform .5s;-o-transition:transform .5s;transition:transform .5s;transition:transform .5s,-webkit-transform .5s}.site-container:after{position:absolute;top:0;right:0;width:0;height:0;background:rgba(0,0,0,.2);content:"";opacity:0;-webkit-transition:opacity .5s,width .1s .5s,height .1s .5s;-o-transition:opacity .5s,width .1s .5s,height .1s .5s;transition:opacity .5s,width .1s .5s,height .1s .5s}.flexbox .site-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:100vh}.editmode.flexbox .site-container{min-height:calc(100vh - 40px)}@media screen and (max-width:1024px){.mobilemenu-open .site-container{-webkit-transform:translate3d(-250px,0,0);transform:translate3d(-250px,0,0)}}.mobilemenu-open .site-container:after{width:100%;height:100%;opacity:1;-webkit-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.blog-article-page .site-container{overflow:hidden}.comments-open .site-container{overflow:visible}.page-body{position:relative}.flexbox .page-body{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.page-content{display:block;position:relative;max-width:100vw}.background-color,.background-image{position:absolute}.background-image{z-index:-2;background-position:center;background-size:cover}.background-color{z-index:-1}.wrap{margin:0 auto}.header-top .wrap{max-width:100%}.inner{margin:0 auto;padding:50px 40px 60px}.inner:empty{display:none}.inner.has-bottom-content{padding-bottom:30px}.inner.no-bottom-padding{padding-bottom:0}.front-page .main-content .inner{padding:70px 40px 0}@media screen and (max-width:640px){.front-page .main-content .inner{padding:40px 20px 0}}@media screen and (max-width:640px){.item-list-page.sidebar-inactive .inner{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.item-list-page.sidebar-inactive .inner{padding-right:40px;padding-left:40px}}@media screen and (max-width:640px){.item-list-page.sidebar-active .inner{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.item-list-page.sidebar-active .inner{padding-right:40px}}@media screen and (min-width:641px) and (max-width:1024px){.item-list-page.sidebar-active .inner{padding-left:40px}}@media screen and (min-width:1025px){.item-list-page.sidebar-active .inner{padding-left:0}}@media screen and (max-width:640px){.item-page.sidebar-inactive .inner{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.item-page.sidebar-inactive .inner{padding-right:40px;padding-left:40px}}@media screen and (max-width:640px){.item-page.sidebar-active .inner{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.item-page.sidebar-active .inner{padding-right:40px}}@media screen and (min-width:641px) and (max-width:1024px){.item-page.sidebar-active .inner{padding-left:40px}}@media screen and (min-width:1025px){.item-page.sidebar-active .inner{padding-left:0}}@media screen and (max-width:640px){.inner{padding:30px 20px 40px}}.dark-background{color:#fff}.dark-background h1,.dark-background h2,.dark-background h3,.dark-background h4,.dark-background p,.dark-background pre{color:#fff}.site-footer .dark-background{color:rgba(255,255,255,.7)}.site-footer .dark-background a,.site-footer .dark-background b{color:#fff}.dark-background .header-title a{color:#fff}.dark-background .menu li a{color:#fff;opacity:.7}.dark-background .menu li a:hover{opacity:1}.dark-background .menu li.selected a{opacity:1}.dark-background .lang-title{color:#fff}.dark-background .lang-menu.menu-language-list .lang-title a{color:#fff}.dark-background .voog-reference svg path{fill:#fff}.dark-background .site-options .search-btn svg path{fill:#fff}@media screen and (max-width:640px){.search-open .dark-background .site-options .search-btn svg path{fill:rgba(0,0,0,.7)}}.light-background{color:#000}.light-background h1,.light-background h2,.light-background h3,.light-background h4{color:#000}.site-header .light-background a{color:#000}.site-header .light-background .header-title a{color:#000}.site-header .light-background .menu li a{color:rgba(0,0,0,.7)}.site-header .light-background .menu li a:hover{color:#000}.site-header .light-background .menu li a.untranslated{color:rgba(199,9,9,.7)}.site-header .light-background .menu li a.untranslated:hover{color:#c70909}.site-header .light-background .menu li.selected a{color:#000}.site-footer .light-background{color:rgba(0,0,0,.7)}.light-background .lang-title{color:#000}.table-holder{overflow:auto;-webkit-overflow-scrolling:touch;max-width:100%}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.loader{position:absolute;top:50%;left:50%;z-index:999;width:20px;height:20px;border-radius:100%;opacity:0;-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}.loader::before{position:absolute;display:block;width:100%;height:100%;content:"";-webkit-box-sizing:content-box;box-sizing:content-box}.is-loaded .loader,.not-loaded .loader{margin-top:-10px;margin-left:-10px;border:1px solid transparent;-webkit-animation:rotation .7s infinite linear;animation:rotation .7s infinite linear}.is-loaded .loader::before,.not-loaded .loader::before{border-top:1px solid #000;border-right:1px solid transparent;border-bottom:1px solid transparent;border-left:1px solid transparent;border-radius:100%}.not-loaded .loader{opacity:1}.is-loaded .loader{opacity:0}.with-error .loader{width:30px;height:30px;margin-top:-15px;margin-left:-15px;background-color:rgba(199,9,9,.7);opacity:1}.with-error .loader::after,.with-error .loader::before{position:absolute;top:14px;width:22px;height:2px;background-color:#fff;border-radius:2px;content:""}.with-error .loader::before{left:4px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.with-error .loader::after{right:4px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.blog-news-page .articles-listing:after,.common-page .sidebar-active:after,.contacts .content-area table tr:after,.content-area:after,.footer .content-area table tr:after,.search-form:after,.search:after,.site-footer .blog-article-nav:after,.site-header:after,.wrap:after{display:table;clear:both;content:""}.background-color,.background-image,.stretch{position:absolute;top:0;left:0;right:0;bottom:0}.lang-menu-btn,.mobile-menu-toggler,.search-btn,.search-submit,.toggle-sub-menu{margin:0;padding:0;background-color:transparent;border-style:none;cursor:pointer}.lang-menu-btn:focus,.mobile-menu-toggler:focus,.search-btn:focus,.search-submit:focus,.toggle-sub-menu:focus{outline:0}.lang-menu-btn::-moz-focus-inner,.mobile-menu-toggler::-moz-focus-inner,.search-btn::-moz-focus-inner,.search-submit::-moz-focus-inner,.toggle-sub-menu::-moz-focus-inner{padding:0;border-style:none}.content-area .form_field_select,.content-area .form_field_textarea,.content-area .form_field_textfield,.site-search .search-input{-webkit-appearance:none;border-radius:0}.content-area .form_field_select,.content-area .form_field_textarea,.content-area .form_field_textfield,.site-search .search-input{font-family:inherit;font-size:inherit;line-height:inherit}.wrap{max-width:1040px}.edy-content-element>.form{margin:20px 0}.product-content .without-image .item-top{background-image:url(../assets/ico-placeholder.svg);background-size:40px;background-repeat:no-repeat;background-position:center;background-color:#f2f2f2}.product-content .product-price{padding:12px 0 24px 0}.product-content .product-price-divider{margin:4px}.product-content .product-description{padding-bottom:12px}.product-content .content-gallery{margin:32px 0}.product-content .product-cross-page-info{margin-bottom:32px}.flex-col{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:50%}.flex-col .content-body,.flex-col .content-illustrations{max-width:100%}.flex-col .content-body{position:-webkit-sticky;position:sticky;top:64px;z-index:10601}.dark-background .edy-product-widget-filter-search-input,.dark-background .edy-product-widget-filter-sort{opacity:.7}.dark-background .edy-product-widget-filter-label{opacity:.5}.front-page .page-content .content-header{font-size:50px;font-weight:700;line-height:1}.front-page .page-content .content-slogan{font-size:24px;font-weight:400;line-height:1}.front-page .page-content .content-header{margin-bottom:10px}.front-page .page-content .content-slogan{margin-bottom:80px}.front-page .main-feature{padding-top:70px}@media screen and (max-width:640px){.front-page .main-feature{padding-top:40px}}.front-page .main-feature .wrap{padding:0 40px;font-size:0;text-align:center;max-width:1123px}@media screen and (max-width:640px){.front-page .main-feature .wrap{padding-right:20px;padding-left:20px}}@media screen and (min-width:641px){.front-page .main-feature .feature{display:inline-block;vertical-align:top;width:33.3%}}.editmode .front-page .main-feature .feature:nth-child(3n+1) .aspect-ratio-inner:not(.active),.editmode .front-page .main-feature .feature:nth-child(3n+2) .aspect-ratio-inner:not(.active){border-left-style:dashed}.editmode .front-page .main-feature .feature:nth-child(3n+2) .aspect-ratio-inner:not(.active),.editmode .front-page .main-feature .feature:nth-child(3n+3) .aspect-ratio-inner:not(.active){border-right-style:dashed}.front-page .main-feature .feature:empty{display:none}@media screen and (min-width:640px) and (max-width:1024px){.front-page .main-feature .feature:first-child .feature-content{margin-right:15px;margin-left:0}.front-page .main-feature .feature:nth-child(2) .feature-content{margin-right:15px;margin-left:15px}.front-page .main-feature .feature:last-child .feature-content{margin-right:0;margin-left:15px}}.front-page .main-feature .feature-image{position:relative;margin-bottom:25px}.front-page .main-feature .feature-image:before{display:block;content:"";width:100%;padding-top:66.5413533835%}.front-page .main-feature .feature-image>.aspect-ratio-inner{position:absolute;top:0;right:0;bottom:0;left:0}.front-page .main-feature .feature-image.has-margin{margin-bottom:70px}.front-page .main-feature .feature-image.empty-hidden{display:none}.front-page .main-feature .aspect-ratio-inner{background-size:cover;background-position:center}.front-page .main-feature .aspect-ratio-inner:not(.active){border-width:1px}.editmode .front-page .main-feature .aspect-ratio-inner:not(.active){border-top-style:dashed;border-bottom-style:dashed}@media screen and (max-width:640px){.editmode .front-page .main-feature .aspect-ratio-inner:not(.active){border-right-style:dashed;border-left-style:dashed}}.front-page .main-feature .aspect-ratio-inner.active{border-width:0}.editmode .front-page .main-feature .aspect-ratio-inner{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.front-page .main-feature .edy-img-drop-area .edy-img-drop-area-remove-image{top:5px;right:5px}.front-page .main-feature .edy-img-drop-area-placeholder{font-size:14px}.front-page .main-feature .feature-content{margin:0 30px 70px;font-size:16px}@media screen and (max-width:640px){.front-page .main-feature .feature-content{margin:0 0 40px}}.front-page .main-feature .feature-content:empty{display:none}.front-page .main-feature .content-area{text-align:left;line-height:1.7}.front-page .main-feature .content-area h3{margin-bottom:8px}.front-page .front-page-content-bottom .wrap{height:360px;display:table;table-layout:fixed;width:100%}.front-page .front-page-content-bottom .wrap .inner{display:table-cell;vertical-align:middle;width:100%}.front-page .content-full{position:relative}.front-page .content-full .content-full-inner{position:relative}.header-logo-wrap{position:absolute;left:10px;bottom:22px;width:200px;height:100px}@media screen and (max-width:640px){.header-logo-wrap{width:150px;height:75px}}.header-logo-wrap .header-logo{position:relative}.header-logo-wrap .header-logo:before{display:block;content:"";width:100%;padding-top:55.5555555556%}.header-logo-wrap .header-logo>.aspect-ratio-inner{position:absolute;top:0;right:0;bottom:0;left:0}.header-logo-wrap .header-logo .aspect-ratio-inner{background-size:contain;background-position:left!important;background-repeat:no-repeat}.common-page .sidebar-active{max-width:1040px;width:100%;margin:0 auto}.common-page .sidebar-active .wrap{margin:0}@media screen and (max-width:1024px){.common-page .sidebar-active .wrap{margin-right:auto;margin-left:auto}}.common-page .sidebar-active .inner{width:auto;margin:0}@media screen and (min-width:1025px){.common-page .sidebar-active .page-content{float:right;vertical-align:top;width:calc(100% - 260px)}}.common-page .main-content .wrap{max-width:780px}.common-page .main-content .content-half{float:left;width:50%;-webkit-box-sizing:border-box;box-sizing:border-box}.common-page .main-content .content-half.has-padding{padding-top:50px}@media screen and (max-width:640px){.common-page .main-content .content-half{float:none;width:100%}}@media screen and (min-width:851px){.common-page .main-content .content-left{padding:0 20px 60px 40px}}@media screen and (max-width:640px){.common-page .main-content .content-left{padding:0 20px 20px}}@media screen and (min-width:851px){.common-page .main-content .content-right{padding:0 40px 60px 20px}}@media screen and (max-width:640px){.common-page .main-content .content-right{padding:0 20px 20px}}.blog-news-page .main-content .wrap{max-width:780px}.blog-news-page .blog-intro-content{padding-bottom:50px}.blog-news-page .article-title{font-size:30px;font-weight:300;margin:10px 0 0}@media screen and (max-width:850px){.blog-news-page .article-title{font-size:24px}}.blog-news-page .article-title a{color:#000;text-decoration:none}.blog-news-page .article-content{margin-top:20px}.blog-news-page .blog-article{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;position:relative;padding-top:50px}.blog-news-page .blog-article:first-child{padding-top:0}.blog-news-page .blog-article .article-image{position:relative;z-index:1;margin-top:25px;margin-bottom:20px}.blog-news-page .blog-article .article-image:before{display:block;width:100%;padding-top:65.715%;content:""}.blog-news-page .article-author,.blog-news-page .article-date{font-size:14px;color:#000;opacity:.35;font-weight:400;line-height:1;display:inline;letter-spacing:1px;text-transform:uppercase}.dark-background .blog-news-page .article-author,.dark-background .blog-news-page .article-date{color:rgba(255,255,255,.35)}.blog-news-page .article-excerpt{color:rgba(0,0,0,.7);font-size:rem-calc(18px);font-weight:300;line-height:1.7;margin-bottom:20px}.blog-news-page .article-read-more-btn{display:inline-block;text-decoration:underline}.blog-news-page .article-read-more-btn:hover{text-decoration:none}@media screen and (max-width:640px){.blog-news-page .article-header{margin:0}}.blog-news-page .articles-listing{max-width:695px;margin:0 auto}.blog-news-page .articles-listing .articles-listing-header{margin:62px 0 30px}.blog-news-page .articles-listing .articles-listing-title{font-size:22px;text-transform:uppercase}.blog-news-page .articles-listing .blog-article{padding:0}.blog-news-page .articles-listing .blog-article .article-header{margin:0 0 20px}.blog-news-page .articles-listing .blog-article .article-date{font-size:12px;font-size:12px;color:#000;opacity:.35;font-weight:400;line-height:1.7;position:absolute;top:4px;letter-spacing:1px}.blog-news-page .articles-listing .blog-article .article-title{font-size:18px;font-weight:300;line-height:1.4;margin-left:170px}@media screen and (max-width:480px){.blog-news-page .articles-listing{margin:0}.blog-news-page .articles-listing .blog-article .article-date{position:static}.blog-news-page .articles-listing .blog-article .article-title{margin:0}}.blog-news-page .dark-background .article-author,.blog-news-page .dark-background .article-date,.blog-news-page .dark-background .articles-listing .article-date{color:rgba(255,255,255,.35)}.blog-article-page .article-types-toggle{font-size:0;position:absolute;top:85px;left:20px;display:inline-block;overflow:hidden;width:150px;border-radius:5px}.blog-article-page .article-types-toggle .type-btn{font-family:inherit;font-size:16px;line-height:1.3;display:inline-block;float:left;width:75px;padding:5px 5px 3px;cursor:pointer;text-align:center;text-decoration:none;color:#fff;border-style:none;outline:0;background-color:rgba(0,0,0,.5)}.blog-article-page .article-types-toggle .type-btn:hover{background-color:rgba(0,0,0,.7)}.blog-article-page .article-types-toggle .type-btn.is-active{background-color:#000}.blog-article-page.header-top-with-bg .article-types-toggle{top:150px}@media screen and (max-width:1024px){.blog-article-page.header-top-with-bg .article-types-toggle{top:125px}}@media screen and (max-width:640px){.blog-article-page.header-top-with-bg .article-types-toggle{top:80px}}.blog-article-page .article-body,.blog-article-page .article-excerpt{font-size:16px;font-weight:300;line-height:1.7;margin:30px 0 0;color:rgba(0,0,0,.7)}.blog-article-page .article-excerpt{font-weight:400}.blog-article-page .article-excerpt:empty{display:none}.blog-article-page .comments-title{font-size:14px;font-weight:400;line-height:1.7;display:inline-block;cursor:pointer;text-transform:uppercase;color:#000;margin-right:30px}.blog-article-page .comments-title:hover .comments-count,.blog-article-page .comments-title:hover .comments-title-inner{opacity:1}.dark-background .blog-article-page .comments-title{color:#fff}.blog-article-page .comments-title .comments-title-inner{opacity:.35}.blog-article-page .comments-title .comments-count{opacity:.7}.blog-article-page .main-content{-webkit-transition:min-height 250ms;-o-transition:min-height 250ms;transition:min-height 250ms;min-height:0;will-change:min-height}.blog-article-page .main-content .wrap{max-width:780px}.blog-article-page .main-content .article-meta{display:inline-block;margin-right:30px}.blog-article-page .main-content .article-meta.is-hidden{display:none}.blog-article-page .main-content .article-header{margin:10px 0 30px}@media screen and (max-width:480px){.blog-article-page .main-content .article-header.comments-open .blog-article-page .main-content .article-header{display:none}}.blog-article-page .main-content .article-header .article-title{line-height:1.4;margin-bottom:0}.blog-article-page .main-content .article-header a{border-bottom:none}.blog-article-page .main-content .article-author,.blog-article-page .main-content .article-date{font-size:14px;font-weight:400;line-height:1;display:inline;letter-spacing:1px;text-transform:uppercase;color:#000;opacity:.35}.blog-article-page .main-content .article-author.is-hidden,.blog-article-page .main-content .article-date.is-hidden{display:none}.blog-article-page .article-author,.blog-article-page .article-date{opacity:.35}.blog-article-page .dark-background .article-author,.blog-article-page .dark-background .article-date{color:#fff}.blog-article-page.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:180px}@media screen and (max-width:1024px){.blog-article-page.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:155px}}@media screen and (max-width:640px){.blog-article-page.header-top-with-bg .header-bottom .voog-bg-picker-btn{top:115px}}.article-settings-wrap{display:inline-block}.blog-article-page .wrap .hide-article-comments,.blog-news-page .wrap .hide-article-comments,.site-header .wrap .hide-article-comments{display:none}.blog-article-page .wrap .article-date.hide-article-date,.blog-news-page .wrap .article-date.hide-article-date,.site-header .wrap .article-date.hide-article-date{display:none}.blog-article-page .wrap .article-author.hide-article-author,.blog-news-page .wrap .article-author.hide-article-author,.site-header .wrap .article-author.hide-article-author{display:none}.date-separator.hide-separator{display:none}.article-comments{-webkit-transition:250ms;-o-transition:250ms;transition:250ms;position:absolute;top:0;right:-486px;z-index:1;width:440px;padding:45px 40px;background-color:#fff;-webkit-box-shadow:-10px 19px 30px rgba(68,68,68,.31);box-shadow:-10px 19px 30px rgba(68,68,68,.31);-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:640px){.article-comments{display:none;right:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:0s;-o-transition:0s;transition:0s}}.article-comments.open{-webkit-transition:250ms;-o-transition:250ms;transition:250ms;top:0;right:0;-webkit-box-shadow:0 0 20px rgba(0,0,0,.1);box-shadow:0 0 20px rgba(0,0,0,.1)}@media screen and (max-width:640px){.article-comments.open{display:block;-webkit-transition:0s;-o-transition:0s;transition:0s;width:100%}}.article-comments .comments-body{max-height:100%}@media screen and (max-width:640px){.comments-open .article-comments .comments-body{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;-webkit-overflow-scrolling:touch;-webkit-box-sizing:border-box;box-sizing:border-box;height:100vh;padding:20px;background-color:#fff}}.article-comments .comments-body .comments-header .comments-title{margin-top:0}.article-comments .comments-body .comments-title{margin:20px 0 20px 0;font-size:24px;font-weight:300;line-height:1.7;color:#000;cursor:text;text-transform:none}.article-comments .comments-body .comments-title .comments-count{display:inline-block;font-size:14px;color:#000;opacity:.35;vertical-align:middle}.article-comments .comments-body .form_field_textarea,.article-comments .comments-body .form_field_textfield{padding-top:10px;padding-bottom:10px;background-color:#fff}.article-comments .comment{margin:20px 0 0;color:rgba(0,0,0,.7)}.article-comments .comment:first-child{margin-top:0}.article-comments .comment .comment-body{display:block;font-size:16px;line-height:24px}.article-comments .comment .comment-author,.article-comments .comment .comment-date{font-size:14px;font-weight:300;line-height:2;color:#000;opacity:.35}.article-comments .comments-close.dark-background .btn-close{background-color:#0083ba}.article-comments .comments-close.dark-background .btn-close .ico-close{fill:#000}.article-comments .comments-close .btn-close{position:absolute;top:0;left:-46px;width:46px;height:46px;line-height:1;cursor:pointer;background-color:#0083ba}@media screen and (max-width:850px){.article-comments .comments-close .btn-close{right:0;left:auto;background-color:#0083ba}}@media screen and (min-width:851px){.article-comments .comments-close .btn-close:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s;opacity:.7}}.article-comments .comments-close .btn-close .ico-close{padding:15px;fill:#fff}@media screen and (max-width:850px){.article-comments .comments-close .btn-close .ico-close{fill:rgba(0,0,0,.7)}.article-comments .comments-close .btn-close .ico-close:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s;fill:rgba(0,0,0,.7)}}.blog-tags{margin-bottom:20px}.blog-article .blog-tags{margin-bottom:15px}.blog-tags .tags-toggle{position:relative;display:inline-block;cursor:pointer}.blog-tags .tags-icon{position:absolute;top:-3px;left:0;fill:rgba(0,0,0,.7)}.dark-background .blog-tags .tags-icon{fill:rgba(255,255,255,.7)}.blog-tags .tags-title{padding:0 20px 0 25px;font-weight:400;font-size:14px;text-transform:uppercase}.blog-tags .ico-arrow{position:absolute;right:0;top:3px;width:0;height:0;border-style:solid;border-width:8px 5px 0 5px;border-color:#000 transparent transparent transparent}.blog-tags .ico-arrow.active{border-width:0 5px 8px 5px;border-color:transparent transparent #000 transparent}.dark-background .blog-tags .ico-arrow.active{border-color:#fff transparent transparent transparent}.dark-background .blog-tags .ico-arrow{border-color:transparent transparent #fff transparent}.blog-tags .tags-bottom{display:none;margin-top:15px}.blog-tags .tags-bottom.visible{display:block}.blog-tags .menu{display:inline-block;padding-left:0}.blog-tags .menu .menu-item{display:inline-block;margin-top:5px;vertical-align:top}.blog-tags .menu .menu-item:before{display:none}.blog-tags .menu .menu-link{padding:1px 5px;font-size:12px;color:#a4a4a4;text-decoration:none;border-radius:3px;background-color:rgba(0,0,0,.03)}.blog-tags .menu .menu-link:hover{opacity:.7}.blog-tags .menu .menu-link.active{color:#fff;background-color:#a4a4a4}.dark-background .blog-tags .menu .menu-link{background-color:rgba(255,255,255,.2)}.site-header{position:relative}@media screen and (max-width:850px){.site-header .header-left,.site-header .header-right{float:none}.no-flexbox .site-header .header-left,.no-flexbox .site-header .header-right{display:table-cell;vertical-align:top}.site-header .header-left{-webkit-box-flex:1;-ms-flex:1;flex:1}}@media screen and (max-width:640px){.search-open .site-header{position:static}}.site-header .header-top .wrap{padding-top:40px;padding-right:40px;padding-left:40px}.flexbox .site-header .header-top .wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.header-top-with-bg .site-header .header-top .wrap{padding-bottom:40px}@media screen and (max-width:640px){.header-top-with-bg .site-header .header-top .wrap{padding-bottom:14px}}@media screen and (max-width:640px){.site-header .header-top .wrap{padding-top:20px;padding-right:20px;padding-left:20px}}.site-header .header-top .site-options{display:inline-block;vertical-align:top;height:27px}@media screen and (max-width:1024px){.site-header .header-top .site-options{margin-left:20px}}.site-header .header-title{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;font-size:24px;font-weight:300;line-height:1;position:relative;min-width:140px}.site-header .header-title a{text-decoration:none}.site-header .header-title a:hover{opacity:.7}.blog-article-page .site-header .header-body{text-align:center}.site-header .header-left{max-width:100%}.flexbox .site-header .header-left{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.no-flexbox .site-header .header-left{float:left}@media screen and (max-width:640px){.no-flexbox .site-header .header-left{float:none}}.site-header .header-right{position:relative;text-align:right}@media screen and (max-width:1024px){.site-header .header-right{margin-top:1px}}@media screen and (max-width:640px){.search-open .site-header .header-right{position:static}}.no-flexbox .site-header .header-right{float:right}.site-header .header-bottom .header-bottom-inner{display:table;width:100%;max-width:1040px;margin:0 auto;table-layout:fixed;border-collapse:collapse}.blog-article-page .site-header .header-bottom .header-bottom-inner,.blog-news-page .site-header .header-bottom .header-bottom-inner,.common-page .site-header .header-bottom .header-bottom-inner,.item-list-page .site-header .header-bottom .header-bottom-inner{height:253px}@media screen and (max-width:640px){.blog-article-page .site-header .header-bottom .header-bottom-inner,.blog-news-page .site-header .header-bottom .header-bottom-inner,.common-page .site-header .header-bottom .header-bottom-inner,.item-list-page .site-header .header-bottom .header-bottom-inner{height:130px}}.front-page .site-header .header-bottom .header-bottom-inner{height:606px}@media screen and (max-width:640px){.front-page .site-header .header-bottom .header-bottom-inner{height:400px}}.site-header .header-bottom .header-bottom-inner.header-bottom-only .wrap{padding-top:90px}.site-header .header-bottom .header-bottom-inner .wrap{display:table-cell;padding:60px 40px 90px;vertical-align:middle}.header-top-with-bg .site-header .header-bottom .header-bottom-inner .wrap{padding-top:74px;padding-bottom:76px}@media screen and (max-width:640px){.site-header .header-bottom .header-bottom-inner .wrap{padding:40px 20px 60px}.header-top-with-bg .site-header .header-bottom .header-bottom-inner .wrap{padding-top:49px;padding-bottom:51px}}.site-header.photo-article .header-bottom .header-bottom-inner{height:606px}@media screen and (max-width:640px){.site-header.photo-article .header-bottom .header-bottom-inner{height:400px}}.site-header .header-body .article-author,.site-header .header-body .article-date{font-size:14px;font-weight:400;line-height:2;display:inline;letter-spacing:1px;text-transform:uppercase}.site-header .header-body .article-author.is-hidden,.site-header .header-body .article-date.is-hidden{display:none}.site-header .header-body .article-title{font-size:60px;font-weight:300;line-height:1.2;margin:0 0 10px;text-transform:none}.publicmode .site-header .header-body .article-title{cursor:pointer}@media screen and (max-width:640px){.site-header .header-body .article-title{font-size:32px}}.site-header .header-body .article-title a{font-size:1em;text-decoration:none}.site-header .header-body .blog-title{font-weight:700;line-height:1;margin-top:0;text-transform:uppercase}.site-header .header-body .blog-title.is-hidden{display:none}.menu-btn-wrap{display:inline-block;vertical-align:middle;margin-left:30px}.language-menu-mode-list .menu-btn-wrap.menu-language-popover-btn{display:none}@media screen and (max-width:1024px){.menu-btn-wrap{display:none}}.toggle-sub-menu{position:absolute;top:14px;left:-12px;display:block}.no-svg .toggle-sub-menu:before{display:block;width:0;height:0;content:"";border-width:5px 0 5px 8px;border-style:solid;border-color:transparent transparent transparent #000}.svg .toggle-sub-menu{fill:#0083ba}.no-svg .toggle-sub-menu.active:before{border-width:8px 5px 0;border-color:#000 transparent transparent transparent}.svg .toggle-sub-menu.active{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.no-svg .toggle-sub-menu.highlighted{border-color:#0083ba transparent transparent transparent}.svg .toggle-sub-menu.highlighted{fill:#0083ba}.menu{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;margin-top:0;margin-bottom:0;padding-left:0;list-style-type:none}.menu li{font-weight:300;line-height:1.7}.menu li:last-child{margin-right:0}.menu li.selected{font-weight:500}.menu li.is-hidden{display:none}.menu li a{display:block;border-style:none}.menu li a.untranslated{color:rgba(199,9,9,.7)}.menu li a.untranslated:hover{color:#c70909}.menu-main{display:inline-block;vertical-align:top;text-transform:uppercase}.menu-main li{display:inline-block;margin-left:20px;font-size:16px}.menu-sub li{margin-right:10px}.menu-language-settings{margin-top:0;margin-bottom:0;padding-left:0}.language-menu-mode-popover .menu-language-settings .menu-item-cms{padding-top:5px!important}.language-menu-mode-list .menu-language-settings .menu-item-cms{padding-top:2px!important}.menu-item-list{margin-top:15px}@media screen and (min-width:1025px){.menu-item-list.is-hidden-desktop{display:none}}.item-list-page .menu-item-list{margin-bottom:15px}.common-page .menu-item-list{margin-bottom:18px}.menu-item-list .menu-item{display:inline-block;font-size:14px;opacity:.5}.menu-item-list .menu-item:not(.current):hover{opacity:.8}.menu-item-list .menu-item.selected{font-weight:400}.menu-item-list .menu-item.current{font-weight:500;opacity:1}.menu-item-cms{margin-left:10px}.menu-item-cms.float-right{float:right}.menu-separator{opacity:.5}.menu-separator:first-child{display:none}#mobile-menu{display:none}.mobile-menu-toggler{display:none}@media screen and (max-width:1024px){.site-header .header-right .menu-main{display:none}.mobilemenu-open,.mobilesearch-open{position:fixed;overflow:hidden;top:0;left:0;width:100%;height:100%}.mobilemenu-open #mobile-menu,.mobilesearch-open #mobile-menu{position:absolute;top:0;width:250px;height:100%}.mobile-menu-toggler{position:absolute;top:-12px;right:-12px;display:block;width:45px;height:44px;outline:0}.mobile-menu-toggler span,.mobile-menu-toggler span:after,.mobile-menu-toggler span:before{position:absolute;top:14px;left:12px;display:block;width:21px;height:2px;content:"";background-color:#000}.dark-background .mobile-menu-toggler span,.dark-background .mobile-menu-toggler span:after,.dark-background .mobile-menu-toggler span:before{background-color:#fff}.language-flags-disabled .mobile-menu-toggler span .lang-menu-btn,.language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn,.language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn{position:static;width:auto;height:auto;background-color:#c70909}.language-flags-disabled .mobile-menu-toggler span .lang-menu-btn:after,.language-flags-disabled .mobile-menu-toggler span .lang-menu-btn:before,.language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn:after,.language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn:before,.language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn:after,.language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn:before{display:none}.language-flags-disabled .mobile-menu-toggler span .lang-menu-btn .lang-title,.language-flags-disabled .mobile-menu-toggler span:after .lang-menu-btn .lang-title,.language-flags-disabled .mobile-menu-toggler span:before .lang-menu-btn .lang-title{position:static;color:#fff}.mobile-menu-toggler span:before{top:7px;left:0}.mobile-menu-toggler span:after{top:14px;left:0}#mobile-menu{-webkit-transition:-webkit-transform .5s;transition:-webkit-transform .5s;-o-transition:transform .5s;transition:transform .5s;transition:transform .5s,-webkit-transform .5s;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);font-family:Roboto,sans-serif;position:fixed;z-index:1000;top:0;right:0;height:100%;display:block;overflow:auto;-webkit-box-sizing:border-box;box-sizing:border-box;width:250px;padding:30px 20px;background-color:#fff}#mobile-menu.reset-touch{-webkit-overflow-scrolling:touch}}@media screen and (max-width:1024px) and (max-width:640px){#mobile-menu{padding-top:10px}}@media screen and (max-width:1024px){.editmode #mobile-menu{height:calc(100% - 40px)}.mobilemenu-open #mobile-menu{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}#mobile-menu .search-open-btn{-webkit-transition:right .3s;-o-transition:right .3s;transition:right .3s;position:absolute;top:28px;right:78px;width:42px;height:42px;margin-left:0}#mobile-menu .search-open-btn.no-back-btn{right:108px}#mobile-menu .search-open-btn.search-active{display:none}#mobile-menu .search-open-btn svg{fill:#000}#mobile-menu ul{margin:0;padding:0;list-style-type:none}#mobile-menu ul li{position:relative;margin:0}.language-names-disabled #mobile-menu ul li.lang-item{position:relative;left:-5px;display:inline-block}#mobile-menu ul li.is-hidden{display:none}#mobile-menu ul li.edit-btn{margin:10px 0}#mobile-menu ul a{line-height:1.3;padding:10px 0;text-transform:uppercase;color:rgba(0,0,0,.7)}.language-names-enabled #mobile-menu ul a.lang-flag{font-size:16px}.language-names-disabled #mobile-menu ul a.lang-flag{font-size:0;padding:15px 15px 8px 16px;opacity:.7}.language-names-disabled #mobile-menu ul a.lang-flag.is-active,.language-names-disabled #mobile-menu ul a.lang-flag:hover{opacity:1}#mobile-menu ul a.untranslated{color:rgba(199,9,9,.7)}#mobile-menu ul a.untranslated:hover{color:#c70909}#mobile-menu .navigation-menu{word-break:break-all;font-size:18px}#mobile-menu .navigation-menu .with-children>a{margin-right:30px}#mobile-menu .navigation-menu ul a{display:block}#mobile-menu .navigation-menu ul a.visible{display:inline-block}#mobile-menu .navigation-menu ul a.selected{font-weight:500;color:#000}#mobile-menu .navigation-menu ul a.indented{margin-left:10px}#mobile-menu .navigation-menu ul.current-menu>li:first-child>a{text-transform:uppercase}#mobile-menu .navigation-menu ul.child-menu li a.edy-cbtn{display:inline!important}#mobile-menu .navigation-menu .option-btn{padding:15px 0}#mobile-menu .sub-menu a{text-transform:initial}#mobile-menu .menu-level-2,#mobile-menu .menu-level-3{display:none;padding-left:10px}#mobile-menu .current-parent>.menu-level-2,#mobile-menu .current-parent>.menu-level-3{display:block}#mobile-menu .lang-menu{display:block;margin-top:20px;margin-left:0}#mobile-menu .lang-menu ul{margin:0;padding:0}#mobile-menu .lang-menu ul li{text-align:left}#mobile-menu .lang-menu ul li a{padding:7px 0 5px;text-align:left}.language-names-enabled #mobile-menu .lang-menu ul li a.lang-flag:after,.language-names-enabled #mobile-menu .lang-menu ul li a.lang-flag:before{top:8px;right:auto;left:0}.language-names-disabled #mobile-menu .lang-menu ul li a.lang-flag:after,.language-names-disabled #mobile-menu .lang-menu ul li a.lang-flag:before{top:5px;left:5px}#mobile-menu .lang-menu ul li a.is-active{font-weight:500;color:#000}.language-flags-enabled #mobile-menu .lang-menu a{padding-left:25px}}.lang-flag:after,.lang-flag:before{position:absolute;top:0;left:0;display:block;width:21px;height:15px;content:""}.language-flags-disabled .lang-flag:after,.language-flags-disabled .lang-flag:before{display:none}.lang-flag:after{background-position:-189px -60px}.lang-flag:before{background-color:#000}.lang-flag:after{padding-top:3px;padding-bottom:3px;font-size:9px;line-height:1;text-align:center;text-transform:uppercase;background-position:0 -75px;background-repeat:no-repeat;content:attr(data-lang-code);opacity:.95;-webkit-box-sizing:border-box;box-sizing:border-box}.no-boxshadow .lang-flag:after{border:1px solid #fff}.svg .lang-flag:after{background-image:url(../assets/ico-flags.svg)}.lang-flag:after .no-svg{background-image:url(../images/ico-flags.png)}[data-lang-code^=sq]:after{background-position:0 0;content:""}[data-lang-code^=hy]:after{background-position:-21px 0;content:""}[data-lang-code^=bn]:after{background-position:-42px 0;content:""}[data-lang-code^=bg]:after{background-position:-84px 0;content:""}[data-lang-code^=zh]:after{background-position:-105px 0;content:""}[data-lang-code^=hr]:after{background-position:-126px 0;content:""}[data-lang-code^=da]:after{background-position:-147px 0;content:""}[data-lang-code^=cs]:after{background-position:-168px 0;content:""}[data-lang-code^=et]:after{background-position:-189px 0;content:""}[data-lang-code^=fi]:after{background-position:0 -15px;content:""}[data-lang-code^=fr]:after{background-position:-21px -15px;content:""}[data-lang-code^=ka]:after{background-position:-42px -15px;content:""}[data-lang-code^=de]:after{background-position:-63px -15px;content:""}[data-lang-code^=el]:after{background-position:-84px -15px;content:""}[data-lang-code^=hu]:after{background-position:-105px -15px;content:""}[data-lang-code^=is]:after{background-position:-126px -15px;content:""}[data-lang-code^=hi]:after{background-position:-147px -15px;content:""}[data-lang-code^=id]:after{background-position:-168px -15px;content:""}[data-lang-code^=fa]:after{background-position:-189px -15px;content:""}[data-lang-code^=he]:after{background-position:0 -30px;content:""}[data-lang-code^=it]:after{background-position:-21px -30px;content:""}[data-lang-code^=ja]:after{background-position:-42px -30px;content:""}[data-lang-code^=ko]:after{background-position:-63px -30px;content:""}[data-lang-code^=lv]:after{background-position:-84px -30px;content:""}[data-lang-code^=lt]:after{background-position:-105px -30px;content:""}[data-lang-code^=ms]:after{background-position:-126px -30px;content:""}[data-lang-code^=nl]:after{background-position:-147px -30px;content:""}[data-lang-code^=no]:after{background-position:-168px -30px;content:""}[data-lang-code^=ur]:after{background-position:-189px -30px;content:""}[data-lang-code^=fil]:after{background-position:0 -45px;content:""}[data-lang-code^=pl]:after{background-position:-21px -45px;content:""}[data-lang-code^=ro]:after{background-position:-42px -45px;content:""}[data-lang-code^=ru]:after{background-position:-63px -45px;content:""}[data-lang-code^=ar]:after{background-position:-84px -45px;content:""}[data-lang-code^=sk]:after{background-position:-105px -45px;content:""}[data-lang-code^=sl]:after{background-position:-126px -45px;content:""}[data-lang-code^=es]:after{background-position:-147px -45px;content:""}[data-lang-code^=sv]:after{background-position:-168px -45px;content:""}[data-lang-code^=tr]:after{background-position:-189px -45px;content:""}[data-lang-code^=uk]:after{background-position:0 -60px;content:""}[data-lang-code^=en]:after{background-position:-21px -60px;content:""}[data-lang-code^=pt]:after{background-position:-84px -60px;content:""}[data-lang-code^=sr]:after{background-position:-126px -60px;content:""}[data-lang-code^=bn]:after{background-position:-147px -60px;content:""}[data-lang-code^=th]:after{background-position:-189px -60px;content:""}[data-lang-code^=en_US]:after{background-position:-21px -60px;content:""}[data-lang-code^=en_GB]:after{background-position:-63px -60px;content:""}[data-lang-code^=en_AU]:after{background-position:-168px -60px;content:""}[data-lang-code^=en_CA]:after{background-position:-105px -60px;content:""}[data-lang-code^=pt_BR]:after{background-position:-63px 0;content:""}[data-lang-code^=fr_CA]:after{background-position:-105px -60px;content:""}[data-lang-code^=fr_IC]:after{background-position:-42px -60px;content:""}.lang-menu{display:inline-block;margin-left:40px;vertical-align:top}@media screen and (max-width:1024px){.lang-menu{display:none}}.language-menu-mode-popover .lang-menu.menu-language-list{display:none}.lang-menu.menu-language-list .lang-title{display:inline-block}.lang-menu.menu-language-list .lang-title a{opacity:.7}.lang-menu.menu-language-list .lang-title a:hover{opacity:1}.lang-menu.menu-language-list .lang-title a.is-active{font-weight:400;opacity:1}.lang-menu.menu-language-list .menu-item-cms{display:inline-block;padding-left:5px}.lang-menu li{line-height:normal;display:block;text-align:right;text-transform:uppercase}.lang-menu li a{font-weight:400;color:rgba(0,0,0,.7)}.lang-menu li.menu-item-cms{padding-right:18px;padding-left:18px}.lang-menu li.menu-item-cms:last-child{padding-top:5px;padding-bottom:10px}.language-menu-mode-list .lang-menu li.menu-item-cms:last-child{padding-right:9px}#mobile-menu .lang-menu li.menu-item-cms:last-child{padding-top:0;padding-left:0}.lang-menu a.lang-flag{position:relative;display:block;text-align:right}.dark-background .lang-menu a.lang-flag,.light-background .lang-menu a.lang-flag{color:rgba(0,0,0,.7)}.dark-background .lang-menu a.lang-flag:hover,.light-background .lang-menu a.lang-flag:hover{color:#000}.language-names-enabled.language-flags-enabled .lang-menu a.lang-flag{padding:5px 40px 5px 13px}.language-menu-mode-popover.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag{padding:15px 32px 14px 13px}.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag{padding:15px 15px 8px 16px}.lang-menu a.lang-flag:after,.lang-menu a.lang-flag:before{left:12px}.language-menu-mode-popover .lang-menu a.lang-flag:after,.language-menu-mode-popover .lang-menu a.lang-flag:before{top:7px}.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag:after,.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag:before{left:5px}.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag:after,.language-menu-mode-list.language-names-disabled.language-flags-enabled .lang-menu a.lang-flag:before,.language-menu-mode-list.language-names-enabled.language-flags-enabled .lang-menu a.lang-flag:after,.language-menu-mode-list.language-names-enabled.language-flags-enabled .lang-menu a.lang-flag:before{top:5px}.lang-menu a.lang-flag:after,.lang-menu a.lang-flag:before{right:12px;left:auto}.lang-menu a.edy-menu-langadd{padding:5px}.language-flags-disabled .lang-menu a.lang-flag{padding:5px 10px}.language-menu-mode-list.language-flags-disabled .lang-menu .lang-title:last-child a.lang-flag{padding-right:0}.lang-title{text-transform:uppercase;background-color:transparent}.lang-title a{text-transform:uppercase;background-color:transparent}.language-names-enabled .lang-title a{font-size:14px}.language-names-disabled .lang-title a{font-size:0}.lang-menu-btn{font-family:inherit;font-size:16px;position:relative;display:block;margin:0;padding:6px 3px;cursor:pointer;border:none;background:0 0;line-height:1}.language-flags-enabled .lang-menu-btn{width:21px;padding:13px 14px 13px 13px}.language-flags-enabled .lang-menu-btn .lang-title{display:none}.lang-menu-btn.lang-flag:after,.lang-menu-btn.lang-flag:before{top:6px;left:3px}.lang-menu-btn .lang-title-inner{position:relative;padding:5px 12px 5px 5px}.lang-menu-btn .lang-title-inner:after{position:absolute;top:50%;right:0;display:block;margin-top:-3px;width:0;height:0;content:"";border-style:solid;border-width:6px 3px 0 3px;border-color:#000 transparent transparent transparent}.dark-background .lang-menu-btn .lang-title-inner:after{border-color:#fff transparent transparent transparent}.lang-menu-popover{line-height:1;position:absolute;z-index:1;display:none;padding:5px 0;text-align:left;background-color:#fff;-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3)}.no-boxshadow .lang-menu-popover{border:1px solid #fff}.editmode .lang-menu-popover{padding-bottom:0}@media screen and (min-width:1025px){.menu-language-popover-open .lang-menu-popover{display:block}}.lang-menu-popover a:hover{background-color:rgba(0,0,0,.1)}.lang-menu-popover a.active{background-color:rgba(0,0,0,.2)}#footer-menu{padding:0 24px}#footer-menu.reset-touch{-webkit-overflow-scrolling:touch}@media screen and (max-width:640px){#footer-menu{padding-top:10px;padding-right:32px}}#footer-menu .toggle-sub-menu{top:14px;left:-14px}#footer-menu ul{margin:0;padding:0;list-style-type:none}#footer-menu ul li{position:relative;margin:0}#footer-menu ul a{line-height:1.3;padding:10px 0;text-transform:uppercase}#footer-menu ul a.untranslated{color:rgba(199,9,9,.7)}#footer-menu ul a.untranslated:hover{color:#c70909}#footer-menu .navigation-menu{word-break:break-all}#footer-menu .navigation-menu .with-children>a{margin-right:30px}#footer-menu .navigation-menu ul a{display:block}#footer-menu .navigation-menu ul a.visible{display:inline-block}#footer-menu .navigation-menu ul a.selected{font-weight:500;color:#000}#footer-menu .navigation-menu ul a.indented{margin-left:10px}#footer-menu .navigation-menu ul.current-menu>li:first-child>a{text-transform:uppercase}#footer-menu .navigation-menu ul.child-menu li a.edy-cbtn{display:inline!important}#footer-menu .navigation-menu .option-btn{padding:15px 0}#footer-menu .sub-menu a{text-transform:initial}#footer-menu .menu-level-2,#footer-menu .menu-level-3{display:none;padding-left:10px}#footer-menu .current-parent>.menu-level-2,#footer-menu .current-parent>.menu-level-3{display:block}#footer-menu .lang-menu{display:block;margin-top:20px;margin-left:0}#footer-menu .lang-menu ul{margin:0;padding:0}#footer-menu .lang-menu ul li{text-align:left}#footer-menu .lang-menu ul li a{padding:7px 0 5px;text-align:left}.site-search{margin-right:10px}.site-search .search-input{width:128px;padding:4px 5px 3px;font-size:16px;border-width:1px;border-style:solid;border-color:rgba(0,0,0,.53);border-radius:3px}.site-search .search-submit{position:relative;top:-1px}.search-label{display:none}.search{display:none;position:absolute;width:310px;height:50px;line-height:1}@media screen and (max-width:640px){.search{position:fixed;top:0;right:0;bottom:0;left:0;height:auto;width:auto;background-color:#f7f7f7}}.search.active{position:absolute;right:0;z-index:20;display:block}@media screen and (min-width:641px){.search.active{top:30px}}.search-middle{vertical-align:middle;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.search-inner{position:relative;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.1);box-shadow:0 2px 4px 0 rgba(0,0,0,.1)}.search-form{position:relative;z-index:20;background-color:#fff;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.1);box-shadow:0 2px 4px 0 rgba(0,0,0,.1)}@media screen and (max-width:640px){.search-form{padding-top:10px;padding-bottom:6px;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}}.search-form,.search-form.selected{margin:0 auto;border:none}@media screen and (min-width:641px){.search-form,.search-form.selected{max-width:400px}}.search-input{vertical-align:middle;width:100%;height:40px;margin:0;padding:0 55px 0 15px;font-family:inherit;font-size:16px;line-height:20px;color:#000;background:0 0;-webkit-box-sizing:border-box;box-sizing:border-box;border:none}@media screen and (max-width:640px){.search-open .search-input{padding:0 61px 0 42px}}.search-input::-ms-clear{display:none}.search-input::-webkit-input-placeholder{padding:2px 0 4px 0;line-height:1;color:rgba(0,0,0,.5)}.search-input:focus{outline:0}.search-btn,.search-submit{width:30px;height:50px;background-color:transparent}.no-svg .search-btn,.no-svg .search-submit{background-position:center;background-repeat:no-repeat;background-image:url(../images/ico-search-white.png)}.no-svg .light-background .search-btn,.no-svg .light-background .search-submit{background-image:url(../images/ico-search-black.png)}.search-submit{opacity:.5;position:absolute;top:0;right:25px;padding-top:2px;width:41px;background-size:32px;background-color:transparent}.search-submit:hover{opacity:1}.search-btn{z-index:21;vertical-align:middle;width:26px;height:26px;font-size:0}@media screen and (min-width:1025px){.search-btn{margin-left:28px}}@media screen and (max-width:1024px){.search-btn{margin-right:36px;top:-3px;position:relative}.search-active .search-btn{position:static}}.front-page .header-options .search-btn{top:1px}.content-page .header-options .search-btn{top:4px}.header-options .search-btn svg{fill:rgba(0,0,0,.7)}.front-page .header-options .search-btn svg{fill:#fff}.front-page .light-background .search-btn svg{fill:#000}.search-btn:hover svg{fill:rgba(0,0,0,.47)}.search-btn:focus{outline:0}@media screen and (max-width:640px){.content-page .header-options .search-btn{margin-right:35px}}@media screen and (max-width:640px){.search-open .search-open-btn{margin:0;position:absolute;top:16px;left:10px}.comments-open .search-open-btn{display:none}}.search-close-btn{position:absolute;right:0;width:auto;height:auto;margin:0;border-left:1px solid #eee}@media screen and (min-width:641px){.search-close-btn{top:8px;padding:8px 15px}}@media screen and (max-width:640px){.search-close-btn{top:10px;z-index:1000;padding:12px 20px}}.voog-search-modal{display:none;-webkit-box-sizing:border-box;box-sizing:border-box;z-index:999;width:100%;max-height:calc(100vh - 140px);margin:0 auto;background-color:#fff;-webkit-box-shadow:none;box-shadow:none;overflow:auto;-webkit-overflow-scrolling:touch;text-align:left}.voog-search-modal.no-content{padding:20px;color:#000}.voog-search-modal.search-results-active{display:block}@media screen and (min-width:641px){.voog-search-modal{max-width:400px}}.voog-search-modal-results h3{margin:0;font-size:16px;color:#000;font-weight:400;line-height:1.3}.voog-search-modal-results h3 a{text-decoration:none;color:#000}.voog-search-modal-results h3 a:hover{color:rgba(0,0,0,.8)}.voog-search-modal-results p{margin:5px 0 0;font-size:16px;line-height:24px;color:rgba(0,0,0,.7)}.voog-search-modal-results em{font-style:normal;background-color:rgba(249,236,90,.5);border-radius:2px;padding:0 2px}.voog-search-modal-result{padding:15px;border-top:rgba(0,0,0,.13) solid 1px}.voog-search-modal-result:first-of-type{border-top:1px solid transparent}.site-sidebar{float:left;vertical-align:top;width:220px;margin:50px 0 50px 40px}@media screen and (max-width:1024px){.site-sidebar{display:none}}@media screen and (min-width:1500px){.site-sidebar{width:20%}}.site-sidebar .sidebar-title{font-size:18px;font-weight:400;line-height:2;text-transform:uppercase;margin:0}@media screen and (max-width:1024px){.site-sidebar .sidebar-title{display:none}}.site-sidebar .sidebar-title a{color:#000}.dark-background .site-sidebar .sidebar-title a{color:#fff}.site-sidebar .submenu{margin-bottom:0;padding:0}.site-sidebar .submenu li,.site-sidebar .submenu ul{list-style:none}.site-sidebar .submenu li{font-size:18px;font-weight:300;line-height:1.7;margin:15px 0}.site-sidebar .submenu li:last-child{margin-bottom:0}@media screen and (max-width:1024px){.site-sidebar .submenu li{display:inline-block;margin-right:20px}}.site-sidebar .submenu a{color:#000;opacity:.5}.dark-background .site-sidebar .submenu a{color:#fff}.site-sidebar .submenu a:hover{opacity:1}.dark-background .site-sidebar .submenu a:hover{color:rgba(255,255,255,.8)}.site-sidebar .submenu a.untranslated{color:rgba(199,9,9,.7)}.site-sidebar .submenu a.untranslated:hover{color:#c70909}.site-sidebar .submenu .selected{font-weight:500;opacity:1}.dark-background .site-sidebar .submenu .selected{color:#fff}.dark-background .site-sidebar .submenu .selected:hover{color:#fff}.site-sidebar .submenu .submenu-lvl2{padding-left:25px}@media screen and (max-width:1024px){.site-sidebar .submenu .submenu-lvl2{display:none}}.site-sidebar .submenu .submenu-lvl2 li{font-size:16px;line-height:1.7;font-weight:300}.site-sidebar .submenu .submenu-lvl2 a{color:#000;opacity:1}.dark-background .site-sidebar .submenu .submenu-lvl2 a{color:#fff}.dark-background .site-sidebar .submenu .submenu-lvl2 a:hover{color:rgba(255,255,255,.5)}.site-sidebar .submenu .submenu-lvl2 a:hover{opacity:.5}.site-sidebar .submenu .submenu-lvl2 a.untranslated{color:rgba(199,9,9,.7)}.site-sidebar .submenu .submenu-lvl2 a.untranslated:hover{color:#c70909}.site-sidebar .submenu .submenu-lvl2 .selected{font-weight:500}.dark-background .site-sidebar .submenu .submenu-lvl2 .selected{color:#fff}.dark-background .site-sidebar .submenu .submenu-lvl2 .selected a:hover{color:#fff}.site-sidebar .submenu .submenu-lvl2 .selected a:hover{opacity:1}.content-item-boxes{margin-top:-15px;font-size:0;line-height:1.3}@media screen and (min-width:241px) and (max-width:640px){.content-item-boxes{margin-right:-10px;margin-left:-10px}}@media screen and (min-width:641px){.content-item-boxes{margin-right:-15px;margin-left:-15px}}.content-item-box{color:rgba(0,0,0,.8)}.item-list-page .content-item-box{-webkit-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:240px){.item-list-page .content-item-box{display:block}}@media screen and (min-width:241px){.item-list-page .content-item-box{display:inline-block;vertical-align:top}}@media screen and (min-width:241px) and (max-width:640px){.item-list-page .content-item-box{width:50%;padding:10px 10px 5px 10px}}@media screen and (min-width:641px){.item-list-page .content-item-box{width:33.3%;min-width:195px;padding:15px 2%}}.content-illustrations .content-item-box{margin-bottom:40px}.content-item-box .top-inner{opacity:1}.editmode .content-item-box .top-inner::after,.item-list-page .content-item-box .top-inner::after{position:absolute;top:0;right:0;bottom:0;left:0;display:block;background-color:#fff;content:"";opacity:0;-webkit-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.editmode .content-item-box:hover .top-inner::after,.item-list-page .content-item-box:hover .top-inner::after{opacity:.2}.content-items{padding-right:20px;padding-left:20px}@media screen and (max-width:640px){.content-items{margin-top:30px}}@media screen and (min-width:641px){.content-items{margin-top:100px}}.content-item{margin-bottom:15px}.item-top{position:relative}.item-top:before{display:block;content:"";width:100%;padding-top:100%}.item-top>.aspect-ratio-inner{position:absolute;top:0;right:0;bottom:0;left:0}[data-view-state=editmode] .item-top{cursor:pointer}.item-top:hover .btn,.item-top:hover .edy-img-drop-area-remove-image{opacity:1}.item-top .btn{padding:0;background-color:rgba(0,102,187,.3);border:0;opacity:0;-webkit-transition:background-color .5s,opacity .5s;-o-transition:background-color .5s,opacity .5s;transition:background-color .5s,opacity .5s}.item-top .btn:hover{background-color:#06b}.item-top .bg-crop-btn{height:45px;width:45px;position:absolute;top:0;left:0;z-index:9;margin-top:10px;margin-left:10px;cursor:pointer;border-radius:100%;color:#fff}.item-top .bg-crop-btn:focus{outline:0}.item-top .bg-crop-btn.is-visible{display:block}.item-top .bg-crop-btn.is-hidden,.without-image .item-top .bg-crop-btn{display:none}.item-top .edy-img-drop-area-remove-image{height:45px;width:45px;top:10px;right:10px;z-index:9;color:#fff;background-color:rgba(0,102,187,.3);border:0;opacity:0;-webkit-transition:background-color .5s,opacity .5s;-o-transition:background-color .5s,opacity .5s;transition:background-color .5s,opacity .5s}.item-top .edy-img-drop-area-remove-image:hover{background-color:#06b}.item-top .edy-img-drop-area-remove-image-ico{margin-top:-10px;margin-left:-8px}.item-top .top-inner{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-weight:300;line-height:1.2;text-align:center}.publicmode .item-top .top-inner{overflow:hidden}.publicmode .item-top .top-inner .image-landscape.not-cropped{width:100%;height:auto;max-width:100%}.publicmode .item-top .top-inner .image-landscape.is-cropped{width:auto;height:100%}.publicmode .item-top .top-inner .image-portrait.not-cropped{width:auto;height:100%;max-height:100%}.publicmode .item-top .top-inner .image-portrait.is-cropped{width:100%;height:auto}.publicmode .item-top .top-inner .image-square{width:100%;height:auto}.with-image .item-top .top-inner:not(.product-page-image){background-color:rgba(0,0,0,.02)}.without-image .item-top .top-inner{border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px}.product-content .item-top .top-inner .item-image{height:100%;width:100%;-o-object-fit:contain;object-fit:contain}@media screen and (max-width:240px){.item-top .top-inner{font-size:16px}}@media screen and (min-width:241px){.item-top .top-inner{font-size:13px}}@media screen and (min-width:291px){.item-top .top-inner{font-size:16px}}@media screen and (min-width:341px){.item-top .top-inner{font-size:20px}}@media screen and (min-width:1025px){.item-top .top-inner{font-size:30px}}.item-top .image-drop-area{background-position:center!important;background-repeat:no-repeat}.item-top .image-drop-area.not-cropped{background-size:contain}.item-top .image-drop-area:not(.active){border-color:rgba(0,0,0,.4);border-style:dashed;border-width:1px}.item-top .image-drop-area:not(.active):hover{border-style:solid}@media screen and (max-width:640px){.item-top .image-drop-area .edy-img-drop-area-placeholder{font-size:13px}}@media screen and (min-width:641px){.item-top .image-drop-area .edy-img-drop-area-placeholder{font-size:16px}}.item-image{border:0}.publicmode .item-image.is-cropped{position:absolute;top:-100%;right:-100%;bottom:-100%;left:-100%;max-width:none;margin:auto}.item-list-page .item-image{display:block}.item-placeholder{width:100%;padding:.5em;-webkit-box-sizing:border-box;box-sizing:border-box}.item-title{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;margin-top:0;margin-bottom:0;line-height:1.2;text-align:center}.item-title .item-link{color:inherit}.content-item-box .item-title .item-link{display:block}.item-list-page .item-title{font-weight:400}@media only screen and (-webkit-min-device-pixel-ratio:1.3),only screen and (-o-min-device-pixel-ratio:13/10),only screen and (-webkit-min-device-pixel-ratio:1.25),only screen and (-o-min-device-pixel-ratio:5/4),only screen and (min-resolution:120dpi){.item-list-page .item-title{font-weight:100}}@media screen and (max-width:640px){.content-item-box .item-title{font-size:13px}}@media screen and (min-width:641px){.content-item-box .item-title{font-size:16px}}@media screen and (max-width:640px){.content-item .item-title{font-size:16px}}@media screen and (min-width:641px){.content-item .item-title{font-size:30px}}@media screen and (max-width:640px){.blog-article-page .item-title{font-size:32px}}@media screen and (min-width:641px){.blog-article-page .item-title{font-size:50px}}.content-item-box>.item-title{margin-top:20px;margin-bottom:5px}@media screen and (min-width:641px){.content-illustrations{-webkit-box-flex:1;-ms-flex:1;flex:1;max-width:520px;margin-right:40px}}@media screen and (max-width:640px){.item-page .content-body:not(.product-content-right){padding-top:40px}}@media screen and (min-width:641px){.item-page .content-body:not(.product-content-right){-webkit-box-flex:1;-ms-flex:1;flex:1}}.items-body{padding-top:30px;padding-bottom:30px}@media screen and (min-width:641px){.items-body{display:-webkit-box;display:-ms-flexbox;display:flex}}.site-footer{position:relative;min-height:100px}.site-footer .inner{min-height:25px;padding-top:40px;padding-bottom:40px}.site-footer .dark-background .content-area a{color:#fff}.site-footer .voog-reference{opacity:.55;padding:0 0 40px;color:#000;text-align:center}.site-footer .voog-reference:hover{opacity:.8}.site-footer .voog-reference-with-padding{padding-top:40px}.site-footer .blog-article-nav{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;display:table;width:100%;background-color:#fff}@media screen and (max-width:640px){.site-footer .blog-article-nav{display:block}}.site-footer .blog-article-nav .article-nav-full,.site-footer .blog-article-nav .article-nav-half{position:relative;display:table-cell;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%;vertical-align:top;border-top:1px solid rgba(0,0,0,.1)}@media screen and (max-width:640px){.site-footer .blog-article-nav .article-nav-full,.site-footer .blog-article-nav .article-nav-half{display:block;width:100%}}.site-footer .blog-article-nav .article-nav-full:hover,.site-footer .blog-article-nav .article-nav-half:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.site-footer .blog-article-nav .article-nav-full:hover .article-nav-title,.site-footer .blog-article-nav .article-nav-half:hover .article-nav-title{opacity:1}.site-footer .blog-article-nav .article-nav-full:hover .article-nav-direction,.site-footer .blog-article-nav .article-nav-half:hover .article-nav-direction{opacity:.7}.site-footer .blog-article-nav .article-nav-full a,.site-footer .blog-article-nav .article-nav-half a{display:block;height:100%;padding:55px 50px}@media screen and (max-width:640px){.site-footer .blog-article-nav .article-nav-full a,.site-footer .blog-article-nav .article-nav-half a{padding:30px 20px;text-align:center}}.site-footer .blog-article-nav .article-nav-full{display:block;width:100%}.site-footer .blog-article-nav .article-nav-full a{text-align:center}.site-footer .blog-article-nav .article-nav-prev{text-align:right}.site-footer .blog-article-nav .article-nav-next{border-left:1px solid rgba(0,0,0,.1)}@media screen and (max-width:640px){.site-footer .blog-article-nav .article-nav-next{margin-left:0;border-top:1px solid rgba(0,0,0,.1);border-left:0}}.site-footer .blog-article-nav .article-nav-inner{display:inline-block;width:100%;max-width:400px}.site-footer .blog-article-nav .article-nav-direction{margin-bottom:3px;font-size:12px;font-weight:400;line-height:2;color:#000;opacity:.35;letter-spacing:1px;text-transform:uppercase}.site-footer .blog-article-nav .article-nav-title{font-size:24px;line-height:30px;color:#000;opacity:.7}.site-footer .blog-article-nav .article-nav-bg{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.site-footer .blog-article-nav.dark-background .article-nav-full,.site-footer .blog-article-nav.dark-background .article-nav-half{border-top:1px solid rgba(255,255,255,.1)}.site-footer .blog-article-nav.dark-background .article-nav-title{color:rgba(255,255,255,.7)}.site-footer .blog-article-nav.dark-background .article-nav-direction{color:rgba(255,255,255,.35)}.site-footer .blog-article-nav.dark-background .article-nav-next{border-left:1px solid rgba(255,255,255,.1)}@media screen and (max-width:640px){.site-footer .blog-article-nav.dark-background .article-nav-next{border-top:1px solid rgba(255,255,255,.1)}}@media screen and (max-width:640px){.comments-open .site-footer{display:none}}.site-footer .footer-body{display:-webkit-box;display:-ms-flexbox;display:flex}.site-footer .footer-body .voog-bg-picker-btn{top:-8px;left:34px}.site-footer .footer-body .footer-social-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.site-footer .footer-body .footer-social-wrap .footer-social{max-width:84px}.site-footer .footer-body .footer-social-wrap .footer-social .edy-content-social-buttons-list .edy-content-social-button{display:block;border-bottom:dotted 1px}.site-footer .footer-body .footer-social-wrap .footer-social .edy-content-social-buttons-list .edy-content-social-button:last-child{border-bottom:none}.site-footer .footer-body .footer-social-wrap .footer-social .edy-content-social-buttons-list svg{display:-webkit-box;display:-ms-flexbox;display:flex}.site-footer .footer-body .footer-content-wrap{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:640px){.site-footer .footer-body .footer-content-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.site-footer .footer-body .footer-content-wrap .footer-contact-wrap{width:50%;margin:24px 0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;border-left:dotted 1px #0083ba}@media screen and (max-width:1024px){.site-footer .footer-body .footer-content-wrap .footer-contact-wrap{width:60%}}@media screen and (max-width:640px){.site-footer .footer-body .footer-content-wrap .footer-contact-wrap{width:calc(100% - 24px);margin:0 0 24px 24px}}.site-footer .footer-body .footer-content-wrap .footer-contact-wrap .footer-contact{padding:0 24px;min-width:300px}@media screen and (max-width:640px){.site-footer .footer-body .footer-content-wrap .footer-contact-wrap .footer-contact{padding-right:32px;min-width:calc(100% - 108px)}}.site-footer .footer-body .footer-content-wrap .footer-menu-wrap{width:30%;margin:24px 0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;border-left:dotted 1px #0083ba}@media screen and (max-width:1024px){.site-footer .footer-body .footer-content-wrap .footer-menu-wrap{width:calc(40% - 24px);margin:24px 0 24px 24px}}@media screen and (max-width:640px){.site-footer .footer-body .footer-content-wrap .footer-menu-wrap{width:calc(100% - 24px)}}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap{width:20%}@media screen and (max-width:1024px){.site-footer .footer-body .footer-content-wrap .footer-logo-wrap{display:none}}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap.empty-hidden{display:none}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo{max-width:250px;margin:24px 0 24px 24px;margin-right:0;position:relative;position:relative}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo:before{display:block;content:"";width:100%;padding-top:50%}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo>.aspect-ratio-inner{position:absolute;top:0;right:0;bottom:0;left:0}.site-footer .footer-body .footer-content-wrap .footer-logo-wrap .footer-logo .aspect-ratio-inner{background-size:contain;background-position:center!important;background-repeat:no-repeat}.signout-btn-wrap{position:fixed;right:5px;bottom:5px;z-index:10000;white-space:nowrap;background-color:#eee;height:35px;border-radius:3px;text-align:center;-webkit-box-shadow:0 1px 6px rgba(0,0,0,.5);box-shadow:0 1px 6px rgba(0,0,0,.5)}.signout-btn-wrap:hover{background-color:#c4c4c4}.signout-btn-wrap .signout-link{position:relative;z-index:10;display:block;padding:0 10px}.signout-btn-wrap .signout-name{display:inline-block;vertical-align:top;font-size:16px;font-weight:400;font-family:Roboto,sans-serif;line-height:37px;padding-left:8px;color:rgba(27,33,36,.8)}.signout-btn-wrap .signout-name:hover{color:rgba(27,33,36,.9)}.signout-btn-wrap .signout-ico{height:35px;display:inline-block;color:rgba(27,33,36,.7)}.signout-btn-wrap .signout-svg{margin-top:3px}.content-area{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;color:rgba(0,0,0,.7);font-size:18px;line-height:1.7}.content-area:empty{display:none}.dark-background .content-area{color:#fff}.site-footer .dark-background .content-area{color:#fff}.site-footer .content-area{text-align:center;font-size:16px;color:rgba(0,0,0,.7)}.content-area.footer-left{font-size:16px}.content-area.footer-right{font-size:16px}.content-area .edy-positionable-container-center-block:first-child,.content-area .edy-positionable-container-left-block:first-child,.content-area .edy-positionable-container-maxwidth:first-child,.content-area .edy-positionable-container-right-block:first-child,.content-area .edy-texteditor-container-wrapper-center:first-child,.content-area .edy-texteditor-container-wrapper-left-block:first-child,.content-area .edy-texteditor-container-wrapper-right-block:first-child,.content-area .table-container:first-child,.content-area code:first-child,.content-area dl:first-child,.content-area form:first-child,.content-area h1:first-child,.content-area h2:first-child,.content-area h3:first-child,.content-area h4:first-child,.content-area h5:first-child,.content-area h6:first-child,.content-area iframe:first-child,.content-area ol:first-child,.content-area p:first-child,.content-area pre:first-child,.content-area table:first-child,.content-area ul:first-child{margin-top:0}.content-area .edy-positionable-container-center-block:last-child,.content-area .edy-positionable-container-left-block:last-child,.content-area .edy-positionable-container-maxwidth:last-child,.content-area .edy-positionable-container-right-block:last-child,.content-area .edy-texteditor-container-wrapper-center:last-child,.content-area .edy-texteditor-container-wrapper-left-block:last-child,.content-area .edy-texteditor-container-wrapper-right-block:last-child,.content-area .table-container:last-child,.content-area code:last-child,.content-area dl:last-child,.content-area form:last-child,.content-area h1:last-child,.content-area h2:last-child,.content-area h3:last-child,.content-area h4:last-child,.content-area h5:last-child,.content-area h6:last-child,.content-area iframe:last-child,.content-area ol:last-child,.content-area p:last-child,.content-area pre:last-child,.content-area table:last-child,.content-area ul:last-child{margin-bottom:0}.dark-background .content-area code,.dark-background .content-area h1,.dark-background .content-area h2,.dark-background .content-area h3,.dark-background .content-area h4,.dark-background .content-area h5,.dark-background .content-area h6,.dark-background .content-area ol,.dark-background .content-area p,.dark-background .content-area pre,.dark-background .content-area table,.dark-background .content-area ul{color:#fff}.footer-inner.dark-background .content-area code,.footer-inner.dark-background .content-area h1,.footer-inner.dark-background .content-area h2,.footer-inner.dark-background .content-area h3,.footer-inner.dark-background .content-area h4,.footer-inner.dark-background .content-area h5,.footer-inner.dark-background .content-area h6,.footer-inner.dark-background .content-area ol,.footer-inner.dark-background .content-area p,.footer-inner.dark-background .content-area pre,.footer-inner.dark-background .content-area table,.footer-inner.dark-background .content-area ul{color:rgba(255,255,255,.5)}.content-area h1,.content-area h2,.content-area h3,.content-area h4,.content-area h5,.content-area h6{font-weight:300;color:#000;line-height:1.4}.content-area h1 a,.content-area h2 a,.content-area h3 a,.content-area h4 a,.content-area h5 a,.content-area h6 a{color:#000;text-decoration:none}.site-header .content-area h1:first-child,.site-header .content-area h2:first-child{margin-top:0}.site-header .content-area h1:last-child,.site-header .content-area h2:last-child{margin-bottom:0}.content-area h1{font-size:30px;font-weight:300}.site-header .content-area h1{margin-top:.3em;margin-bottom:.3em;text-transform:uppercase;font-size:70px;font-weight:300;line-height:1.1}.site-header .content-area h1.blog-title,.site-header .content-area h1.blog-title a{margin-top:.3em;margin-bottom:.3em;font-size:70px;font-style:normal;font-weight:300;line-height:1.1;text-align:center;text-decoration:none;text-transform:uppercase}@media screen and (max-width:640px){.site-header .content-area h1{font-size:30px}}.content-area h1.article-title{font-style:normal;text-decoration:none}.blog-article-page .content-area h1.article-title{text-align:center}.content-area h2{font-size:24px;line-height:1.4}@media screen and (max-width:640px){.content-area h2{font-size:24px}}.site-header .content-area h2{margin-top:.2em;margin-bottom:.2em}.contacts .content-area h3,.contacts .content-area h4,.contacts .content-area h5,.contacts .content-area h6{font-weight:400}.site-footer .content-area dl,.site-footer .content-area ol,.site-footer .content-area p,.site-footer .content-area ul{color:rgba(0,0,0,.7)}.site-footer .dark-background .content-area dl,.site-footer .dark-background .content-area ol,.site-footer .dark-background .content-area p,.site-footer .dark-background .content-area ul{color:#fff}.content-area dl,.content-area ol,.content-area ul{text-align:left}.content-area dl li,.content-area ol li,.content-area ul li{margin-top:10px}.content-area ul{list-style-type:none}.content-area ul li{position:relative}.content-area ul li:before{position:absolute;top:.2em;left:-15px;display:inline-block;vertical-align:middle;font-size:1em;font-weight:700;line-height:inherit;content:"°"}.content-area a{color:#000;text-decoration:underline;cursor:pointer}.content-area a:hover{text-decoration:none}.dark-background .content-area a{color:#fff}.content-area b,.content-area strong{font-weight:400;color:#000}.content-area code,.content-area form,.content-area iframe,.content-area pre,.content-area table{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;word-break:normal;word-wrap:normal}.content-area .edy-positionable-container-center-block,.content-area .edy-positionable-container-left-block,.content-area .edy-positionable-container-right-block,.content-area .embed-container,.content-area .table-container,.content-area pre,.editmode .content-area table{margin-top:30px;margin-bottom:30px}.content-area code,.content-area pre{font-size:16px;background-color:rgba(0,0,0,.1)}.content-area pre{overflow:auto;-webkit-overflow-scrolling:touch;padding:10px}.content-area pre code{display:inline;padding:0;white-space:pre;line-height:inherit;background-color:transparent;overflow-wrap:normal;word-wrap:normal;word-break:normal}.content-area code{display:inline-block;padding:5px;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all}.content-area blockquote{margin:20px 40px 20px 0;padding-left:20px;border-left:2px solid}.content-area iframe{max-width:100%}.map .content-area iframe{margin-top:0}.content-area .custom-btn,.content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{display:inline-block;background-color:#0083ba;border-color:#0083ba;-webkit-box-sizing:border-box;box-sizing:border-box;padding:6px 20px;text-transform:uppercase;font-size:16px;font-weight:700;line-height:1.7;text-align:center;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word;text-decoration:none;border-radius:6px}.publicmode .content-area .custom-btn,.publicmode .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{cursor:pointer}.site-header .content-area .custom-btn,.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{margin-top:30px;margin-bottom:30px}.site-header .content-area .custom-btn:first-child,.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:first-child{margin-top:0}.site-header .content-area .custom-btn:last-child,.site-header .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:last-child{margin-bottom:0}.dark-background .content-area .custom-btn,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{border:2px solid #0083ba;background-color:#0083ba;color:#fff}.light-background .content-area .custom-btn,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn{border:2px solid #0083ba;background-color:#0083ba;color:#fff}.dark-background .content-area .custom-btn-disabled,.dark-background .content-area .custom-btn.edy-buy-button-disabled,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled,.light-background .content-area .custom-btn-disabled,.light-background .content-area .custom-btn.edy-buy-button-disabled,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled{background-color:transparent}.dark-background .content-area .custom-btn-disabled,.dark-background .content-area .custom-btn-disabled:hover,.dark-background .content-area .custom-btn.edy-buy-button-disabled,.dark-background .content-area .custom-btn.edy-buy-button-disabled:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover,.light-background .content-area .custom-btn-disabled,.light-background .content-area .custom-btn-disabled:hover,.light-background .content-area .custom-btn.edy-buy-button-disabled,.light-background .content-area .custom-btn.edy-buy-button-disabled:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover{color:#999;cursor:default;border:2px solid #999}.dark-background .content-area .custom-btn-disabled:hover,.dark-background .content-area .custom-btn.edy-buy-button-disabled:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover,.light-background .content-area .custom-btn-disabled:hover,.light-background .content-area .custom-btn.edy-buy-button-disabled:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn-disabled:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn.edy-buy-button-disabled:hover{background-color:transparent}.content-area .custom-btn:hover,.content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.dark-background .content-area .custom-btn:hover,.dark-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover{border:2px solid #015477;background-color:#015477;color:#fff}.light-background .content-area .custom-btn:hover,.light-background .content-area .edy-product-widget-list .edy-product-widget-item-wrap .edy-product-widget-item .edy-product-widget-item-details-wrap .edy-product-widget-item-btn-wrap .edy-product-widget-item-btn:hover{border:2px solid #015477;background-color:#015477;color:#fff}.content-area .contacts::first-line{color:red!important}.content-area .edy-positionable-container-left{margin-right:3%}.content-area .edy-positionable-container-right{margin-left:3%}.content-area .edy-image-container-with-title:after{display:block;padding:4px;font-size:13px;line-height:1.4em;content:attr(data-title)}.content-area .table-container{border-right:1px solid rgba(0,0,0,.1);border-left:1px solid rgba(0,0,0,.1)}.content .content-area .table-container{margin-bottom:35px}.content-area .overthrow{overflow:auto;-webkit-overflow-scrolling:touch}.contacts .content-area .overthrow{-webkit-overflow-scrolling:none}.content-area form{margin:20px 0}.content-area form:first-child{margin-top:0}.content-area table{width:100%;margin:0 auto;font-size:16px;border-collapse:collapse;border-spacing:0}.editmode .content .content-area table{margin-bottom:35px}.contacts .content-area table,.editmode .contacts .content-area table{margin-bottom:0}.content-area table td,.content-area table th{padding:9px 13px}.dark-background .content-area table td,.dark-background .content-area table th{border-color:#fff;border-style:solid;border-width:1px}.content-area table th{text-align:left;font-weight:400;color:#fff;background-color:#000;border-color:#000;border-style:solid;border-width:1px}.footer .content-area table th{color:rgba(255,255,255,.5)}.content-area table td{border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px}.dark-background .content-area table td{border-color:rgba(255,255,255,.1);border-style:solid;border-width:1px}.contacts .content-area table,.footer .content-area table{width:auto;border:none}.contacts .content-area table tr td,.footer .content-area table tr td{background:0 0}.contacts .content-area table tr td:first-child,.footer .content-area table tr td:first-child{padding-left:0;border-left:none}.contacts .content-area table tr td:last-child,.footer .content-area table tr td:last-child{padding-right:0}.contacts .content-area table{font-size:24px;line-height:1em}.contacts .content-area table tr td{padding:0 25px;color:rgba(0,0,0,.7);border-top:none;border-left:2px solid rgba(0,0,0,.2);border-right:none;border-bottom:none}@media screen and (max-width:984px){.contacts .content-area table{font-size:20px}}@media screen and (max-width:850px){.contacts .content-area table{font-size:16px}}.footer .content-area table tr td{padding:0 12px;border:none}.footer .content-area table tr td:last-child{padding-right:0}@media screen and (max-width:522px){.contacts .content-area table,.contacts .content-area table tbody,.contacts .content-area table tr,.footer .content-area table,.footer .content-area table tbody,.footer .content-area table tr{display:block}.contacts .content-area table tr td,.footer .content-area table tr td{width:100%;float:left;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.contacts .content-area table{line-height:inherit}.contacts .content-area table tr td{border-left:none;border-bottom:2px solid rgba(0,0,0,.2)}}.content-area .form,.content-area form{clear:both;font-size:16px}.content-area .form_field{padding-top:8px;padding-bottom:8px}.content-area .form_field:first-child{padding-top:0}.content-area .form_field:last-child{padding-bottom:0}.content-area .form_field .edy-fe-label,.content-area .form_field label{font-size:16px;position:relative;display:block;margin-bottom:5px}.content-area .form_field_required .form_field_label:after{content:"* \a"}.dark-background .content-area .form_field_checkbox+.form_control_indicator,.dark-background .content-area .form_field_radio+.form_control_indicator,.dark-background .content-area .form_field_select,.dark-background .content-area .form_field_textarea,.dark-background .content-area .form_field_textfield{background-color:rgba(255,255,255,.1)}.light-background .content-area .form_field_checkbox+.form_control_indicator,.light-background .content-area .form_field_radio+.form_control_indicator,.light-background .content-area .form_field_select,.light-background .content-area .form_field_textarea,.light-background .content-area .form_field_textfield{background-color:rgba(0,0,0,.03)}.content-area .form_field_select,.content-area .form_field_textarea,.content-area .form_field_textfield{font-size:16px;font-weight:300;line-height:26px;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:100%;padding:8px 13px;vertical-align:bottom;border-width:1px;border-style:solid;outline:0}.content-area .form_field_select::-webkit-input-placeholder,.content-area .form_field_textarea::-webkit-input-placeholder,.content-area .form_field_textfield::-webkit-input-placeholder{color:#000;opacity:.35}.content-area .form_field_select:-ms-input-placeholder,.content-area .form_field_textarea:-ms-input-placeholder,.content-area .form_field_textfield:-ms-input-placeholder{color:#000;opacity:.35}.content-area .form_field_select::-ms-input-placeholder,.content-area .form_field_textarea::-ms-input-placeholder,.content-area .form_field_textfield::-ms-input-placeholder{color:#000;opacity:.35}.content-area .form_field_select::placeholder,.content-area .form_field_textarea::placeholder,.content-area .form_field_textfield::placeholder{color:#000;opacity:.35}.dark-background .content-area .form_field_select,.dark-background .content-area .form_field_textarea,.dark-background .content-area .form_field_textfield{color:#fff;border-color:rgba(255,255,255,.3)}.light-background .content-area .form_field_select,.light-background .content-area .form_field_textarea,.light-background .content-area .form_field_textfield{color:rgba(0,0,0,.7);border-color:rgba(0,0,0,.13)}.dark-background .content-area .form_field_select:focus,.dark-background .content-area .form_field_textarea:focus,.dark-background .content-area .form_field_textfield:focus{border-color:#fff}.light-background .content-area .form_field_select:focus,.light-background .content-area .form_field_textarea:focus,.light-background .content-area .form_field_textfield:focus{border-color:rgba(0,0,0,.35)}.content-area .form_field_select.form_field_size_small,.content-area .form_field_textarea.form_field_size_small,.content-area .form_field_textfield.form_field_size_small{width:280px}.content-area .form_field_select.form_field_size_medium,.content-area .form_field_textarea.form_field_size_medium,.content-area .form_field_textfield.form_field_size_medium{width:420px}.content-area .form_field_select.form_field_size_large,.content-area .form_field_textarea.form_field_size_large,.content-area .form_field_textfield.form_field_size_large{width:100%}.content-area .form_field_select{position:relative;padding-right:27px;background-repeat:no-repeat;background-position:right 10px center;-moz-appearance:none;-ms-appearance:none}.dark-background .content-area .form_field_select{background-image:url(../assets/ico-arrow-white.svg)}.light-background .content-area .form_field_select{background-image:url(../assets/ico-arrow.svg)}.content-area .form_field_select>option{background-color:#fff;color:#000}.content-area .form_field_select::-ms-expand{display:none}.content-area .form_field_select:after{position:absolute;top:0;right:15px;bottom:0;display:block;width:0;height:0;margin:auto 0;content:"";border-top:5px solid #ccc;border-right:5px solid transparent;border-left:5px solid transparent}.content-area .form_field_select.form_field_size_small{min-width:auto}.content-area .form_field_select.form_field_size_medium{min-width:124px}.content-area .form_field_select.form_field_size_large{min-width:184px}.svg .content-area .form_field_checkbox,.svg .content-area .form_field_radio{display:none}.svg .content-area .form_field_checkbox+.form_control_indicator,.svg .content-area .form_field_radio+.form_control_indicator{height:18px;width:18px;position:relative;display:inline-block;margin-right:10px;vertical-align:middle;border-width:1px;border-style:solid;border-color:rgba(0,0,0,.2)}.svg .dark-background .content-area .form_field_checkbox+.form_control_indicator,.svg .dark-background .content-area .form_field_radio+.form_control_indicator{border-color:rgba(255,255,255,.2)}.svg .content-area .form_field_radio+.form_control_indicator{top:-1px;border-radius:100%}.svg .content-area .form_field_radio+.form_control_indicator:before{height:12px;width:12px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .15s ease;transition:-webkit-transform .15s ease;-o-transition:transform .15s ease;transition:transform .15s ease;transition:transform .15s ease,-webkit-transform .15s ease;position:absolute;top:3px;left:3px;content:"";border-radius:100%;background-color:rgba(0,0,0,.4)}.svg .content-area .form_field_radio:checked+.form_control_indicator:before{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .15s ease;transition:-webkit-transform .15s ease;-o-transition:transform .15s ease;transition:transform .15s ease;transition:transform .15s ease,-webkit-transform .15s ease}.svg .dark-background .content-area .form_field_radio:checked+.form_control_indicator:before{background-color:rgba(255,255,255,.4)}.svg .content-area .form_field_checkbox+.form_control_indicator{top:-2px}.svg .content-area .form_field_checkbox+.form_control_indicator:before{-webkit-transform:scale(0) rotate(45deg);-ms-transform:scale(0) rotate(45deg);transform:scale(0) rotate(45deg);display:block;width:5px;height:10px;margin:1px 0 0 6px;content:"";-webkit-transition:-webkit-transform .15s ease 0s;transition:-webkit-transform .15s ease 0s;-o-transition:transform .15s ease 0s;transition:transform .15s ease 0s;transition:transform .15s ease 0s,-webkit-transform .15s ease 0s;border-width:0 2px 2px 0;border-style:none solid solid none;border-color:rgba(0,0,0,.4)}.svg .content-area .form_field_checkbox:checked+.form_control_indicator:before{-webkit-transform:scale(1) rotate(45deg);-ms-transform:scale(1) rotate(45deg);transform:scale(1) rotate(45deg);-webkit-transition:-webkit-transform .15s ease;transition:-webkit-transform .15s ease;-o-transition:transform .15s ease;transition:transform .15s ease;transition:transform .15s ease,-webkit-transform .15s ease}.svg .dark-background .content-area .form_field_checkbox+.form_control_indicator:before{border-color:rgba(255,255,255,.2)}.content-area .form_submit{margin-top:16px}.content-area .form_submit input{-webkit-appearance:none;border-radius:0;font-family:Roboto,sans-serif;font-size:16px;font-weight:400;line-height:2;padding:6px 20px;cursor:pointer;text-transform:uppercase;border:none;border-radius:6px}.content-area .form_submit input:hover{opacity:.7}.dark-background .content-area .form_submit input{border-color:#0083ba;background-color:#0083ba;color:#fff}.light-background .content-area .form_submit input{border-color:#0083ba;background-color:#0083ba;color:#fff}@media screen and (min-width:850px){.content-half .content-area .form_submit input{width:100%}}@media screen and (max-width:640px){.content-half .content-area .form_submit input{width:100%}}.content-area .form_submit input:hover{-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.content-area .form_submit input:focus{outline:0}.content-area .article-comments .form_submit input{width:100%}.content-area .form_error,.content-area .form_notice{font-size:22px;font-weight:300}.content-area .form_error,.content-area .form_field_error{color:red}.content-area .form_error{margin-bottom:20px;color:red}.content-area .form_field_with_errors .form_field_textarea,.content-area .form_field_with_errors .form_field_textfield{border:1px solid red}.content-area .form_field_error{font-size:16px}.content-area .form_notice{margin-bottom:20px;color:rgba(14,203,0,.7)}.content-area .edy-buy-button-container .form_field{padding:12px 0}.content-area .edy-buy-button-variants .form_field{padding-top:6px;padding-bottom:6px}.content-area .edy-buy-button-variants .form_field_select{width:initial} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 28986ec..f4001c5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -17,6 +17,11 @@ version "0.7.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd" +"@types/minimatch@^3.0.3": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" + integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== + "@types/q@^1.5.1": version "1.5.1" resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.1.tgz#48fd98c1561fe718b61733daed46ff115b496e18" @@ -45,6 +50,14 @@ ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + arch@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e" @@ -80,6 +93,11 @@ arr-union@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" +array-differ@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" + integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== + array-find-index@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" @@ -90,6 +108,11 @@ array-union@^1.0.1: dependencies: array-uniq "^1.0.1" +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" @@ -106,14 +129,15 @@ arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" +arrify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" + integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== + assign-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" -async@^0.9.0: - version "0.9.2" - resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" - async@^2.6.0, async@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" @@ -206,6 +230,11 @@ bin-wrapper@^4.0.0: os-filter-obj "^2.0.0" pify "^4.0.1" +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + bl@^1.0.0: version "1.2.1" resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e" @@ -247,6 +276,13 @@ braces@^2.3.1: split-string "^3.0.2" to-regex "^3.0.1" +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + browserslist@^4.4.1: version "4.4.1" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.1.tgz#42e828954b6b29a7a53e352277be429478a69062" @@ -374,6 +410,21 @@ chalk@^2.4.1, chalk@^2.4.2, chalk@~2.4.1: escape-string-regexp "^1.0.5" supports-color "^5.3.0" +"chokidar@>=3.0.0 <4.0.0": + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + class-utils@^0.3.5: version "0.3.6" resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" @@ -487,12 +538,6 @@ core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" -cross-spawn@^0.2.3: - version "0.2.9" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-0.2.9.tgz#bd67f96c07efb6303b7fe94c1e979f88478e0a39" - dependencies: - lru-cache "^2.5.0" - cross-spawn@^5.0.1: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" @@ -558,12 +603,6 @@ currently-unhandled@^0.4.1: dependencies: array-find-index "^1.0.1" -dargs@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" - dependencies: - number-is-nan "^1.0.0" - dateformat@~1.0.12: version "1.0.12" resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" @@ -1001,6 +1040,13 @@ fill-range@^4.0.0: repeat-string "^1.6.1" to-regex-range "^2.1.0" +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + find-parent-dir@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" @@ -1012,6 +1058,13 @@ find-up@^1.0.0: path-exists "^2.0.0" pinkie-promise "^2.0.0" +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + find-versions@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.0.0.tgz#2c05a86e839c249101910100b354196785a2c065" @@ -1050,6 +1103,11 @@ fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" +fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" @@ -1115,6 +1173,13 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" @@ -1288,16 +1353,6 @@ grunt-contrib-imagemin@^3.1.0: imagemin-optipng "^6.0.0" imagemin-svgo "^7.0.0" -grunt-contrib-sass@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/grunt-contrib-sass/-/grunt-contrib-sass-1.0.0.tgz#806838251cbc0e1a94d64d515cdd34cf674d701b" - dependencies: - async "^0.9.0" - chalk "^1.0.0" - cross-spawn "^0.2.3" - dargs "^4.0.0" - which "^1.0.5" - grunt-contrib-uglify@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.0.tgz#50aa36568cbf5f9532b35fe8b3dacf99210c909c" @@ -1366,6 +1421,11 @@ grunt-postcss@^0.9.0: diff "^3.0.0" postcss "^6.0.11" +grunt-sass@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/grunt-sass/-/grunt-sass-3.1.0.tgz#a5936cc2a80ec08092d9f31c101dc307d1e4f71c" + integrity sha512-90s27H7FoCDcA8C8+R0GwC+ntYD3lG6S/jqcavWm3bn9RiJTmSfOvfbFa1PXx4NbBWuiGQMLfQTj/JvvqT5w6A== + grunt@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/grunt/-/grunt-1.0.3.tgz#b3c99260c51d1b42835766e796527b60f7bba374" @@ -1529,6 +1589,11 @@ imagemin@^6.0.0: pify "^4.0.1" replace-ext "^1.0.0" +immutable@^4.0.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.4.tgz#2e07b33837b4bb7662f288c244d1ced1ef65a78f" + integrity sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA== + import-lazy@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-3.1.0.tgz#891279202c8a2280fdbd6674dbd8da1a1dfc67cc" @@ -1585,6 +1650,13 @@ is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + is-buffer@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" @@ -1675,6 +1747,13 @@ is-glob@^4.0.0: dependencies: is-extglob "^2.1.1" +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + is-jpg@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97" @@ -1689,6 +1768,11 @@ is-number@^3.0.0: dependencies: kind-of "^3.0.2" +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + is-object@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" @@ -1828,6 +1912,16 @@ livereload-js@^2.3.0: version "2.4.0" resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.4.0.tgz#447c31cf1ea9ab52fc20db615c5ddf678f78009c" +load-grunt-tasks@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/load-grunt-tasks/-/load-grunt-tasks-5.1.0.tgz#14894c27a7e34ebbef9937c39cc35c573cd04c1c" + integrity sha512-oNj0Jlka1TsfDe+9He0kcA1cRln+TMoTsEByW7ij6kyktNLxBKJtslCFEvFrLC2Dj0S19IWJh3fOCIjLby2Xrg== + dependencies: + arrify "^2.0.1" + multimatch "^4.0.0" + pkg-up "^3.1.0" + resolve-pkg "^2.0.0" + load-json-file@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" @@ -1838,6 +1932,14 @@ load-json-file@^1.0.0: pinkie-promise "^2.0.0" strip-bom "^2.0.0" +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + lodash@4.17.4, lodash@~4.17.4: version "4.17.4" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" @@ -1877,10 +1979,6 @@ lpad-align@^1.0.1: longest "^1.0.0" meow "^3.3.0" -lru-cache@^2.5.0: - version "2.7.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" - lru-cache@^4.0.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" @@ -2033,6 +2131,17 @@ ms@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" +multimatch@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3" + integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ== + dependencies: + "@types/minimatch" "^3.0.3" + array-differ "^3.0.0" + array-union "^2.1.0" + arrify "^2.0.1" + minimatch "^3.0.4" + nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" @@ -2074,6 +2183,11 @@ normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + normalize-range@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" @@ -2211,6 +2325,20 @@ p-is-promise@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" +p-limit@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + p-map-series@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-1.0.0.tgz#bf98fe575705658a9e1351befb85ae4c1f07bdca" @@ -2241,6 +2369,11 @@ p-timeout@^2.0.1: dependencies: p-finally "^1.0.0" +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + parse-json@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" @@ -2261,6 +2394,11 @@ path-exists@^2.0.0: dependencies: pinkie-promise "^2.0.0" +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + path-is-absolute@^1.0.0, path-is-absolute@~1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" @@ -2287,6 +2425,11 @@ pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + pify@^2.0.0, pify@^2.2.0, pify@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -2309,6 +2452,13 @@ pinkie@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" +pkg-up@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" + integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== + dependencies: + find-up "^3.0.0" + plur@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/plur/-/plur-3.0.1.tgz#268652d605f816699b42b86248de73c9acd06a7c" @@ -2442,6 +2592,13 @@ readable-stream@^2.3.0: string_decoder "~1.1.1" util-deprecate "~1.0.1" +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + redent@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" @@ -2493,6 +2650,18 @@ requirejs@2.1.22: version "2.1.22" resolved "https://registry.yarnpkg.com/requirejs/-/requirejs-2.1.22.tgz#dd78fd2d34180c0d62c724b5b8aebc0664e0366f" +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg/-/resolve-pkg-2.0.0.tgz#ac06991418a7623edc119084edc98b0e6bf05a41" + integrity sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ== + dependencies: + resolve-from "^5.0.0" + resolve-url@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" @@ -2541,6 +2710,15 @@ safe-regex@^1.1.0: dependencies: ret "~0.1.10" +sass@^1.69.5: + version "1.69.5" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.69.5.tgz#23e18d1c757a35f2e52cc81871060b9ad653dfde" + integrity sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ== + dependencies: + chokidar ">=3.0.0 <4.0.0" + immutable "^4.0.0" + source-map-js ">=0.6.2 <2.0.0" + sax@~1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" @@ -2654,6 +2832,11 @@ sort-keys@^2.0.0: dependencies: is-plain-obj "^1.0.0" +"source-map-js@>=0.6.2 <2.0.0": + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + source-map-resolve@^0.5.0: version "0.5.2" resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" @@ -2889,6 +3072,13 @@ to-regex-range@^2.1.0: is-number "^3.0.0" repeat-string "^1.6.1" +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + to-regex@^3.0.1, to-regex@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" @@ -3028,7 +3218,7 @@ which-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" -which@^1.0.5, which@^1.2.9: +which@^1.2.9: version "1.3.0" resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" dependencies: