");
tabstrip.kendoTabStrip({
- animation: false
+ animation: {
+ open: {
+ effects: "fadeIn"
+ }
+ }
});
});
@@ -203,22 +223,124 @@ $(function(){
ul.appendTo(this);
});
-});
-$(function() {
- $(document.body)
- .on("click", ".hamb", function(e) {
- e.preventDefault();
- $("#page-nav").toggleClass("expanded");
- })
- .kendoTouch({
- tap: function(e) {
- var navigation = $("#page-nav");
- if (!$.contains(navigation[0], e.target)) {
- navigation.removeClass("expanded");
+ var options = {
+ root: null,
+ rootMargin: "0px",
+ threshold: 1.0
+ };
+
+ window.addEventListener("scroll", function(e) {
+ e.target.documentElement.classList[e.target.scrollingElement.scrollTop !== 0 ? "add" : "remove"]("ns-state-scrolled");
+ }, { passive: true });
+
+ var visibleElements = [];
+
+ var observer = new IntersectionObserver(function (entries) {
+ entries.forEach(function(entry) {
+ if (entry.intersectionRatio < 1) {
+ visibleElements.splice(visibleElements.indexOf(entry.target), 1);
+ } else {
+ visibleElements[entry.intersectionRect.y < entry.rootBounds.height ? "unshift" : "push"](entry.target);
+ }
+ });
+
+ if (visibleElements[0]) {
+ var topElement = { offsetTop: 9999999 };
+
+ visibleElements.forEach(function (element) {
+ if (element.offsetTop < topElement.offsetTop) {
+ topElement = element;
}
+ });
+
+ topElement = $('.right-nav__tree [href$="#' + topElement.id + '"]');
+
+ if (topElement[0]) {
+ $(".right-nav__tree a").removeClass("ns-state-selected");
+
+ topElement.addClass("ns-state-selected");
+ }
+ }
+ }, options);
+
+ var seeAlso = $("#see-also");
+ var seeAlsoLinks = seeAlso.next("ul");
+
+ seeAlso.remove();
+
+ var apiReferences = $("article > p > a[href*=api-reference]");
+ var rightNavLinks = $(".right-nav__links");
+
+ var rightNav = $('\
+
')
+ .insertBefore($("article"))
+ .children(".right-nav__tree");
+
+ var articleAnchors = $(traverseAnchors($("article > h2 > a"), 2));
+
+ if (articleAnchors.children()[0]) {
+ rightNav
+ .append($("
In this article
"))
+ .append(articleAnchors);
+ }
+
+ if (seeAlsoLinks[0]) {
+ rightNav
+ .append($("
Related articles
"))
+ .append(seeAlsoLinks);
+ }
+
+ if (apiReferences[0]) {
+ apiReferences.parent().remove();
+
+ rightNav
+ .append($("
API Reference
"))
+ .append(apiReferences.wrap("
").parent().wrapAll("
").parent());
+ }
+
+ if (rightNavLinks[0]) {
+ rightNav
+ .append($("
Not finding the help you need?
"))
+ .append(rightNavLinks);
+ }
+
+ $(document.documentElement).on("click", function() {
+ var toggle = $("#right-nav__toggle")[0];
+
+ if (toggle) {
+ toggle.checked = false;
+ }
+ });
+
+ $(".right-nav__container").on("click", function(e) {
+ e.stopPropagation();
+ });
+
+ $("article > h2, article > h3").each(function(index, node) {
+ observer.observe(node);
+ });
+
+ var bodyObserver = new MutationObserver(function(entries) {
+ entries.forEach(function() {
+ if (document.body.classList.contains("gsc-overflow-hidden")) {
+ document.documentElement.classList.add("-overflow-hidden");
+ } else {
+ document.documentElement.classList.remove("-overflow-hidden");
}
});
+ });
+
+ bodyObserver.observe(document.body, {
+ attributes: true,
+ attributeOldValue: true,
+ attributeFilter: ["class"]
+ });
});
$(function() {
@@ -268,43 +390,3 @@ $(function() {
window.setTimeout(handleBanner, 1000);
});
-$(function() {
- 'use strict';
-
- var $searchBtn = $('.Search-open');
- var $searchBar = $('.Search-container');
- var $searchCancel = $('.Btn--cancel');
- var $navLinks = $('.Nav-menu .-fl');
- var $navLinksMobileToggle = $('.Nav-open-menu');
-
- // improve menu
- $navLinks.find('a').each(function() {
- if ($(this).attr('href') === document.location.pathname) {
- $(this).addClass('is-current');
- }
- });
-
- // show search menu
- $searchBtn.on('click', function() {
- $searchBtn.toggleClass('is-active');
- $searchBar.toggle();
- $('[name=search]').first().focus();
- // hide nav when opening search
- $navLinks.removeClass('is-visible');
- $navLinksMobileToggle.removeClass('is-active');
- });
- $searchCancel.on('click', function() {
- $searchBar.toggle();
- $searchBtn.toggleClass('is-active');
- });
-
- // show mobile menu
- $navLinksMobileToggle.on('click', function() {
- $(this).toggleClass('is-active');
- $navLinks.toggleClass('is-visible');
- // hide search when opening nav
- $searchBar.hide();
- $searchBtn.removeClass('is-active');
- });
-});
-
diff --git a/build/_assets/javascripts/feedback-form.js b/build/_assets/javascripts/feedback-form.js
index f21913f47..195e662d9 100644
--- a/build/_assets/javascripts/feedback-form.js
+++ b/build/_assets/javascripts/feedback-form.js
@@ -18,9 +18,12 @@ $(document).ready(function () {
textFeedback: "",
acceptFeedbackContact: false
};
-
- $("#feedback-checkbox-area").click(function (e) {
- $("span.k-tooltip-validation").remove();
+
+ var checkboxArea = $("#feedback-checkbox-area");
+
+ checkboxArea.click(function () {
+ checkboxArea.find("span.k-tooltip-validation").remove();
+ checkboxArea.find("textarea").removeClass("k-invalid");
});
var formIsProcessing = false;
@@ -66,7 +69,7 @@ $(document).ready(function () {
};
//Feedback menu controls
- var feedbackButtonsContainer = $("#helpful-buttons-container");
+ var feedbackButtonsContainer = $("#feedback-buttons-container");
var feedbackSubmittedContainer = $("#feedback-submitted-container");
var toggleFeedbackButtons = function (toggle) {
if (toggle) {
@@ -87,8 +90,8 @@ $(document).ready(function () {
//FORM
//Init the form popup window
var win = $("#feedback-form-window").kendoWindow({
- title: "Give article feedback",
- actions: ["Close"],
+ title: "Article feedback",
+ actions: [],
draggable: true,
modal: true,
pinned: false,
@@ -125,7 +128,7 @@ $(document).ready(function () {
//Bind model to form
kendo.bind($("div#feedback-form-window"), formModel);
//Attach to form submit to adjust variables and send request
- var emptyFormValidator = $("#feedback-checkbox-area").kendoValidator({
+ var emptyFormValidator = checkboxArea.kendoValidator({
validateOnBlur: false,
messages: {
// defines a message for the custom validation rule
@@ -294,7 +297,7 @@ $(document).ready(function () {
var windowHeight = $window.height();
- var headerHeight = $(".TK-Hat").outerHeight() + $("#page-header").outerHeight();
+ var headerHeight = $(".TK-Hat").outerHeight() + $(".ns-navigation").outerHeight();
var footerHeight = $("#feedback-section").outerHeight() + $("footer").outerHeight();
var articleHeight = windowHeight - (headerHeight + footerHeight);
var feedbackOffsetTop = document.body.scrollHeight - footerHeight;
@@ -305,7 +308,7 @@ $(document).ready(function () {
function updateVariables() {
windowHeight = $window.height();
- headerHeight = $(".TK-Hat").outerHeight() + $("#page-header").outerHeight();
+ headerHeight = $(".TK-Hat").outerHeight() + $(".ns-navigation").outerHeight();
footerHeight = $("#feedback-section").outerHeight() + $("footer").outerHeight();
articleHeight = windowHeight - (headerHeight + footerHeight);
feedbackOffsetTop = document.body.scrollHeight - footerHeight;
@@ -380,8 +383,8 @@ $(document).ready(function () {
if (!shouldOverlayFeedback || showingFeedbackBar) {
return;
}
-
- if (scrollFold - $("#feedback-section").outerHeight() < feedbackOffsetTop) {
+
+ if (scrollFold - $("#feedback-section").outerHeight() * 2 < feedbackOffsetTop) {
Feedback.pinFeedback();
}
else {
diff --git a/build/_assets/stylesheets/fontawesome-all.css b/build/_assets/stylesheets/fontawesome-all.css
new file mode 100644
index 000000000..042cdc9eb
--- /dev/null
+++ b/build/_assets/stylesheets/fontawesome-all.css
@@ -0,0 +1,3977 @@
+/*!
+ * Font Awesome Pro 5.0.13 by @fontawesome - https://fontawesome.com
+ * License - https://fontawesome.com/license (Commercial License)
+ */
+.fa,
+.fas,
+.far,
+.fal,
+.fab {
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ display: inline-block;
+ font-style: normal;
+ font-variant: normal;
+ text-rendering: auto;
+ line-height: 1; }
+
+.fa-lg {
+ font-size: 1.33333em;
+ line-height: 0.75em;
+ vertical-align: -.0667em; }
+
+.fa-xs {
+ font-size: .75em; }
+
+.fa-sm {
+ font-size: .875em; }
+
+.fa-1x {
+ font-size: 1em; }
+
+.fa-2x {
+ font-size: 2em; }
+
+.fa-3x {
+ font-size: 3em; }
+
+.fa-4x {
+ font-size: 4em; }
+
+.fa-5x {
+ font-size: 5em; }
+
+.fa-6x {
+ font-size: 6em; }
+
+.fa-7x {
+ font-size: 7em; }
+
+.fa-8x {
+ font-size: 8em; }
+
+.fa-9x {
+ font-size: 9em; }
+
+.fa-10x {
+ font-size: 10em; }
+
+.fa-fw {
+ text-align: center;
+ width: 1.25em; }
+
+.fa-ul {
+ list-style-type: none;
+ margin-left: 2.5em;
+ padding-left: 0; }
+ .fa-ul > li {
+ position: relative; }
+
+.fa-li {
+ left: -2em;
+ position: absolute;
+ text-align: center;
+ width: 2em;
+ line-height: inherit; }
+
+.fa-border {
+ border: solid 0.08em #eee;
+ border-radius: .1em;
+ padding: .2em .25em .15em; }
+
+.fa-pull-left {
+ float: left; }
+
+.fa-pull-right {
+ float: right; }
+
+.fa.fa-pull-left,
+.fas.fa-pull-left,
+.far.fa-pull-left,
+.fal.fa-pull-left,
+.fab.fa-pull-left {
+ margin-right: .3em; }
+
+.fa.fa-pull-right,
+.fas.fa-pull-right,
+.far.fa-pull-right,
+.fal.fa-pull-right,
+.fab.fa-pull-right {
+ margin-left: .3em; }
+
+.fa-spin {
+ -webkit-animation: fa-spin 2s infinite linear;
+ animation: fa-spin 2s infinite linear; }
+
+.fa-pulse {
+ -webkit-animation: fa-spin 1s infinite steps(8);
+ animation: fa-spin 1s infinite steps(8); }
+
+@-webkit-keyframes fa-spin {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg); }
+ 100% {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@keyframes fa-spin {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg); }
+ 100% {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+.fa-rotate-90 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+ -webkit-transform: rotate(90deg);
+ transform: rotate(90deg); }
+
+.fa-rotate-180 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+ -webkit-transform: rotate(180deg);
+ transform: rotate(180deg); }
+
+.fa-rotate-270 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+ -webkit-transform: rotate(270deg);
+ transform: rotate(270deg); }
+
+.fa-flip-horizontal {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+ -webkit-transform: scale(-1, 1);
+ transform: scale(-1, 1); }
+
+.fa-flip-vertical {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+ -webkit-transform: scale(1, -1);
+ transform: scale(1, -1); }
+
+.fa-flip-horizontal.fa-flip-vertical {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+ -webkit-transform: scale(-1, -1);
+ transform: scale(-1, -1); }
+
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+ -webkit-filter: none;
+ filter: none; }
+
+.fa-stack {
+ display: inline-block;
+ height: 2em;
+ line-height: 2em;
+ position: relative;
+ vertical-align: middle;
+ width: 2em; }
+
+.fa-stack-1x,
+.fa-stack-2x {
+ left: 0;
+ position: absolute;
+ text-align: center;
+ width: 100%; }
+
+.fa-stack-1x {
+ line-height: inherit; }
+
+.fa-stack-2x {
+ font-size: 2em; }
+
+.fa-inverse {
+ color: #fff; }
+
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+readers do not read off random characters that represent icons */
+.fa-500px:before {
+ content: "\f26e"; }
+
+.fa-accessible-icon:before {
+ content: "\f368"; }
+
+.fa-accusoft:before {
+ content: "\f369"; }
+
+.fa-address-book:before {
+ content: "\f2b9"; }
+
+.fa-address-card:before {
+ content: "\f2bb"; }
+
+.fa-adjust:before {
+ content: "\f042"; }
+
+.fa-adn:before {
+ content: "\f170"; }
+
+.fa-adversal:before {
+ content: "\f36a"; }
+
+.fa-affiliatetheme:before {
+ content: "\f36b"; }
+
+.fa-alarm-clock:before {
+ content: "\f34e"; }
+
+.fa-algolia:before {
+ content: "\f36c"; }
+
+.fa-align-center:before {
+ content: "\f037"; }
+
+.fa-align-justify:before {
+ content: "\f039"; }
+
+.fa-align-left:before {
+ content: "\f036"; }
+
+.fa-align-right:before {
+ content: "\f038"; }
+
+.fa-allergies:before {
+ content: "\f461"; }
+
+.fa-amazon:before {
+ content: "\f270"; }
+
+.fa-amazon-pay:before {
+ content: "\f42c"; }
+
+.fa-ambulance:before {
+ content: "\f0f9"; }
+
+.fa-american-sign-language-interpreting:before {
+ content: "\f2a3"; }
+
+.fa-amilia:before {
+ content: "\f36d"; }
+
+.fa-anchor:before {
+ content: "\f13d"; }
+
+.fa-android:before {
+ content: "\f17b"; }
+
+.fa-angellist:before {
+ content: "\f209"; }
+
+.fa-angle-double-down:before {
+ content: "\f103"; }
+
+.fa-angle-double-left:before {
+ content: "\f100"; }
+
+.fa-angle-double-right:before {
+ content: "\f101"; }
+
+.fa-angle-double-up:before {
+ content: "\f102"; }
+
+.fa-angle-down:before {
+ content: "\f107"; }
+
+.fa-angle-left:before {
+ content: "\f104"; }
+
+.fa-angle-right:before {
+ content: "\f105"; }
+
+.fa-angle-up:before {
+ content: "\f106"; }
+
+.fa-angrycreative:before {
+ content: "\f36e"; }
+
+.fa-angular:before {
+ content: "\f420"; }
+
+.fa-app-store:before {
+ content: "\f36f"; }
+
+.fa-app-store-ios:before {
+ content: "\f370"; }
+
+.fa-apper:before {
+ content: "\f371"; }
+
+.fa-apple:before {
+ content: "\f179"; }
+
+.fa-apple-pay:before {
+ content: "\f415"; }
+
+.fa-archive:before {
+ content: "\f187"; }
+
+.fa-arrow-alt-circle-down:before {
+ content: "\f358"; }
+
+.fa-arrow-alt-circle-left:before {
+ content: "\f359"; }
+
+.fa-arrow-alt-circle-right:before {
+ content: "\f35a"; }
+
+.fa-arrow-alt-circle-up:before {
+ content: "\f35b"; }
+
+.fa-arrow-alt-down:before {
+ content: "\f354"; }
+
+.fa-arrow-alt-from-bottom:before {
+ content: "\f346"; }
+
+.fa-arrow-alt-from-left:before {
+ content: "\f347"; }
+
+.fa-arrow-alt-from-right:before {
+ content: "\f348"; }
+
+.fa-arrow-alt-from-top:before {
+ content: "\f349"; }
+
+.fa-arrow-alt-left:before {
+ content: "\f355"; }
+
+.fa-arrow-alt-right:before {
+ content: "\f356"; }
+
+.fa-arrow-alt-square-down:before {
+ content: "\f350"; }
+
+.fa-arrow-alt-square-left:before {
+ content: "\f351"; }
+
+.fa-arrow-alt-square-right:before {
+ content: "\f352"; }
+
+.fa-arrow-alt-square-up:before {
+ content: "\f353"; }
+
+.fa-arrow-alt-to-bottom:before {
+ content: "\f34a"; }
+
+.fa-arrow-alt-to-left:before {
+ content: "\f34b"; }
+
+.fa-arrow-alt-to-right:before {
+ content: "\f34c"; }
+
+.fa-arrow-alt-to-top:before {
+ content: "\f34d"; }
+
+.fa-arrow-alt-up:before {
+ content: "\f357"; }
+
+.fa-arrow-circle-down:before {
+ content: "\f0ab"; }
+
+.fa-arrow-circle-left:before {
+ content: "\f0a8"; }
+
+.fa-arrow-circle-right:before {
+ content: "\f0a9"; }
+
+.fa-arrow-circle-up:before {
+ content: "\f0aa"; }
+
+.fa-arrow-down:before {
+ content: "\f063"; }
+
+.fa-arrow-from-bottom:before {
+ content: "\f342"; }
+
+.fa-arrow-from-left:before {
+ content: "\f343"; }
+
+.fa-arrow-from-right:before {
+ content: "\f344"; }
+
+.fa-arrow-from-top:before {
+ content: "\f345"; }
+
+.fa-arrow-left:before {
+ content: "\f060"; }
+
+.fa-arrow-right:before {
+ content: "\f061"; }
+
+.fa-arrow-square-down:before {
+ content: "\f339"; }
+
+.fa-arrow-square-left:before {
+ content: "\f33a"; }
+
+.fa-arrow-square-right:before {
+ content: "\f33b"; }
+
+.fa-arrow-square-up:before {
+ content: "\f33c"; }
+
+.fa-arrow-to-bottom:before {
+ content: "\f33d"; }
+
+.fa-arrow-to-left:before {
+ content: "\f33e"; }
+
+.fa-arrow-to-right:before {
+ content: "\f340"; }
+
+.fa-arrow-to-top:before {
+ content: "\f341"; }
+
+.fa-arrow-up:before {
+ content: "\f062"; }
+
+.fa-arrows:before {
+ content: "\f047"; }
+
+.fa-arrows-alt:before {
+ content: "\f0b2"; }
+
+.fa-arrows-alt-h:before {
+ content: "\f337"; }
+
+.fa-arrows-alt-v:before {
+ content: "\f338"; }
+
+.fa-arrows-h:before {
+ content: "\f07e"; }
+
+.fa-arrows-v:before {
+ content: "\f07d"; }
+
+.fa-assistive-listening-systems:before {
+ content: "\f2a2"; }
+
+.fa-asterisk:before {
+ content: "\f069"; }
+
+.fa-asymmetrik:before {
+ content: "\f372"; }
+
+.fa-at:before {
+ content: "\f1fa"; }
+
+.fa-audible:before {
+ content: "\f373"; }
+
+.fa-audio-description:before {
+ content: "\f29e"; }
+
+.fa-autoprefixer:before {
+ content: "\f41c"; }
+
+.fa-avianex:before {
+ content: "\f374"; }
+
+.fa-aviato:before {
+ content: "\f421"; }
+
+.fa-aws:before {
+ content: "\f375"; }
+
+.fa-backward:before {
+ content: "\f04a"; }
+
+.fa-badge:before {
+ content: "\f335"; }
+
+.fa-badge-check:before {
+ content: "\f336"; }
+
+.fa-balance-scale:before {
+ content: "\f24e"; }
+
+.fa-balance-scale-left:before {
+ content: "\f515"; }
+
+.fa-balance-scale-right:before {
+ content: "\f516"; }
+
+.fa-ban:before {
+ content: "\f05e"; }
+
+.fa-band-aid:before {
+ content: "\f462"; }
+
+.fa-bandcamp:before {
+ content: "\f2d5"; }
+
+.fa-barcode:before {
+ content: "\f02a"; }
+
+.fa-barcode-alt:before {
+ content: "\f463"; }
+
+.fa-barcode-read:before {
+ content: "\f464"; }
+
+.fa-barcode-scan:before {
+ content: "\f465"; }
+
+.fa-bars:before {
+ content: "\f0c9"; }
+
+.fa-baseball:before {
+ content: "\f432"; }
+
+.fa-baseball-ball:before {
+ content: "\f433"; }
+
+.fa-basketball-ball:before {
+ content: "\f434"; }
+
+.fa-basketball-hoop:before {
+ content: "\f435"; }
+
+.fa-bath:before {
+ content: "\f2cd"; }
+
+.fa-battery-bolt:before {
+ content: "\f376"; }
+
+.fa-battery-empty:before {
+ content: "\f244"; }
+
+.fa-battery-full:before {
+ content: "\f240"; }
+
+.fa-battery-half:before {
+ content: "\f242"; }
+
+.fa-battery-quarter:before {
+ content: "\f243"; }
+
+.fa-battery-slash:before {
+ content: "\f377"; }
+
+.fa-battery-three-quarters:before {
+ content: "\f241"; }
+
+.fa-bed:before {
+ content: "\f236"; }
+
+.fa-beer:before {
+ content: "\f0fc"; }
+
+.fa-behance:before {
+ content: "\f1b4"; }
+
+.fa-behance-square:before {
+ content: "\f1b5"; }
+
+.fa-bell:before {
+ content: "\f0f3"; }
+
+.fa-bell-slash:before {
+ content: "\f1f6"; }
+
+.fa-bicycle:before {
+ content: "\f206"; }
+
+.fa-bimobject:before {
+ content: "\f378"; }
+
+.fa-binoculars:before {
+ content: "\f1e5"; }
+
+.fa-birthday-cake:before {
+ content: "\f1fd"; }
+
+.fa-bitbucket:before {
+ content: "\f171"; }
+
+.fa-bitcoin:before {
+ content: "\f379"; }
+
+.fa-bity:before {
+ content: "\f37a"; }
+
+.fa-black-tie:before {
+ content: "\f27e"; }
+
+.fa-blackberry:before {
+ content: "\f37b"; }
+
+.fa-blanket:before {
+ content: "\f498"; }
+
+.fa-blender:before {
+ content: "\f517"; }
+
+.fa-blind:before {
+ content: "\f29d"; }
+
+.fa-blogger:before {
+ content: "\f37c"; }
+
+.fa-blogger-b:before {
+ content: "\f37d"; }
+
+.fa-bluetooth:before {
+ content: "\f293"; }
+
+.fa-bluetooth-b:before {
+ content: "\f294"; }
+
+.fa-bold:before {
+ content: "\f032"; }
+
+.fa-bolt:before {
+ content: "\f0e7"; }
+
+.fa-bomb:before {
+ content: "\f1e2"; }
+
+.fa-book:before {
+ content: "\f02d"; }
+
+.fa-book-heart:before {
+ content: "\f499"; }
+
+.fa-book-open:before {
+ content: "\f518"; }
+
+.fa-bookmark:before {
+ content: "\f02e"; }
+
+.fa-bowling-ball:before {
+ content: "\f436"; }
+
+.fa-bowling-pins:before {
+ content: "\f437"; }
+
+.fa-box:before {
+ content: "\f466"; }
+
+.fa-box-alt:before {
+ content: "\f49a"; }
+
+.fa-box-check:before {
+ content: "\f467"; }
+
+.fa-box-fragile:before {
+ content: "\f49b"; }
+
+.fa-box-full:before {
+ content: "\f49c"; }
+
+.fa-box-heart:before {
+ content: "\f49d"; }
+
+.fa-box-open:before {
+ content: "\f49e"; }
+
+.fa-box-up:before {
+ content: "\f49f"; }
+
+.fa-box-usd:before {
+ content: "\f4a0"; }
+
+.fa-boxes:before {
+ content: "\f468"; }
+
+.fa-boxes-alt:before {
+ content: "\f4a1"; }
+
+.fa-boxing-glove:before {
+ content: "\f438"; }
+
+.fa-braille:before {
+ content: "\f2a1"; }
+
+.fa-briefcase:before {
+ content: "\f0b1"; }
+
+.fa-briefcase-medical:before {
+ content: "\f469"; }
+
+.fa-broadcast-tower:before {
+ content: "\f519"; }
+
+.fa-broom:before {
+ content: "\f51a"; }
+
+.fa-browser:before {
+ content: "\f37e"; }
+
+.fa-btc:before {
+ content: "\f15a"; }
+
+.fa-bug:before {
+ content: "\f188"; }
+
+.fa-building:before {
+ content: "\f1ad"; }
+
+.fa-bullhorn:before {
+ content: "\f0a1"; }
+
+.fa-bullseye:before {
+ content: "\f140"; }
+
+.fa-burn:before {
+ content: "\f46a"; }
+
+.fa-buromobelexperte:before {
+ content: "\f37f"; }
+
+.fa-bus:before {
+ content: "\f207"; }
+
+.fa-buysellads:before {
+ content: "\f20d"; }
+
+.fa-calculator:before {
+ content: "\f1ec"; }
+
+.fa-calendar:before {
+ content: "\f133"; }
+
+.fa-calendar-alt:before {
+ content: "\f073"; }
+
+.fa-calendar-check:before {
+ content: "\f274"; }
+
+.fa-calendar-edit:before {
+ content: "\f333"; }
+
+.fa-calendar-exclamation:before {
+ content: "\f334"; }
+
+.fa-calendar-minus:before {
+ content: "\f272"; }
+
+.fa-calendar-plus:before {
+ content: "\f271"; }
+
+.fa-calendar-times:before {
+ content: "\f273"; }
+
+.fa-camera:before {
+ content: "\f030"; }
+
+.fa-camera-alt:before {
+ content: "\f332"; }
+
+.fa-camera-retro:before {
+ content: "\f083"; }
+
+.fa-capsules:before {
+ content: "\f46b"; }
+
+.fa-car:before {
+ content: "\f1b9"; }
+
+.fa-caret-circle-down:before {
+ content: "\f32d"; }
+
+.fa-caret-circle-left:before {
+ content: "\f32e"; }
+
+.fa-caret-circle-right:before {
+ content: "\f330"; }
+
+.fa-caret-circle-up:before {
+ content: "\f331"; }
+
+.fa-caret-down:before {
+ content: "\f0d7"; }
+
+.fa-caret-left:before {
+ content: "\f0d9"; }
+
+.fa-caret-right:before {
+ content: "\f0da"; }
+
+.fa-caret-square-down:before {
+ content: "\f150"; }
+
+.fa-caret-square-left:before {
+ content: "\f191"; }
+
+.fa-caret-square-right:before {
+ content: "\f152"; }
+
+.fa-caret-square-up:before {
+ content: "\f151"; }
+
+.fa-caret-up:before {
+ content: "\f0d8"; }
+
+.fa-cart-arrow-down:before {
+ content: "\f218"; }
+
+.fa-cart-plus:before {
+ content: "\f217"; }
+
+.fa-cc-amazon-pay:before {
+ content: "\f42d"; }
+
+.fa-cc-amex:before {
+ content: "\f1f3"; }
+
+.fa-cc-apple-pay:before {
+ content: "\f416"; }
+
+.fa-cc-diners-club:before {
+ content: "\f24c"; }
+
+.fa-cc-discover:before {
+ content: "\f1f2"; }
+
+.fa-cc-jcb:before {
+ content: "\f24b"; }
+
+.fa-cc-mastercard:before {
+ content: "\f1f1"; }
+
+.fa-cc-paypal:before {
+ content: "\f1f4"; }
+
+.fa-cc-stripe:before {
+ content: "\f1f5"; }
+
+.fa-cc-visa:before {
+ content: "\f1f0"; }
+
+.fa-centercode:before {
+ content: "\f380"; }
+
+.fa-certificate:before {
+ content: "\f0a3"; }
+
+.fa-chalkboard:before {
+ content: "\f51b"; }
+
+.fa-chalkboard-teacher:before {
+ content: "\f51c"; }
+
+.fa-chart-area:before {
+ content: "\f1fe"; }
+
+.fa-chart-bar:before {
+ content: "\f080"; }
+
+.fa-chart-line:before {
+ content: "\f201"; }
+
+.fa-chart-pie:before {
+ content: "\f200"; }
+
+.fa-check:before {
+ content: "\f00c"; }
+
+.fa-check-circle:before {
+ content: "\f058"; }
+
+.fa-check-square:before {
+ content: "\f14a"; }
+
+.fa-chess:before {
+ content: "\f439"; }
+
+.fa-chess-bishop:before {
+ content: "\f43a"; }
+
+.fa-chess-bishop-alt:before {
+ content: "\f43b"; }
+
+.fa-chess-board:before {
+ content: "\f43c"; }
+
+.fa-chess-clock:before {
+ content: "\f43d"; }
+
+.fa-chess-clock-alt:before {
+ content: "\f43e"; }
+
+.fa-chess-king:before {
+ content: "\f43f"; }
+
+.fa-chess-king-alt:before {
+ content: "\f440"; }
+
+.fa-chess-knight:before {
+ content: "\f441"; }
+
+.fa-chess-knight-alt:before {
+ content: "\f442"; }
+
+.fa-chess-pawn:before {
+ content: "\f443"; }
+
+.fa-chess-pawn-alt:before {
+ content: "\f444"; }
+
+.fa-chess-queen:before {
+ content: "\f445"; }
+
+.fa-chess-queen-alt:before {
+ content: "\f446"; }
+
+.fa-chess-rook:before {
+ content: "\f447"; }
+
+.fa-chess-rook-alt:before {
+ content: "\f448"; }
+
+.fa-chevron-circle-down:before {
+ content: "\f13a"; }
+
+.fa-chevron-circle-left:before {
+ content: "\f137"; }
+
+.fa-chevron-circle-right:before {
+ content: "\f138"; }
+
+.fa-chevron-circle-up:before {
+ content: "\f139"; }
+
+.fa-chevron-double-down:before {
+ content: "\f322"; }
+
+.fa-chevron-double-left:before {
+ content: "\f323"; }
+
+.fa-chevron-double-right:before {
+ content: "\f324"; }
+
+.fa-chevron-double-up:before {
+ content: "\f325"; }
+
+.fa-chevron-down:before {
+ content: "\f078"; }
+
+.fa-chevron-left:before {
+ content: "\f053"; }
+
+.fa-chevron-right:before {
+ content: "\f054"; }
+
+.fa-chevron-square-down:before {
+ content: "\f329"; }
+
+.fa-chevron-square-left:before {
+ content: "\f32a"; }
+
+.fa-chevron-square-right:before {
+ content: "\f32b"; }
+
+.fa-chevron-square-up:before {
+ content: "\f32c"; }
+
+.fa-chevron-up:before {
+ content: "\f077"; }
+
+.fa-child:before {
+ content: "\f1ae"; }
+
+.fa-chrome:before {
+ content: "\f268"; }
+
+.fa-church:before {
+ content: "\f51d"; }
+
+.fa-circle:before {
+ content: "\f111"; }
+
+.fa-circle-notch:before {
+ content: "\f1ce"; }
+
+.fa-clipboard:before {
+ content: "\f328"; }
+
+.fa-clipboard-check:before {
+ content: "\f46c"; }
+
+.fa-clipboard-list:before {
+ content: "\f46d"; }
+
+.fa-clock:before {
+ content: "\f017"; }
+
+.fa-clone:before {
+ content: "\f24d"; }
+
+.fa-closed-captioning:before {
+ content: "\f20a"; }
+
+.fa-cloud:before {
+ content: "\f0c2"; }
+
+.fa-cloud-download:before {
+ content: "\f0ed"; }
+
+.fa-cloud-download-alt:before {
+ content: "\f381"; }
+
+.fa-cloud-upload:before {
+ content: "\f0ee"; }
+
+.fa-cloud-upload-alt:before {
+ content: "\f382"; }
+
+.fa-cloudscale:before {
+ content: "\f383"; }
+
+.fa-cloudsmith:before {
+ content: "\f384"; }
+
+.fa-cloudversify:before {
+ content: "\f385"; }
+
+.fa-club:before {
+ content: "\f327"; }
+
+.fa-code:before {
+ content: "\f121"; }
+
+.fa-code-branch:before {
+ content: "\f126"; }
+
+.fa-code-commit:before {
+ content: "\f386"; }
+
+.fa-code-merge:before {
+ content: "\f387"; }
+
+.fa-codepen:before {
+ content: "\f1cb"; }
+
+.fa-codiepie:before {
+ content: "\f284"; }
+
+.fa-coffee:before {
+ content: "\f0f4"; }
+
+.fa-cog:before {
+ content: "\f013"; }
+
+.fa-cogs:before {
+ content: "\f085"; }
+
+.fa-coins:before {
+ content: "\f51e"; }
+
+.fa-columns:before {
+ content: "\f0db"; }
+
+.fa-comment:before {
+ content: "\f075"; }
+
+.fa-comment-alt:before {
+ content: "\f27a"; }
+
+.fa-comment-alt-check:before {
+ content: "\f4a2"; }
+
+.fa-comment-alt-dots:before {
+ content: "\f4a3"; }
+
+.fa-comment-alt-edit:before {
+ content: "\f4a4"; }
+
+.fa-comment-alt-exclamation:before {
+ content: "\f4a5"; }
+
+.fa-comment-alt-lines:before {
+ content: "\f4a6"; }
+
+.fa-comment-alt-minus:before {
+ content: "\f4a7"; }
+
+.fa-comment-alt-plus:before {
+ content: "\f4a8"; }
+
+.fa-comment-alt-slash:before {
+ content: "\f4a9"; }
+
+.fa-comment-alt-smile:before {
+ content: "\f4aa"; }
+
+.fa-comment-alt-times:before {
+ content: "\f4ab"; }
+
+.fa-comment-check:before {
+ content: "\f4ac"; }
+
+.fa-comment-dots:before {
+ content: "\f4ad"; }
+
+.fa-comment-edit:before {
+ content: "\f4ae"; }
+
+.fa-comment-exclamation:before {
+ content: "\f4af"; }
+
+.fa-comment-lines:before {
+ content: "\f4b0"; }
+
+.fa-comment-minus:before {
+ content: "\f4b1"; }
+
+.fa-comment-plus:before {
+ content: "\f4b2"; }
+
+.fa-comment-slash:before {
+ content: "\f4b3"; }
+
+.fa-comment-smile:before {
+ content: "\f4b4"; }
+
+.fa-comment-times:before {
+ content: "\f4b5"; }
+
+.fa-comments:before {
+ content: "\f086"; }
+
+.fa-comments-alt:before {
+ content: "\f4b6"; }
+
+.fa-compact-disc:before {
+ content: "\f51f"; }
+
+.fa-compass:before {
+ content: "\f14e"; }
+
+.fa-compress:before {
+ content: "\f066"; }
+
+.fa-compress-alt:before {
+ content: "\f422"; }
+
+.fa-compress-wide:before {
+ content: "\f326"; }
+
+.fa-connectdevelop:before {
+ content: "\f20e"; }
+
+.fa-container-storage:before {
+ content: "\f4b7"; }
+
+.fa-contao:before {
+ content: "\f26d"; }
+
+.fa-conveyor-belt:before {
+ content: "\f46e"; }
+
+.fa-conveyor-belt-alt:before {
+ content: "\f46f"; }
+
+.fa-copy:before {
+ content: "\f0c5"; }
+
+.fa-copyright:before {
+ content: "\f1f9"; }
+
+.fa-couch:before {
+ content: "\f4b8"; }
+
+.fa-cpanel:before {
+ content: "\f388"; }
+
+.fa-creative-commons:before {
+ content: "\f25e"; }
+
+.fa-creative-commons-by:before {
+ content: "\f4e7"; }
+
+.fa-creative-commons-nc:before {
+ content: "\f4e8"; }
+
+.fa-creative-commons-nc-eu:before {
+ content: "\f4e9"; }
+
+.fa-creative-commons-nc-jp:before {
+ content: "\f4ea"; }
+
+.fa-creative-commons-nd:before {
+ content: "\f4eb"; }
+
+.fa-creative-commons-pd:before {
+ content: "\f4ec"; }
+
+.fa-creative-commons-pd-alt:before {
+ content: "\f4ed"; }
+
+.fa-creative-commons-remix:before {
+ content: "\f4ee"; }
+
+.fa-creative-commons-sa:before {
+ content: "\f4ef"; }
+
+.fa-creative-commons-sampling:before {
+ content: "\f4f0"; }
+
+.fa-creative-commons-sampling-plus:before {
+ content: "\f4f1"; }
+
+.fa-creative-commons-share:before {
+ content: "\f4f2"; }
+
+.fa-creative-commons-zero:before {
+ content: "\f4f3"; }
+
+.fa-credit-card:before {
+ content: "\f09d"; }
+
+.fa-credit-card-blank:before {
+ content: "\f389"; }
+
+.fa-credit-card-front:before {
+ content: "\f38a"; }
+
+.fa-cricket:before {
+ content: "\f449"; }
+
+.fa-crop:before {
+ content: "\f125"; }
+
+.fa-crosshairs:before {
+ content: "\f05b"; }
+
+.fa-crow:before {
+ content: "\f520"; }
+
+.fa-crown:before {
+ content: "\f521"; }
+
+.fa-css3:before {
+ content: "\f13c"; }
+
+.fa-css3-alt:before {
+ content: "\f38b"; }
+
+.fa-cube:before {
+ content: "\f1b2"; }
+
+.fa-cubes:before {
+ content: "\f1b3"; }
+
+.fa-curling:before {
+ content: "\f44a"; }
+
+.fa-cut:before {
+ content: "\f0c4"; }
+
+.fa-cuttlefish:before {
+ content: "\f38c"; }
+
+.fa-d-and-d:before {
+ content: "\f38d"; }
+
+.fa-dashcube:before {
+ content: "\f210"; }
+
+.fa-database:before {
+ content: "\f1c0"; }
+
+.fa-deaf:before {
+ content: "\f2a4"; }
+
+.fa-delicious:before {
+ content: "\f1a5"; }
+
+.fa-deploydog:before {
+ content: "\f38e"; }
+
+.fa-deskpro:before {
+ content: "\f38f"; }
+
+.fa-desktop:before {
+ content: "\f108"; }
+
+.fa-desktop-alt:before {
+ content: "\f390"; }
+
+.fa-deviantart:before {
+ content: "\f1bd"; }
+
+.fa-diagnoses:before {
+ content: "\f470"; }
+
+.fa-diamond:before {
+ content: "\f219"; }
+
+.fa-dice:before {
+ content: "\f522"; }
+
+.fa-dice-five:before {
+ content: "\f523"; }
+
+.fa-dice-four:before {
+ content: "\f524"; }
+
+.fa-dice-one:before {
+ content: "\f525"; }
+
+.fa-dice-six:before {
+ content: "\f526"; }
+
+.fa-dice-three:before {
+ content: "\f527"; }
+
+.fa-dice-two:before {
+ content: "\f528"; }
+
+.fa-digg:before {
+ content: "\f1a6"; }
+
+.fa-digital-ocean:before {
+ content: "\f391"; }
+
+.fa-discord:before {
+ content: "\f392"; }
+
+.fa-discourse:before {
+ content: "\f393"; }
+
+.fa-divide:before {
+ content: "\f529"; }
+
+.fa-dna:before {
+ content: "\f471"; }
+
+.fa-dochub:before {
+ content: "\f394"; }
+
+.fa-docker:before {
+ content: "\f395"; }
+
+.fa-dollar-sign:before {
+ content: "\f155"; }
+
+.fa-dolly:before {
+ content: "\f472"; }
+
+.fa-dolly-empty:before {
+ content: "\f473"; }
+
+.fa-dolly-flatbed:before {
+ content: "\f474"; }
+
+.fa-dolly-flatbed-alt:before {
+ content: "\f475"; }
+
+.fa-dolly-flatbed-empty:before {
+ content: "\f476"; }
+
+.fa-donate:before {
+ content: "\f4b9"; }
+
+.fa-door-closed:before {
+ content: "\f52a"; }
+
+.fa-door-open:before {
+ content: "\f52b"; }
+
+.fa-dot-circle:before {
+ content: "\f192"; }
+
+.fa-dove:before {
+ content: "\f4ba"; }
+
+.fa-download:before {
+ content: "\f019"; }
+
+.fa-draft2digital:before {
+ content: "\f396"; }
+
+.fa-dribbble:before {
+ content: "\f17d"; }
+
+.fa-dribbble-square:before {
+ content: "\f397"; }
+
+.fa-dropbox:before {
+ content: "\f16b"; }
+
+.fa-drupal:before {
+ content: "\f1a9"; }
+
+.fa-dumbbell:before {
+ content: "\f44b"; }
+
+.fa-dyalog:before {
+ content: "\f399"; }
+
+.fa-earlybirds:before {
+ content: "\f39a"; }
+
+.fa-ebay:before {
+ content: "\f4f4"; }
+
+.fa-edge:before {
+ content: "\f282"; }
+
+.fa-edit:before {
+ content: "\f044"; }
+
+.fa-eject:before {
+ content: "\f052"; }
+
+.fa-elementor:before {
+ content: "\f430"; }
+
+.fa-ellipsis-h:before {
+ content: "\f141"; }
+
+.fa-ellipsis-h-alt:before {
+ content: "\f39b"; }
+
+.fa-ellipsis-v:before {
+ content: "\f142"; }
+
+.fa-ellipsis-v-alt:before {
+ content: "\f39c"; }
+
+.fa-ember:before {
+ content: "\f423"; }
+
+.fa-empire:before {
+ content: "\f1d1"; }
+
+.fa-envelope:before {
+ content: "\f0e0"; }
+
+.fa-envelope-open:before {
+ content: "\f2b6"; }
+
+.fa-envelope-square:before {
+ content: "\f199"; }
+
+.fa-envira:before {
+ content: "\f299"; }
+
+.fa-equals:before {
+ content: "\f52c"; }
+
+.fa-eraser:before {
+ content: "\f12d"; }
+
+.fa-erlang:before {
+ content: "\f39d"; }
+
+.fa-ethereum:before {
+ content: "\f42e"; }
+
+.fa-etsy:before {
+ content: "\f2d7"; }
+
+.fa-euro-sign:before {
+ content: "\f153"; }
+
+.fa-exchange:before {
+ content: "\f0ec"; }
+
+.fa-exchange-alt:before {
+ content: "\f362"; }
+
+.fa-exclamation:before {
+ content: "\f12a"; }
+
+.fa-exclamation-circle:before {
+ content: "\f06a"; }
+
+.fa-exclamation-square:before {
+ content: "\f321"; }
+
+.fa-exclamation-triangle:before {
+ content: "\f071"; }
+
+.fa-expand:before {
+ content: "\f065"; }
+
+.fa-expand-alt:before {
+ content: "\f424"; }
+
+.fa-expand-arrows:before {
+ content: "\f31d"; }
+
+.fa-expand-arrows-alt:before {
+ content: "\f31e"; }
+
+.fa-expand-wide:before {
+ content: "\f320"; }
+
+.fa-expeditedssl:before {
+ content: "\f23e"; }
+
+.fa-external-link:before {
+ content: "\f08e"; }
+
+.fa-external-link-alt:before {
+ content: "\f35d"; }
+
+.fa-external-link-square:before {
+ content: "\f14c"; }
+
+.fa-external-link-square-alt:before {
+ content: "\f360"; }
+
+.fa-eye:before {
+ content: "\f06e"; }
+
+.fa-eye-dropper:before {
+ content: "\f1fb"; }
+
+.fa-eye-slash:before {
+ content: "\f070"; }
+
+.fa-facebook:before {
+ content: "\f09a"; }
+
+.fa-facebook-f:before {
+ content: "\f39e"; }
+
+.fa-facebook-messenger:before {
+ content: "\f39f"; }
+
+.fa-facebook-square:before {
+ content: "\f082"; }
+
+.fa-fast-backward:before {
+ content: "\f049"; }
+
+.fa-fast-forward:before {
+ content: "\f050"; }
+
+.fa-fax:before {
+ content: "\f1ac"; }
+
+.fa-feather:before {
+ content: "\f52d"; }
+
+.fa-female:before {
+ content: "\f182"; }
+
+.fa-field-hockey:before {
+ content: "\f44c"; }
+
+.fa-fighter-jet:before {
+ content: "\f0fb"; }
+
+.fa-file:before {
+ content: "\f15b"; }
+
+.fa-file-alt:before {
+ content: "\f15c"; }
+
+.fa-file-archive:before {
+ content: "\f1c6"; }
+
+.fa-file-audio:before {
+ content: "\f1c7"; }
+
+.fa-file-check:before {
+ content: "\f316"; }
+
+.fa-file-code:before {
+ content: "\f1c9"; }
+
+.fa-file-edit:before {
+ content: "\f31c"; }
+
+.fa-file-excel:before {
+ content: "\f1c3"; }
+
+.fa-file-exclamation:before {
+ content: "\f31a"; }
+
+.fa-file-image:before {
+ content: "\f1c5"; }
+
+.fa-file-medical:before {
+ content: "\f477"; }
+
+.fa-file-medical-alt:before {
+ content: "\f478"; }
+
+.fa-file-minus:before {
+ content: "\f318"; }
+
+.fa-file-pdf:before {
+ content: "\f1c1"; }
+
+.fa-file-plus:before {
+ content: "\f319"; }
+
+.fa-file-powerpoint:before {
+ content: "\f1c4"; }
+
+.fa-file-times:before {
+ content: "\f317"; }
+
+.fa-file-video:before {
+ content: "\f1c8"; }
+
+.fa-file-word:before {
+ content: "\f1c2"; }
+
+.fa-film:before {
+ content: "\f008"; }
+
+.fa-film-alt:before {
+ content: "\f3a0"; }
+
+.fa-filter:before {
+ content: "\f0b0"; }
+
+.fa-fire:before {
+ content: "\f06d"; }
+
+.fa-fire-extinguisher:before {
+ content: "\f134"; }
+
+.fa-firefox:before {
+ content: "\f269"; }
+
+.fa-first-aid:before {
+ content: "\f479"; }
+
+.fa-first-order:before {
+ content: "\f2b0"; }
+
+.fa-first-order-alt:before {
+ content: "\f50a"; }
+
+.fa-firstdraft:before {
+ content: "\f3a1"; }
+
+.fa-flag:before {
+ content: "\f024"; }
+
+.fa-flag-checkered:before {
+ content: "\f11e"; }
+
+.fa-flask:before {
+ content: "\f0c3"; }
+
+.fa-flickr:before {
+ content: "\f16e"; }
+
+.fa-flipboard:before {
+ content: "\f44d"; }
+
+.fa-fly:before {
+ content: "\f417"; }
+
+.fa-folder:before {
+ content: "\f07b"; }
+
+.fa-folder-open:before {
+ content: "\f07c"; }
+
+.fa-font:before {
+ content: "\f031"; }
+
+.fa-font-awesome:before {
+ content: "\f2b4"; }
+
+.fa-font-awesome-alt:before {
+ content: "\f35c"; }
+
+.fa-font-awesome-flag:before {
+ content: "\f425"; }
+
+.fa-font-awesome-logo-full:before {
+ content: "\f4e6"; }
+
+.fa-fonticons:before {
+ content: "\f280"; }
+
+.fa-fonticons-fi:before {
+ content: "\f3a2"; }
+
+.fa-football-ball:before {
+ content: "\f44e"; }
+
+.fa-football-helmet:before {
+ content: "\f44f"; }
+
+.fa-forklift:before {
+ content: "\f47a"; }
+
+.fa-fort-awesome:before {
+ content: "\f286"; }
+
+.fa-fort-awesome-alt:before {
+ content: "\f3a3"; }
+
+.fa-forumbee:before {
+ content: "\f211"; }
+
+.fa-forward:before {
+ content: "\f04e"; }
+
+.fa-foursquare:before {
+ content: "\f180"; }
+
+.fa-fragile:before {
+ content: "\f4bb"; }
+
+.fa-free-code-camp:before {
+ content: "\f2c5"; }
+
+.fa-freebsd:before {
+ content: "\f3a4"; }
+
+.fa-frog:before {
+ content: "\f52e"; }
+
+.fa-frown:before {
+ content: "\f119"; }
+
+.fa-fulcrum:before {
+ content: "\f50b"; }
+
+.fa-futbol:before {
+ content: "\f1e3"; }
+
+.fa-galactic-republic:before {
+ content: "\f50c"; }
+
+.fa-galactic-senate:before {
+ content: "\f50d"; }
+
+.fa-gamepad:before {
+ content: "\f11b"; }
+
+.fa-gas-pump:before {
+ content: "\f52f"; }
+
+.fa-gavel:before {
+ content: "\f0e3"; }
+
+.fa-gem:before {
+ content: "\f3a5"; }
+
+.fa-genderless:before {
+ content: "\f22d"; }
+
+.fa-get-pocket:before {
+ content: "\f265"; }
+
+.fa-gg:before {
+ content: "\f260"; }
+
+.fa-gg-circle:before {
+ content: "\f261"; }
+
+.fa-gift:before {
+ content: "\f06b"; }
+
+.fa-git:before {
+ content: "\f1d3"; }
+
+.fa-git-square:before {
+ content: "\f1d2"; }
+
+.fa-github:before {
+ content: "\f09b"; }
+
+.fa-github-alt:before {
+ content: "\f113"; }
+
+.fa-github-square:before {
+ content: "\f092"; }
+
+.fa-gitkraken:before {
+ content: "\f3a6"; }
+
+.fa-gitlab:before {
+ content: "\f296"; }
+
+.fa-gitter:before {
+ content: "\f426"; }
+
+.fa-glass-martini:before {
+ content: "\f000"; }
+
+.fa-glasses:before {
+ content: "\f530"; }
+
+.fa-glide:before {
+ content: "\f2a5"; }
+
+.fa-glide-g:before {
+ content: "\f2a6"; }
+
+.fa-globe:before {
+ content: "\f0ac"; }
+
+.fa-gofore:before {
+ content: "\f3a7"; }
+
+.fa-golf-ball:before {
+ content: "\f450"; }
+
+.fa-golf-club:before {
+ content: "\f451"; }
+
+.fa-goodreads:before {
+ content: "\f3a8"; }
+
+.fa-goodreads-g:before {
+ content: "\f3a9"; }
+
+.fa-google:before {
+ content: "\f1a0"; }
+
+.fa-google-drive:before {
+ content: "\f3aa"; }
+
+.fa-google-play:before {
+ content: "\f3ab"; }
+
+.fa-google-plus:before {
+ content: "\f2b3"; }
+
+.fa-google-plus-g:before {
+ content: "\f0d5"; }
+
+.fa-google-plus-square:before {
+ content: "\f0d4"; }
+
+.fa-google-wallet:before {
+ content: "\f1ee"; }
+
+.fa-graduation-cap:before {
+ content: "\f19d"; }
+
+.fa-gratipay:before {
+ content: "\f184"; }
+
+.fa-grav:before {
+ content: "\f2d6"; }
+
+.fa-greater-than:before {
+ content: "\f531"; }
+
+.fa-greater-than-equal:before {
+ content: "\f532"; }
+
+.fa-gripfire:before {
+ content: "\f3ac"; }
+
+.fa-grunt:before {
+ content: "\f3ad"; }
+
+.fa-gulp:before {
+ content: "\f3ae"; }
+
+.fa-h-square:before {
+ content: "\f0fd"; }
+
+.fa-h1:before {
+ content: "\f313"; }
+
+.fa-h2:before {
+ content: "\f314"; }
+
+.fa-h3:before {
+ content: "\f315"; }
+
+.fa-hacker-news:before {
+ content: "\f1d4"; }
+
+.fa-hacker-news-square:before {
+ content: "\f3af"; }
+
+.fa-hand-heart:before {
+ content: "\f4bc"; }
+
+.fa-hand-holding:before {
+ content: "\f4bd"; }
+
+.fa-hand-holding-box:before {
+ content: "\f47b"; }
+
+.fa-hand-holding-heart:before {
+ content: "\f4be"; }
+
+.fa-hand-holding-seedling:before {
+ content: "\f4bf"; }
+
+.fa-hand-holding-usd:before {
+ content: "\f4c0"; }
+
+.fa-hand-holding-water:before {
+ content: "\f4c1"; }
+
+.fa-hand-lizard:before {
+ content: "\f258"; }
+
+.fa-hand-paper:before {
+ content: "\f256"; }
+
+.fa-hand-peace:before {
+ content: "\f25b"; }
+
+.fa-hand-point-down:before {
+ content: "\f0a7"; }
+
+.fa-hand-point-left:before {
+ content: "\f0a5"; }
+
+.fa-hand-point-right:before {
+ content: "\f0a4"; }
+
+.fa-hand-point-up:before {
+ content: "\f0a6"; }
+
+.fa-hand-pointer:before {
+ content: "\f25a"; }
+
+.fa-hand-receiving:before {
+ content: "\f47c"; }
+
+.fa-hand-rock:before {
+ content: "\f255"; }
+
+.fa-hand-scissors:before {
+ content: "\f257"; }
+
+.fa-hand-spock:before {
+ content: "\f259"; }
+
+.fa-hands:before {
+ content: "\f4c2"; }
+
+.fa-hands-heart:before {
+ content: "\f4c3"; }
+
+.fa-hands-helping:before {
+ content: "\f4c4"; }
+
+.fa-hands-usd:before {
+ content: "\f4c5"; }
+
+.fa-handshake:before {
+ content: "\f2b5"; }
+
+.fa-handshake-alt:before {
+ content: "\f4c6"; }
+
+.fa-hashtag:before {
+ content: "\f292"; }
+
+.fa-hdd:before {
+ content: "\f0a0"; }
+
+.fa-heading:before {
+ content: "\f1dc"; }
+
+.fa-headphones:before {
+ content: "\f025"; }
+
+.fa-heart:before {
+ content: "\f004"; }
+
+.fa-heart-circle:before {
+ content: "\f4c7"; }
+
+.fa-heart-square:before {
+ content: "\f4c8"; }
+
+.fa-heartbeat:before {
+ content: "\f21e"; }
+
+.fa-helicopter:before {
+ content: "\f533"; }
+
+.fa-hexagon:before {
+ content: "\f312"; }
+
+.fa-hips:before {
+ content: "\f452"; }
+
+.fa-hire-a-helper:before {
+ content: "\f3b0"; }
+
+.fa-history:before {
+ content: "\f1da"; }
+
+.fa-hockey-puck:before {
+ content: "\f453"; }
+
+.fa-hockey-sticks:before {
+ content: "\f454"; }
+
+.fa-home:before {
+ content: "\f015"; }
+
+.fa-home-heart:before {
+ content: "\f4c9"; }
+
+.fa-hooli:before {
+ content: "\f427"; }
+
+.fa-hospital:before {
+ content: "\f0f8"; }
+
+.fa-hospital-alt:before {
+ content: "\f47d"; }
+
+.fa-hospital-symbol:before {
+ content: "\f47e"; }
+
+.fa-hotjar:before {
+ content: "\f3b1"; }
+
+.fa-hourglass:before {
+ content: "\f254"; }
+
+.fa-hourglass-end:before {
+ content: "\f253"; }
+
+.fa-hourglass-half:before {
+ content: "\f252"; }
+
+.fa-hourglass-start:before {
+ content: "\f251"; }
+
+.fa-houzz:before {
+ content: "\f27c"; }
+
+.fa-html5:before {
+ content: "\f13b"; }
+
+.fa-hubspot:before {
+ content: "\f3b2"; }
+
+.fa-i-cursor:before {
+ content: "\f246"; }
+
+.fa-id-badge:before {
+ content: "\f2c1"; }
+
+.fa-id-card:before {
+ content: "\f2c2"; }
+
+.fa-id-card-alt:before {
+ content: "\f47f"; }
+
+.fa-image:before {
+ content: "\f03e"; }
+
+.fa-images:before {
+ content: "\f302"; }
+
+.fa-imdb:before {
+ content: "\f2d8"; }
+
+.fa-inbox:before {
+ content: "\f01c"; }
+
+.fa-inbox-in:before {
+ content: "\f310"; }
+
+.fa-inbox-out:before {
+ content: "\f311"; }
+
+.fa-indent:before {
+ content: "\f03c"; }
+
+.fa-industry:before {
+ content: "\f275"; }
+
+.fa-industry-alt:before {
+ content: "\f3b3"; }
+
+.fa-infinity:before {
+ content: "\f534"; }
+
+.fa-info:before {
+ content: "\f129"; }
+
+.fa-info-circle:before {
+ content: "\f05a"; }
+
+.fa-info-square:before {
+ content: "\f30f"; }
+
+.fa-instagram:before {
+ content: "\f16d"; }
+
+.fa-internet-explorer:before {
+ content: "\f26b"; }
+
+.fa-inventory:before {
+ content: "\f480"; }
+
+.fa-ioxhost:before {
+ content: "\f208"; }
+
+.fa-italic:before {
+ content: "\f033"; }
+
+.fa-itunes:before {
+ content: "\f3b4"; }
+
+.fa-itunes-note:before {
+ content: "\f3b5"; }
+
+.fa-jack-o-lantern:before {
+ content: "\f30e"; }
+
+.fa-java:before {
+ content: "\f4e4"; }
+
+.fa-jedi-order:before {
+ content: "\f50e"; }
+
+.fa-jenkins:before {
+ content: "\f3b6"; }
+
+.fa-joget:before {
+ content: "\f3b7"; }
+
+.fa-joomla:before {
+ content: "\f1aa"; }
+
+.fa-js:before {
+ content: "\f3b8"; }
+
+.fa-js-square:before {
+ content: "\f3b9"; }
+
+.fa-jsfiddle:before {
+ content: "\f1cc"; }
+
+.fa-key:before {
+ content: "\f084"; }
+
+.fa-keybase:before {
+ content: "\f4f5"; }
+
+.fa-keyboard:before {
+ content: "\f11c"; }
+
+.fa-keycdn:before {
+ content: "\f3ba"; }
+
+.fa-kickstarter:before {
+ content: "\f3bb"; }
+
+.fa-kickstarter-k:before {
+ content: "\f3bc"; }
+
+.fa-kiwi-bird:before {
+ content: "\f535"; }
+
+.fa-korvue:before {
+ content: "\f42f"; }
+
+.fa-lamp:before {
+ content: "\f4ca"; }
+
+.fa-language:before {
+ content: "\f1ab"; }
+
+.fa-laptop:before {
+ content: "\f109"; }
+
+.fa-laravel:before {
+ content: "\f3bd"; }
+
+.fa-lastfm:before {
+ content: "\f202"; }
+
+.fa-lastfm-square:before {
+ content: "\f203"; }
+
+.fa-leaf:before {
+ content: "\f06c"; }
+
+.fa-leaf-heart:before {
+ content: "\f4cb"; }
+
+.fa-leanpub:before {
+ content: "\f212"; }
+
+.fa-lemon:before {
+ content: "\f094"; }
+
+.fa-less:before {
+ content: "\f41d"; }
+
+.fa-less-than:before {
+ content: "\f536"; }
+
+.fa-less-than-equal:before {
+ content: "\f537"; }
+
+.fa-level-down:before {
+ content: "\f149"; }
+
+.fa-level-down-alt:before {
+ content: "\f3be"; }
+
+.fa-level-up:before {
+ content: "\f148"; }
+
+.fa-level-up-alt:before {
+ content: "\f3bf"; }
+
+.fa-life-ring:before {
+ content: "\f1cd"; }
+
+.fa-lightbulb:before {
+ content: "\f0eb"; }
+
+.fa-line:before {
+ content: "\f3c0"; }
+
+.fa-link:before {
+ content: "\f0c1"; }
+
+.fa-linkedin:before {
+ content: "\f08c"; }
+
+.fa-linkedin-in:before {
+ content: "\f0e1"; }
+
+.fa-linode:before {
+ content: "\f2b8"; }
+
+.fa-linux:before {
+ content: "\f17c"; }
+
+.fa-lira-sign:before {
+ content: "\f195"; }
+
+.fa-list:before {
+ content: "\f03a"; }
+
+.fa-list-alt:before {
+ content: "\f022"; }
+
+.fa-list-ol:before {
+ content: "\f0cb"; }
+
+.fa-list-ul:before {
+ content: "\f0ca"; }
+
+.fa-location-arrow:before {
+ content: "\f124"; }
+
+.fa-lock:before {
+ content: "\f023"; }
+
+.fa-lock-alt:before {
+ content: "\f30d"; }
+
+.fa-lock-open:before {
+ content: "\f3c1"; }
+
+.fa-lock-open-alt:before {
+ content: "\f3c2"; }
+
+.fa-long-arrow-alt-down:before {
+ content: "\f309"; }
+
+.fa-long-arrow-alt-left:before {
+ content: "\f30a"; }
+
+.fa-long-arrow-alt-right:before {
+ content: "\f30b"; }
+
+.fa-long-arrow-alt-up:before {
+ content: "\f30c"; }
+
+.fa-long-arrow-down:before {
+ content: "\f175"; }
+
+.fa-long-arrow-left:before {
+ content: "\f177"; }
+
+.fa-long-arrow-right:before {
+ content: "\f178"; }
+
+.fa-long-arrow-up:before {
+ content: "\f176"; }
+
+.fa-loveseat:before {
+ content: "\f4cc"; }
+
+.fa-low-vision:before {
+ content: "\f2a8"; }
+
+.fa-luchador:before {
+ content: "\f455"; }
+
+.fa-lyft:before {
+ content: "\f3c3"; }
+
+.fa-magento:before {
+ content: "\f3c4"; }
+
+.fa-magic:before {
+ content: "\f0d0"; }
+
+.fa-magnet:before {
+ content: "\f076"; }
+
+.fa-male:before {
+ content: "\f183"; }
+
+.fa-mandalorian:before {
+ content: "\f50f"; }
+
+.fa-map:before {
+ content: "\f279"; }
+
+.fa-map-marker:before {
+ content: "\f041"; }
+
+.fa-map-marker-alt:before {
+ content: "\f3c5"; }
+
+.fa-map-pin:before {
+ content: "\f276"; }
+
+.fa-map-signs:before {
+ content: "\f277"; }
+
+.fa-mars:before {
+ content: "\f222"; }
+
+.fa-mars-double:before {
+ content: "\f227"; }
+
+.fa-mars-stroke:before {
+ content: "\f229"; }
+
+.fa-mars-stroke-h:before {
+ content: "\f22b"; }
+
+.fa-mars-stroke-v:before {
+ content: "\f22a"; }
+
+.fa-mastodon:before {
+ content: "\f4f6"; }
+
+.fa-maxcdn:before {
+ content: "\f136"; }
+
+.fa-medapps:before {
+ content: "\f3c6"; }
+
+.fa-medium:before {
+ content: "\f23a"; }
+
+.fa-medium-m:before {
+ content: "\f3c7"; }
+
+.fa-medkit:before {
+ content: "\f0fa"; }
+
+.fa-medrt:before {
+ content: "\f3c8"; }
+
+.fa-meetup:before {
+ content: "\f2e0"; }
+
+.fa-meh:before {
+ content: "\f11a"; }
+
+.fa-memory:before {
+ content: "\f538"; }
+
+.fa-mercury:before {
+ content: "\f223"; }
+
+.fa-microchip:before {
+ content: "\f2db"; }
+
+.fa-microphone:before {
+ content: "\f130"; }
+
+.fa-microphone-alt:before {
+ content: "\f3c9"; }
+
+.fa-microphone-alt-slash:before {
+ content: "\f539"; }
+
+.fa-microphone-slash:before {
+ content: "\f131"; }
+
+.fa-microsoft:before {
+ content: "\f3ca"; }
+
+.fa-minus:before {
+ content: "\f068"; }
+
+.fa-minus-circle:before {
+ content: "\f056"; }
+
+.fa-minus-hexagon:before {
+ content: "\f307"; }
+
+.fa-minus-octagon:before {
+ content: "\f308"; }
+
+.fa-minus-square:before {
+ content: "\f146"; }
+
+.fa-mix:before {
+ content: "\f3cb"; }
+
+.fa-mixcloud:before {
+ content: "\f289"; }
+
+.fa-mizuni:before {
+ content: "\f3cc"; }
+
+.fa-mobile:before {
+ content: "\f10b"; }
+
+.fa-mobile-alt:before {
+ content: "\f3cd"; }
+
+.fa-mobile-android:before {
+ content: "\f3ce"; }
+
+.fa-mobile-android-alt:before {
+ content: "\f3cf"; }
+
+.fa-modx:before {
+ content: "\f285"; }
+
+.fa-monero:before {
+ content: "\f3d0"; }
+
+.fa-money-bill:before {
+ content: "\f0d6"; }
+
+.fa-money-bill-alt:before {
+ content: "\f3d1"; }
+
+.fa-money-bill-wave:before {
+ content: "\f53a"; }
+
+.fa-money-bill-wave-alt:before {
+ content: "\f53b"; }
+
+.fa-money-check:before {
+ content: "\f53c"; }
+
+.fa-money-check-alt:before {
+ content: "\f53d"; }
+
+.fa-moon:before {
+ content: "\f186"; }
+
+.fa-motorcycle:before {
+ content: "\f21c"; }
+
+.fa-mouse-pointer:before {
+ content: "\f245"; }
+
+.fa-music:before {
+ content: "\f001"; }
+
+.fa-napster:before {
+ content: "\f3d2"; }
+
+.fa-neuter:before {
+ content: "\f22c"; }
+
+.fa-newspaper:before {
+ content: "\f1ea"; }
+
+.fa-nintendo-switch:before {
+ content: "\f418"; }
+
+.fa-node:before {
+ content: "\f419"; }
+
+.fa-node-js:before {
+ content: "\f3d3"; }
+
+.fa-not-equal:before {
+ content: "\f53e"; }
+
+.fa-notes-medical:before {
+ content: "\f481"; }
+
+.fa-npm:before {
+ content: "\f3d4"; }
+
+.fa-ns8:before {
+ content: "\f3d5"; }
+
+.fa-nutritionix:before {
+ content: "\f3d6"; }
+
+.fa-object-group:before {
+ content: "\f247"; }
+
+.fa-object-ungroup:before {
+ content: "\f248"; }
+
+.fa-octagon:before {
+ content: "\f306"; }
+
+.fa-odnoklassniki:before {
+ content: "\f263"; }
+
+.fa-odnoklassniki-square:before {
+ content: "\f264"; }
+
+.fa-old-republic:before {
+ content: "\f510"; }
+
+.fa-opencart:before {
+ content: "\f23d"; }
+
+.fa-openid:before {
+ content: "\f19b"; }
+
+.fa-opera:before {
+ content: "\f26a"; }
+
+.fa-optin-monster:before {
+ content: "\f23c"; }
+
+.fa-osi:before {
+ content: "\f41a"; }
+
+.fa-outdent:before {
+ content: "\f03b"; }
+
+.fa-page4:before {
+ content: "\f3d7"; }
+
+.fa-pagelines:before {
+ content: "\f18c"; }
+
+.fa-paint-brush:before {
+ content: "\f1fc"; }
+
+.fa-palette:before {
+ content: "\f53f"; }
+
+.fa-palfed:before {
+ content: "\f3d8"; }
+
+.fa-pallet:before {
+ content: "\f482"; }
+
+.fa-pallet-alt:before {
+ content: "\f483"; }
+
+.fa-paper-plane:before {
+ content: "\f1d8"; }
+
+.fa-paperclip:before {
+ content: "\f0c6"; }
+
+.fa-parachute-box:before {
+ content: "\f4cd"; }
+
+.fa-paragraph:before {
+ content: "\f1dd"; }
+
+.fa-parking:before {
+ content: "\f540"; }
+
+.fa-paste:before {
+ content: "\f0ea"; }
+
+.fa-patreon:before {
+ content: "\f3d9"; }
+
+.fa-pause:before {
+ content: "\f04c"; }
+
+.fa-pause-circle:before {
+ content: "\f28b"; }
+
+.fa-paw:before {
+ content: "\f1b0"; }
+
+.fa-paypal:before {
+ content: "\f1ed"; }
+
+.fa-pen:before {
+ content: "\f304"; }
+
+.fa-pen-alt:before {
+ content: "\f305"; }
+
+.fa-pen-square:before {
+ content: "\f14b"; }
+
+.fa-pencil:before {
+ content: "\f040"; }
+
+.fa-pencil-alt:before {
+ content: "\f303"; }
+
+.fa-pennant:before {
+ content: "\f456"; }
+
+.fa-people-carry:before {
+ content: "\f4ce"; }
+
+.fa-percent:before {
+ content: "\f295"; }
+
+.fa-percentage:before {
+ content: "\f541"; }
+
+.fa-periscope:before {
+ content: "\f3da"; }
+
+.fa-person-carry:before {
+ content: "\f4cf"; }
+
+.fa-person-dolly:before {
+ content: "\f4d0"; }
+
+.fa-person-dolly-empty:before {
+ content: "\f4d1"; }
+
+.fa-phabricator:before {
+ content: "\f3db"; }
+
+.fa-phoenix-framework:before {
+ content: "\f3dc"; }
+
+.fa-phoenix-squadron:before {
+ content: "\f511"; }
+
+.fa-phone:before {
+ content: "\f095"; }
+
+.fa-phone-plus:before {
+ content: "\f4d2"; }
+
+.fa-phone-slash:before {
+ content: "\f3dd"; }
+
+.fa-phone-square:before {
+ content: "\f098"; }
+
+.fa-phone-volume:before {
+ content: "\f2a0"; }
+
+.fa-php:before {
+ content: "\f457"; }
+
+.fa-pied-piper:before {
+ content: "\f2ae"; }
+
+.fa-pied-piper-alt:before {
+ content: "\f1a8"; }
+
+.fa-pied-piper-hat:before {
+ content: "\f4e5"; }
+
+.fa-pied-piper-pp:before {
+ content: "\f1a7"; }
+
+.fa-piggy-bank:before {
+ content: "\f4d3"; }
+
+.fa-pills:before {
+ content: "\f484"; }
+
+.fa-pinterest:before {
+ content: "\f0d2"; }
+
+.fa-pinterest-p:before {
+ content: "\f231"; }
+
+.fa-pinterest-square:before {
+ content: "\f0d3"; }
+
+.fa-plane:before {
+ content: "\f072"; }
+
+.fa-plane-alt:before {
+ content: "\f3de"; }
+
+.fa-play:before {
+ content: "\f04b"; }
+
+.fa-play-circle:before {
+ content: "\f144"; }
+
+.fa-playstation:before {
+ content: "\f3df"; }
+
+.fa-plug:before {
+ content: "\f1e6"; }
+
+.fa-plus:before {
+ content: "\f067"; }
+
+.fa-plus-circle:before {
+ content: "\f055"; }
+
+.fa-plus-hexagon:before {
+ content: "\f300"; }
+
+.fa-plus-octagon:before {
+ content: "\f301"; }
+
+.fa-plus-square:before {
+ content: "\f0fe"; }
+
+.fa-podcast:before {
+ content: "\f2ce"; }
+
+.fa-poo:before {
+ content: "\f2fe"; }
+
+.fa-portrait:before {
+ content: "\f3e0"; }
+
+.fa-pound-sign:before {
+ content: "\f154"; }
+
+.fa-power-off:before {
+ content: "\f011"; }
+
+.fa-prescription-bottle:before {
+ content: "\f485"; }
+
+.fa-prescription-bottle-alt:before {
+ content: "\f486"; }
+
+.fa-print:before {
+ content: "\f02f"; }
+
+.fa-procedures:before {
+ content: "\f487"; }
+
+.fa-product-hunt:before {
+ content: "\f288"; }
+
+.fa-project-diagram:before {
+ content: "\f542"; }
+
+.fa-pushed:before {
+ content: "\f3e1"; }
+
+.fa-puzzle-piece:before {
+ content: "\f12e"; }
+
+.fa-python:before {
+ content: "\f3e2"; }
+
+.fa-qq:before {
+ content: "\f1d6"; }
+
+.fa-qrcode:before {
+ content: "\f029"; }
+
+.fa-question:before {
+ content: "\f128"; }
+
+.fa-question-circle:before {
+ content: "\f059"; }
+
+.fa-question-square:before {
+ content: "\f2fd"; }
+
+.fa-quidditch:before {
+ content: "\f458"; }
+
+.fa-quinscape:before {
+ content: "\f459"; }
+
+.fa-quora:before {
+ content: "\f2c4"; }
+
+.fa-quote-left:before {
+ content: "\f10d"; }
+
+.fa-quote-right:before {
+ content: "\f10e"; }
+
+.fa-r-project:before {
+ content: "\f4f7"; }
+
+.fa-racquet:before {
+ content: "\f45a"; }
+
+.fa-ramp-loading:before {
+ content: "\f4d4"; }
+
+.fa-random:before {
+ content: "\f074"; }
+
+.fa-ravelry:before {
+ content: "\f2d9"; }
+
+.fa-react:before {
+ content: "\f41b"; }
+
+.fa-readme:before {
+ content: "\f4d5"; }
+
+.fa-rebel:before {
+ content: "\f1d0"; }
+
+.fa-receipt:before {
+ content: "\f543"; }
+
+.fa-rectangle-landscape:before {
+ content: "\f2fa"; }
+
+.fa-rectangle-portrait:before {
+ content: "\f2fb"; }
+
+.fa-rectangle-wide:before {
+ content: "\f2fc"; }
+
+.fa-recycle:before {
+ content: "\f1b8"; }
+
+.fa-red-river:before {
+ content: "\f3e3"; }
+
+.fa-reddit:before {
+ content: "\f1a1"; }
+
+.fa-reddit-alien:before {
+ content: "\f281"; }
+
+.fa-reddit-square:before {
+ content: "\f1a2"; }
+
+.fa-redo:before {
+ content: "\f01e"; }
+
+.fa-redo-alt:before {
+ content: "\f2f9"; }
+
+.fa-registered:before {
+ content: "\f25d"; }
+
+.fa-rendact:before {
+ content: "\f3e4"; }
+
+.fa-renren:before {
+ content: "\f18b"; }
+
+.fa-repeat:before {
+ content: "\f363"; }
+
+.fa-repeat-1:before {
+ content: "\f365"; }
+
+.fa-repeat-1-alt:before {
+ content: "\f366"; }
+
+.fa-repeat-alt:before {
+ content: "\f364"; }
+
+.fa-reply:before {
+ content: "\f3e5"; }
+
+.fa-reply-all:before {
+ content: "\f122"; }
+
+.fa-replyd:before {
+ content: "\f3e6"; }
+
+.fa-researchgate:before {
+ content: "\f4f8"; }
+
+.fa-resolving:before {
+ content: "\f3e7"; }
+
+.fa-retweet:before {
+ content: "\f079"; }
+
+.fa-retweet-alt:before {
+ content: "\f361"; }
+
+.fa-ribbon:before {
+ content: "\f4d6"; }
+
+.fa-road:before {
+ content: "\f018"; }
+
+.fa-robot:before {
+ content: "\f544"; }
+
+.fa-rocket:before {
+ content: "\f135"; }
+
+.fa-rocketchat:before {
+ content: "\f3e8"; }
+
+.fa-rockrms:before {
+ content: "\f3e9"; }
+
+.fa-route:before {
+ content: "\f4d7"; }
+
+.fa-rss:before {
+ content: "\f09e"; }
+
+.fa-rss-square:before {
+ content: "\f143"; }
+
+.fa-ruble-sign:before {
+ content: "\f158"; }
+
+.fa-ruler:before {
+ content: "\f545"; }
+
+.fa-ruler-combined:before {
+ content: "\f546"; }
+
+.fa-ruler-horizontal:before {
+ content: "\f547"; }
+
+.fa-ruler-vertical:before {
+ content: "\f548"; }
+
+.fa-rupee-sign:before {
+ content: "\f156"; }
+
+.fa-safari:before {
+ content: "\f267"; }
+
+.fa-sass:before {
+ content: "\f41e"; }
+
+.fa-save:before {
+ content: "\f0c7"; }
+
+.fa-scanner:before {
+ content: "\f488"; }
+
+.fa-scanner-keyboard:before {
+ content: "\f489"; }
+
+.fa-scanner-touchscreen:before {
+ content: "\f48a"; }
+
+.fa-schlix:before {
+ content: "\f3ea"; }
+
+.fa-school:before {
+ content: "\f549"; }
+
+.fa-screwdriver:before {
+ content: "\f54a"; }
+
+.fa-scribd:before {
+ content: "\f28a"; }
+
+.fa-scrubber:before {
+ content: "\f2f8"; }
+
+.fa-search:before {
+ content: "\f002"; }
+
+.fa-search-minus:before {
+ content: "\f010"; }
+
+.fa-search-plus:before {
+ content: "\f00e"; }
+
+.fa-searchengin:before {
+ content: "\f3eb"; }
+
+.fa-seedling:before {
+ content: "\f4d8"; }
+
+.fa-sellcast:before {
+ content: "\f2da"; }
+
+.fa-sellsy:before {
+ content: "\f213"; }
+
+.fa-server:before {
+ content: "\f233"; }
+
+.fa-servicestack:before {
+ content: "\f3ec"; }
+
+.fa-share:before {
+ content: "\f064"; }
+
+.fa-share-all:before {
+ content: "\f367"; }
+
+.fa-share-alt:before {
+ content: "\f1e0"; }
+
+.fa-share-alt-square:before {
+ content: "\f1e1"; }
+
+.fa-share-square:before {
+ content: "\f14d"; }
+
+.fa-shekel-sign:before {
+ content: "\f20b"; }
+
+.fa-shield:before {
+ content: "\f132"; }
+
+.fa-shield-alt:before {
+ content: "\f3ed"; }
+
+.fa-shield-check:before {
+ content: "\f2f7"; }
+
+.fa-ship:before {
+ content: "\f21a"; }
+
+.fa-shipping-fast:before {
+ content: "\f48b"; }
+
+.fa-shipping-timed:before {
+ content: "\f48c"; }
+
+.fa-shirtsinbulk:before {
+ content: "\f214"; }
+
+.fa-shoe-prints:before {
+ content: "\f54b"; }
+
+.fa-shopping-bag:before {
+ content: "\f290"; }
+
+.fa-shopping-basket:before {
+ content: "\f291"; }
+
+.fa-shopping-cart:before {
+ content: "\f07a"; }
+
+.fa-shower:before {
+ content: "\f2cc"; }
+
+.fa-shuttlecock:before {
+ content: "\f45b"; }
+
+.fa-sign:before {
+ content: "\f4d9"; }
+
+.fa-sign-in:before {
+ content: "\f090"; }
+
+.fa-sign-in-alt:before {
+ content: "\f2f6"; }
+
+.fa-sign-language:before {
+ content: "\f2a7"; }
+
+.fa-sign-out:before {
+ content: "\f08b"; }
+
+.fa-sign-out-alt:before {
+ content: "\f2f5"; }
+
+.fa-signal:before {
+ content: "\f012"; }
+
+.fa-simplybuilt:before {
+ content: "\f215"; }
+
+.fa-sistrix:before {
+ content: "\f3ee"; }
+
+.fa-sitemap:before {
+ content: "\f0e8"; }
+
+.fa-sith:before {
+ content: "\f512"; }
+
+.fa-skull:before {
+ content: "\f54c"; }
+
+.fa-skyatlas:before {
+ content: "\f216"; }
+
+.fa-skype:before {
+ content: "\f17e"; }
+
+.fa-slack:before {
+ content: "\f198"; }
+
+.fa-slack-hash:before {
+ content: "\f3ef"; }
+
+.fa-sliders-h:before {
+ content: "\f1de"; }
+
+.fa-sliders-h-square:before {
+ content: "\f3f0"; }
+
+.fa-sliders-v:before {
+ content: "\f3f1"; }
+
+.fa-sliders-v-square:before {
+ content: "\f3f2"; }
+
+.fa-slideshare:before {
+ content: "\f1e7"; }
+
+.fa-smile:before {
+ content: "\f118"; }
+
+.fa-smile-plus:before {
+ content: "\f4da"; }
+
+.fa-smoking:before {
+ content: "\f48d"; }
+
+.fa-smoking-ban:before {
+ content: "\f54d"; }
+
+.fa-snapchat:before {
+ content: "\f2ab"; }
+
+.fa-snapchat-ghost:before {
+ content: "\f2ac"; }
+
+.fa-snapchat-square:before {
+ content: "\f2ad"; }
+
+.fa-snowflake:before {
+ content: "\f2dc"; }
+
+.fa-sort:before {
+ content: "\f0dc"; }
+
+.fa-sort-alpha-down:before {
+ content: "\f15d"; }
+
+.fa-sort-alpha-up:before {
+ content: "\f15e"; }
+
+.fa-sort-amount-down:before {
+ content: "\f160"; }
+
+.fa-sort-amount-up:before {
+ content: "\f161"; }
+
+.fa-sort-down:before {
+ content: "\f0dd"; }
+
+.fa-sort-numeric-down:before {
+ content: "\f162"; }
+
+.fa-sort-numeric-up:before {
+ content: "\f163"; }
+
+.fa-sort-up:before {
+ content: "\f0de"; }
+
+.fa-soundcloud:before {
+ content: "\f1be"; }
+
+.fa-space-shuttle:before {
+ content: "\f197"; }
+
+.fa-spade:before {
+ content: "\f2f4"; }
+
+.fa-speakap:before {
+ content: "\f3f3"; }
+
+.fa-spinner:before {
+ content: "\f110"; }
+
+.fa-spinner-third:before {
+ content: "\f3f4"; }
+
+.fa-spotify:before {
+ content: "\f1bc"; }
+
+.fa-square:before {
+ content: "\f0c8"; }
+
+.fa-square-full:before {
+ content: "\f45c"; }
+
+.fa-stack-exchange:before {
+ content: "\f18d"; }
+
+.fa-stack-overflow:before {
+ content: "\f16c"; }
+
+.fa-star:before {
+ content: "\f005"; }
+
+.fa-star-exclamation:before {
+ content: "\f2f3"; }
+
+.fa-star-half:before {
+ content: "\f089"; }
+
+.fa-staylinked:before {
+ content: "\f3f5"; }
+
+.fa-steam:before {
+ content: "\f1b6"; }
+
+.fa-steam-square:before {
+ content: "\f1b7"; }
+
+.fa-steam-symbol:before {
+ content: "\f3f6"; }
+
+.fa-step-backward:before {
+ content: "\f048"; }
+
+.fa-step-forward:before {
+ content: "\f051"; }
+
+.fa-stethoscope:before {
+ content: "\f0f1"; }
+
+.fa-sticker-mule:before {
+ content: "\f3f7"; }
+
+.fa-sticky-note:before {
+ content: "\f249"; }
+
+.fa-stop:before {
+ content: "\f04d"; }
+
+.fa-stop-circle:before {
+ content: "\f28d"; }
+
+.fa-stopwatch:before {
+ content: "\f2f2"; }
+
+.fa-store:before {
+ content: "\f54e"; }
+
+.fa-store-alt:before {
+ content: "\f54f"; }
+
+.fa-strava:before {
+ content: "\f428"; }
+
+.fa-stream:before {
+ content: "\f550"; }
+
+.fa-street-view:before {
+ content: "\f21d"; }
+
+.fa-strikethrough:before {
+ content: "\f0cc"; }
+
+.fa-stripe:before {
+ content: "\f429"; }
+
+.fa-stripe-s:before {
+ content: "\f42a"; }
+
+.fa-stroopwafel:before {
+ content: "\f551"; }
+
+.fa-studiovinari:before {
+ content: "\f3f8"; }
+
+.fa-stumbleupon:before {
+ content: "\f1a4"; }
+
+.fa-stumbleupon-circle:before {
+ content: "\f1a3"; }
+
+.fa-subscript:before {
+ content: "\f12c"; }
+
+.fa-subway:before {
+ content: "\f239"; }
+
+.fa-suitcase:before {
+ content: "\f0f2"; }
+
+.fa-sun:before {
+ content: "\f185"; }
+
+.fa-superpowers:before {
+ content: "\f2dd"; }
+
+.fa-superscript:before {
+ content: "\f12b"; }
+
+.fa-supple:before {
+ content: "\f3f9"; }
+
+.fa-sync:before {
+ content: "\f021"; }
+
+.fa-sync-alt:before {
+ content: "\f2f1"; }
+
+.fa-syringe:before {
+ content: "\f48e"; }
+
+.fa-table:before {
+ content: "\f0ce"; }
+
+.fa-table-tennis:before {
+ content: "\f45d"; }
+
+.fa-tablet:before {
+ content: "\f10a"; }
+
+.fa-tablet-alt:before {
+ content: "\f3fa"; }
+
+.fa-tablet-android:before {
+ content: "\f3fb"; }
+
+.fa-tablet-android-alt:before {
+ content: "\f3fc"; }
+
+.fa-tablet-rugged:before {
+ content: "\f48f"; }
+
+.fa-tablets:before {
+ content: "\f490"; }
+
+.fa-tachometer:before {
+ content: "\f0e4"; }
+
+.fa-tachometer-alt:before {
+ content: "\f3fd"; }
+
+.fa-tag:before {
+ content: "\f02b"; }
+
+.fa-tags:before {
+ content: "\f02c"; }
+
+.fa-tape:before {
+ content: "\f4db"; }
+
+.fa-tasks:before {
+ content: "\f0ae"; }
+
+.fa-taxi:before {
+ content: "\f1ba"; }
+
+.fa-teamspeak:before {
+ content: "\f4f9"; }
+
+.fa-telegram:before {
+ content: "\f2c6"; }
+
+.fa-telegram-plane:before {
+ content: "\f3fe"; }
+
+.fa-tencent-weibo:before {
+ content: "\f1d5"; }
+
+.fa-tennis-ball:before {
+ content: "\f45e"; }
+
+.fa-terminal:before {
+ content: "\f120"; }
+
+.fa-text-height:before {
+ content: "\f034"; }
+
+.fa-text-width:before {
+ content: "\f035"; }
+
+.fa-th:before {
+ content: "\f00a"; }
+
+.fa-th-large:before {
+ content: "\f009"; }
+
+.fa-th-list:before {
+ content: "\f00b"; }
+
+.fa-themeisle:before {
+ content: "\f2b2"; }
+
+.fa-thermometer:before {
+ content: "\f491"; }
+
+.fa-thermometer-empty:before {
+ content: "\f2cb"; }
+
+.fa-thermometer-full:before {
+ content: "\f2c7"; }
+
+.fa-thermometer-half:before {
+ content: "\f2c9"; }
+
+.fa-thermometer-quarter:before {
+ content: "\f2ca"; }
+
+.fa-thermometer-three-quarters:before {
+ content: "\f2c8"; }
+
+.fa-thumbs-down:before {
+ content: "\f165"; }
+
+.fa-thumbs-up:before {
+ content: "\f164"; }
+
+.fa-thumbtack:before {
+ content: "\f08d"; }
+
+.fa-ticket:before {
+ content: "\f145"; }
+
+.fa-ticket-alt:before {
+ content: "\f3ff"; }
+
+.fa-times:before {
+ content: "\f00d"; }
+
+.fa-times-circle:before {
+ content: "\f057"; }
+
+.fa-times-hexagon:before {
+ content: "\f2ee"; }
+
+.fa-times-octagon:before {
+ content: "\f2f0"; }
+
+.fa-times-square:before {
+ content: "\f2d3"; }
+
+.fa-tint:before {
+ content: "\f043"; }
+
+.fa-toggle-off:before {
+ content: "\f204"; }
+
+.fa-toggle-on:before {
+ content: "\f205"; }
+
+.fa-toolbox:before {
+ content: "\f552"; }
+
+.fa-trade-federation:before {
+ content: "\f513"; }
+
+.fa-trademark:before {
+ content: "\f25c"; }
+
+.fa-train:before {
+ content: "\f238"; }
+
+.fa-transgender:before {
+ content: "\f224"; }
+
+.fa-transgender-alt:before {
+ content: "\f225"; }
+
+.fa-trash:before {
+ content: "\f1f8"; }
+
+.fa-trash-alt:before {
+ content: "\f2ed"; }
+
+.fa-tree:before {
+ content: "\f1bb"; }
+
+.fa-tree-alt:before {
+ content: "\f400"; }
+
+.fa-trello:before {
+ content: "\f181"; }
+
+.fa-triangle:before {
+ content: "\f2ec"; }
+
+.fa-tripadvisor:before {
+ content: "\f262"; }
+
+.fa-trophy:before {
+ content: "\f091"; }
+
+.fa-trophy-alt:before {
+ content: "\f2eb"; }
+
+.fa-truck:before {
+ content: "\f0d1"; }
+
+.fa-truck-container:before {
+ content: "\f4dc"; }
+
+.fa-truck-couch:before {
+ content: "\f4dd"; }
+
+.fa-truck-loading:before {
+ content: "\f4de"; }
+
+.fa-truck-moving:before {
+ content: "\f4df"; }
+
+.fa-truck-ramp:before {
+ content: "\f4e0"; }
+
+.fa-tshirt:before {
+ content: "\f553"; }
+
+.fa-tty:before {
+ content: "\f1e4"; }
+
+.fa-tumblr:before {
+ content: "\f173"; }
+
+.fa-tumblr-square:before {
+ content: "\f174"; }
+
+.fa-tv:before {
+ content: "\f26c"; }
+
+.fa-tv-retro:before {
+ content: "\f401"; }
+
+.fa-twitch:before {
+ content: "\f1e8"; }
+
+.fa-twitter:before {
+ content: "\f099"; }
+
+.fa-twitter-square:before {
+ content: "\f081"; }
+
+.fa-typo3:before {
+ content: "\f42b"; }
+
+.fa-uber:before {
+ content: "\f402"; }
+
+.fa-uikit:before {
+ content: "\f403"; }
+
+.fa-umbrella:before {
+ content: "\f0e9"; }
+
+.fa-underline:before {
+ content: "\f0cd"; }
+
+.fa-undo:before {
+ content: "\f0e2"; }
+
+.fa-undo-alt:before {
+ content: "\f2ea"; }
+
+.fa-uniregistry:before {
+ content: "\f404"; }
+
+.fa-universal-access:before {
+ content: "\f29a"; }
+
+.fa-university:before {
+ content: "\f19c"; }
+
+.fa-unlink:before {
+ content: "\f127"; }
+
+.fa-unlock:before {
+ content: "\f09c"; }
+
+.fa-unlock-alt:before {
+ content: "\f13e"; }
+
+.fa-untappd:before {
+ content: "\f405"; }
+
+.fa-upload:before {
+ content: "\f093"; }
+
+.fa-usb:before {
+ content: "\f287"; }
+
+.fa-usd-circle:before {
+ content: "\f2e8"; }
+
+.fa-usd-square:before {
+ content: "\f2e9"; }
+
+.fa-user:before {
+ content: "\f007"; }
+
+.fa-user-alt:before {
+ content: "\f406"; }
+
+.fa-user-alt-slash:before {
+ content: "\f4fa"; }
+
+.fa-user-astronaut:before {
+ content: "\f4fb"; }
+
+.fa-user-check:before {
+ content: "\f4fc"; }
+
+.fa-user-circle:before {
+ content: "\f2bd"; }
+
+.fa-user-clock:before {
+ content: "\f4fd"; }
+
+.fa-user-cog:before {
+ content: "\f4fe"; }
+
+.fa-user-edit:before {
+ content: "\f4ff"; }
+
+.fa-user-friends:before {
+ content: "\f500"; }
+
+.fa-user-graduate:before {
+ content: "\f501"; }
+
+.fa-user-lock:before {
+ content: "\f502"; }
+
+.fa-user-md:before {
+ content: "\f0f0"; }
+
+.fa-user-minus:before {
+ content: "\f503"; }
+
+.fa-user-ninja:before {
+ content: "\f504"; }
+
+.fa-user-plus:before {
+ content: "\f234"; }
+
+.fa-user-secret:before {
+ content: "\f21b"; }
+
+.fa-user-shield:before {
+ content: "\f505"; }
+
+.fa-user-slash:before {
+ content: "\f506"; }
+
+.fa-user-tag:before {
+ content: "\f507"; }
+
+.fa-user-tie:before {
+ content: "\f508"; }
+
+.fa-user-times:before {
+ content: "\f235"; }
+
+.fa-users:before {
+ content: "\f0c0"; }
+
+.fa-users-cog:before {
+ content: "\f509"; }
+
+.fa-ussunnah:before {
+ content: "\f407"; }
+
+.fa-utensil-fork:before {
+ content: "\f2e3"; }
+
+.fa-utensil-knife:before {
+ content: "\f2e4"; }
+
+.fa-utensil-spoon:before {
+ content: "\f2e5"; }
+
+.fa-utensils:before {
+ content: "\f2e7"; }
+
+.fa-utensils-alt:before {
+ content: "\f2e6"; }
+
+.fa-vaadin:before {
+ content: "\f408"; }
+
+.fa-venus:before {
+ content: "\f221"; }
+
+.fa-venus-double:before {
+ content: "\f226"; }
+
+.fa-venus-mars:before {
+ content: "\f228"; }
+
+.fa-viacoin:before {
+ content: "\f237"; }
+
+.fa-viadeo:before {
+ content: "\f2a9"; }
+
+.fa-viadeo-square:before {
+ content: "\f2aa"; }
+
+.fa-vial:before {
+ content: "\f492"; }
+
+.fa-vials:before {
+ content: "\f493"; }
+
+.fa-viber:before {
+ content: "\f409"; }
+
+.fa-video:before {
+ content: "\f03d"; }
+
+.fa-video-plus:before {
+ content: "\f4e1"; }
+
+.fa-video-slash:before {
+ content: "\f4e2"; }
+
+.fa-vimeo:before {
+ content: "\f40a"; }
+
+.fa-vimeo-square:before {
+ content: "\f194"; }
+
+.fa-vimeo-v:before {
+ content: "\f27d"; }
+
+.fa-vine:before {
+ content: "\f1ca"; }
+
+.fa-vk:before {
+ content: "\f189"; }
+
+.fa-vnv:before {
+ content: "\f40b"; }
+
+.fa-volleyball-ball:before {
+ content: "\f45f"; }
+
+.fa-volume-down:before {
+ content: "\f027"; }
+
+.fa-volume-mute:before {
+ content: "\f2e2"; }
+
+.fa-volume-off:before {
+ content: "\f026"; }
+
+.fa-volume-up:before {
+ content: "\f028"; }
+
+.fa-vuejs:before {
+ content: "\f41f"; }
+
+.fa-walking:before {
+ content: "\f554"; }
+
+.fa-wallet:before {
+ content: "\f555"; }
+
+.fa-warehouse:before {
+ content: "\f494"; }
+
+.fa-warehouse-alt:before {
+ content: "\f495"; }
+
+.fa-watch:before {
+ content: "\f2e1"; }
+
+.fa-weibo:before {
+ content: "\f18a"; }
+
+.fa-weight:before {
+ content: "\f496"; }
+
+.fa-weixin:before {
+ content: "\f1d7"; }
+
+.fa-whatsapp:before {
+ content: "\f232"; }
+
+.fa-whatsapp-square:before {
+ content: "\f40c"; }
+
+.fa-wheelchair:before {
+ content: "\f193"; }
+
+.fa-whistle:before {
+ content: "\f460"; }
+
+.fa-whmcs:before {
+ content: "\f40d"; }
+
+.fa-wifi:before {
+ content: "\f1eb"; }
+
+.fa-wikipedia-w:before {
+ content: "\f266"; }
+
+.fa-window:before {
+ content: "\f40e"; }
+
+.fa-window-alt:before {
+ content: "\f40f"; }
+
+.fa-window-close:before {
+ content: "\f410"; }
+
+.fa-window-maximize:before {
+ content: "\f2d0"; }
+
+.fa-window-minimize:before {
+ content: "\f2d1"; }
+
+.fa-window-restore:before {
+ content: "\f2d2"; }
+
+.fa-windows:before {
+ content: "\f17a"; }
+
+.fa-wine-glass:before {
+ content: "\f4e3"; }
+
+.fa-wolf-pack-battalion:before {
+ content: "\f514"; }
+
+.fa-won-sign:before {
+ content: "\f159"; }
+
+.fa-wordpress:before {
+ content: "\f19a"; }
+
+.fa-wordpress-simple:before {
+ content: "\f411"; }
+
+.fa-wpbeginner:before {
+ content: "\f297"; }
+
+.fa-wpexplorer:before {
+ content: "\f2de"; }
+
+.fa-wpforms:before {
+ content: "\f298"; }
+
+.fa-wrench:before {
+ content: "\f0ad"; }
+
+.fa-x-ray:before {
+ content: "\f497"; }
+
+.fa-xbox:before {
+ content: "\f412"; }
+
+.fa-xing:before {
+ content: "\f168"; }
+
+.fa-xing-square:before {
+ content: "\f169"; }
+
+.fa-y-combinator:before {
+ content: "\f23b"; }
+
+.fa-yahoo:before {
+ content: "\f19e"; }
+
+.fa-yandex:before {
+ content: "\f413"; }
+
+.fa-yandex-international:before {
+ content: "\f414"; }
+
+.fa-yelp:before {
+ content: "\f1e9"; }
+
+.fa-yen-sign:before {
+ content: "\f157"; }
+
+.fa-yoast:before {
+ content: "\f2b1"; }
+
+.fa-youtube:before {
+ content: "\f167"; }
+
+.fa-youtube-square:before {
+ content: "\f431"; }
+
+.sr-only {
+ border: 0;
+ clip: rect(0, 0, 0, 0);
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px; }
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+ clip: auto;
+ height: auto;
+ margin: 0;
+ overflow: visible;
+ position: static;
+ width: auto; }
+
+@font-face {
+ font-family: 'Font Awesome 5 Brands';
+ font-style: normal;
+ font-weight: normal;
+ src: url("../fonts/font-awesome/fa-brands-400.eot");
+ src: url("../fonts/font-awesome/fa-brands-400.eot?#iefix") format("embedded-opentype"),
+ url("../fonts/font-awesome/fa-brands-400.woff2") format("woff2"),
+ url("../fonts/font-awesome/fa-brands-400.woff") format("woff"),
+ url("../fonts/font-awesome/fa-brands-400.ttf") format("truetype"),
+ url("../fonts/font-awesome/fa-brands-400.svg#fontawesome") format("svg"); }
+
+.fab {
+ font-family: 'Font Awesome 5 Brands'; }
+
+@font-face {
+ font-family: 'Font Awesome 5 Pro';
+ font-style: normal;
+ font-weight: 300;
+ src: url("../fonts/font-awesome/fa-light-300.eot");
+ src: url("../fonts/font-awesome/fa-light-300.eot?#iefix") format("embedded-opentype"),
+ url("../fonts/font-awesome/fa-light-300.woff2") format("woff2"),
+ url("../fonts/font-awesome/fa-light-300.woff") format("woff"),
+ url("../fonts/font-awesome/fa-light-300.ttf") format("truetype"),
+ url("../fonts/font-awesome/fa-light-300.svg#fontawesome") format("svg"); }
+
+.fal {
+ font-family: 'Font Awesome 5 Pro';
+ font-weight: 300; }
+
+@font-face {
+ font-family: 'Font Awesome 5 Pro';
+ font-style: normal;
+ font-weight: 400;
+ src: url("../fonts/font-awesome/fa-regular-400.eot");
+ src: url("../fonts/font-awesome/fa-regular-400.eot?#iefix") format("embedded-opentype"),
+ url("../fonts/font-awesome/fa-regular-400.woff2") format("woff2"),
+ url("../fonts/font-awesome/fa-regular-400.woff") format("woff"),
+ url("../fonts/font-awesome/fa-regular-400.ttf") format("truetype"),
+ url("../fonts/font-awesome/fa-regular-400.svg#fontawesome") format("svg"); }
+
+.far {
+ font-family: 'Font Awesome 5 Pro';
+ font-weight: 400; }
+
+@font-face {
+ font-family: 'Font Awesome 5 Pro';
+ font-style: normal;
+ font-weight: 900;
+ src: url("../fonts/font-awesome/fa-solid-900.eot");
+ src: url("../fonts/font-awesome/fa-solid-900.eot?#iefix") format("embedded-opentype"),
+ url("../fonts/font-awesome/fa-solid-900.woff2") format("woff2"),
+ url("../fonts/font-awesome/fa-solid-900.woff") format("woff"),
+ url("../fonts/font-awesome/fa-solid-900.ttf") format("truetype"),
+ url("../fonts/font-awesome/fa-solid-900.svg#fontawesome") format("svg"); }
+
+.fa,
+.fas {
+ font-family: 'Font Awesome 5 Pro';
+ font-weight: 900; }
diff --git a/build/_assets/stylesheets/styles.css b/build/_assets/stylesheets/styles.css
index 2670131a5..84c8bab84 100644
--- a/build/_assets/stylesheets/styles.css
+++ b/build/_assets/stylesheets/styles.css
@@ -1,5834 +1,2172 @@
@charset "utf-8";
-html {
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-body {
- margin: 0;
- color: #455b66;
- background: #fff;
- font: 300 20px/1.45 Geomanist, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-rendering: geometricPrecision;
-}
-html,
-body {
- height: 100%;
-}
-*,
-*:before,
-*:after {
- box-sizing: border-box;
-}
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-nav,
-section,
-summary,
-blockquote {
- display: block;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 300;
+ src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/open-sans/open-sans-v13-latin-300.woff2) format("woff2");
}
-[hidden] {
- display: none !important;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: italic;
+ font-weight: 300;
+ src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(../fonts/open-sans/open-sans-v13-latin-300italic.woff2) format("woff2");
}
-a {
- text-decoration: none;
-}
-b,
-strong {
- font-weight: 600;
-}
-small {
- display: inline-block;
- font-size: 85%;
- line-height: 1.2;
-}
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-hr {
- clear: both;
- height: 0;
- margin: 20px 0;
- border: 0;
- color: #3d5afe;
- border-top: 1px solid;
- opacity: 0.2;
-}
-img {
- display: inline-block;
- max-width: 100%;
- height: auto;
- border: 0;
- vertical-align: middle;
-}
-p {
- margin: 0 0 20px;
- padding: 0;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 400;
+ src: local("Open Sans"), local("OpenSans"), url(../fonts/open-sans/open-sans-v13-latin-regular.woff2) format("woff2");
}
-input,
-button,
-select,
-textarea {
- margin: 0;
- font-size: 100%;
- line-height: inherit;
- font-family: inherit;
-}
-button,
-input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- cursor: pointer;
- border: none;
- -webkit-appearance: button;
-}
-input[disabled],
-button[disabled],
-a[disabled],
-input.disabled,
-button.disabled,
-a.disabled {
- cursor: default;
- opacity: 0.75;
- pointer-events: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-input[type="radio"],
-input[type="checkbox"] {
- padding: 0;
- line-height: normal;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
- padding: 0;
- border: 0;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: italic;
+ font-weight: 400;
+ src: local("Open Sans Italic"), local("OpenSans-Italic"), url(../fonts/open-sans/open-sans-v13-latin-italic.woff2) format("woff2");
}
-textarea {
- overflow: auto;
- vertical-align: top;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 600;
+ src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url(../fonts/open-sans/open-sans-v13-latin-600.woff2) format("woff2");
}
-iframe {
- border: 0;
- margin-bottom: 30px;
- max-width: 100%;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: italic;
+ font-weight: 600;
+ src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url(../fonts/open-sans/open-sans-v13-latin-600italic.woff2) format("woff2");
}
-.guide #page-article img:not(.plain) {
- border: 1px solid black;
- height: 450px;
- margin-right: 0.2em;
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 700;
+ src: local("Open Sans Bold"), local("OpenSans-Bold"), url(../fonts/open-sans/open-sans-v13-latin-700.woff2) format("woff2");
}
-.intro-box {
- display: flex;
- align-items: center;
- margin: 1em 0;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: italic;
+ font-weight: 700;
+ src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(../fonts/open-sans/open-sans-v13-latin-700italic.woff2) format("woff2");
}
-.intro-box p {
- margin: 0;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 800;
+ src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(../fonts/open-sans/open-sans-v13-latin-800.woff2) format("woff2");
}
-.intro-box img {
- flex: 0 0 150px;
- height: 150px;
- margin-right: 1em;
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: italic;
+ font-weight: 800;
+ src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(../fonts/open-sans/open-sans-v13-latin-800italic.woff2) format("woff2");
}
-.next-chapter-link-container {
- text-align: right;
- font-size: 1.5em;
- margin-top: 1.5em;
+@font-face {
+ font-family: 'Open Sans Condensed';
+ font-style: normal;
+ font-weight: 300;
+ src: local("Open Sans Cond Light"), local("OpenSans-CondensedLight"), url(../fonts/open-sans-condensed/open-sans-condensed-v10-latin-300.woff2) format("woff2"),;
}
-.next-chapter-link-container a::after {
- content: " →";
+
+@font-face {
+ font-family: 'Open Sans Condensed';
+ font-style: italic;
+ font-weight: 300;
+ src: local("Open Sans Cond Light Italic"), local("OpenSans-CondensedLightItalic"), url(../fonts/open-sans-condensed/open-sans-condensed-v10-latin-300italic.woff2) format("woff2");
}
-svg {
- fill: currentColor;
- vertical-align: middle;
+
+@font-face {
+ font-family: 'Open Sans Condensed';
+ font-style: normal;
+ font-weight: 700;
+ src: local("Open Sans Condensed Bold"), local("OpenSans-CondensedBold"), url(../fonts/open-sans-condensed/open-sans-condensed-v10-latin-700.woff2) format("woff2");
}
-[class*="col-"] {
- font-size: 20px;
+
+
+html {
+ display: flex;
+ flex-direction: column;
+ font: 400 16px/22px "Open Sans", sans-serif;
+ align-items: center;
+ overflow-x: hidden;
}
-.-fs14 {
- font-size: 14px !important;
+
+input,
+textarea {
+ font-family: "Open Sans", sans-serif;
}
-.-fs16,
-h6,
-.h6 {
- font-size: 16px !important;
+
+body {
+ margin: 0;
+ color: var(--color-dark);
+ background: var(--background-base);
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-rendering: geometricPrecision;
+ flex: 1 0 50%;
+ width: 50%;
+ max-width: 1280px;
}
-.-fs18 {
- font-size: 18px !important;
+
+body.-landing {
+ flex: 1 0 90%;
+ width: 90%;
}
-.-fs20,
-h5,
-.h5 {
- font-size: 20px !important;
+
+/* Headings */
+
+a {
+ cursor: pointer;
+ text-decoration: none;
+ color: var(--color-accent);
}
-.-fs24,
-h4,
-.h4 {
- font-size: 24px !important;
- line-height: 1.25;
+
+a:hover {
+ color: var(--color-dark);
}
-.-fs32,
-h3,
-.h3,
-.k-window-titlebar {
- font-size: 32px !important;
- line-height: 1.15;
+
+h1, h2, h3, h4, h5, h6 {
+ font-weight: normal;
+ line-height: 1.36em;
}
-.-fs38 {
- font-size: 38px !important;
- line-height: 1.1;
+
+article h1, article h2, article h3, article h4, article h5, article h6 {
+ margin-top: 0;
}
-.-fs46,
-h2,
-.h2 {
- font-size: 46px !important;
- line-height: 1.1;
+
+article {
+ padding-bottom: 1em;
}
-.-fs60,
-h1,
-.h1 {
- font-size: 60px !important;
- line-height: 1.1;
+
+article > hr {
+ border: solid var(--border-purple);
+ border-width: 0 0 1px;
}
-.-fs90 {
- font-size: 90px !important;
- line-height: 1.1;
+
+article img {
+ max-width: 100%;
}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-.h1,
-.h2,
-.h3,
-.h4,
-.h5,
-.h6,
-.k-window-titlebar {
- margin: 0 0 0.5em;
- color: #000;
- font-family: Geomanist, sans-serif;
- font-weight: 400;
-}
-.-bg-black h1,
-.-bg-black h2,
-.-bg-black h3,
-.-bg-black h4,
-.-bg-black h5,
-.-bg-black h6,
-.-bg-black .h1,
-.-bg-black .h2,
-.-bg-black .h3,
-.-bg-black .h4,
-.-bg-black .h5,
-.-bg-black .h6 {
- color: #fff;
+
+h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
+ top: 80px;
+ width: auto;
+ color: var(--color-dark);
+ display: block;
+ position: relative;
+ margin-top: -75px;
+ margin-bottom: 100px;
}
-h6,
-.h6 {
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
+
+h2 > a:hover:before, h3 > a:hover:before, h4 > a:hover:before, h5 > a:hover:before, h6 > a:hover:before {
+ left: -1.4em;
+ content: "\f0c1";
+ font-family: "Font Awesome 5 Pro";
+ font-weight: 300;
+ font-size: .6em;
+ display: inline-block;
+ vertical-align: middle;
+ position: relative;
+ padding-right: .4em;
+ margin-right: -1.4em;
+ line-height: 1em;
}
-.-cf:after,
-.row:after,
-.HighlightList > li:after,
-.HighlightList > div:not(.sf_colsIn):after,
-.HighlightList > div.sf_colsIn > div:after {
- content: "";
- display: table;
- clear: both;
+
+h1 {
+ font-size: 2.8rem;
+ letter-spacing: -.036em;
}
-.-oh {
- overflow: hidden !important;
+
+h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
+ margin-top: 0;
}
-.-ov {
- overflow: visible !important;
-}
-.-pr {
- position: relative !important;
-}
-.-ps {
- position: static !important;
-}
-.-fl {
- float: left !important;
-}
-.-fr {
- float: right !important;
-}
-.-fn {
- float: none !important;
-}
-.-vam {
- vertical-align: middle !important;
-}
-.-vat {
- vertical-align: top !important;
-}
-.-wa {
- width: auto !important;
-}
-.-db {
- display: block !important;
-}
-.-dib {
- display: inline-block !important;
-}
-.-dn {
- display: none !important;
-}
-.-tal {
- text-align: left !important;
-}
-.-tac {
- text-align: center !important;
-}
-.-tar {
- text-align: right !important;
-}
-.-ff-prim {
- font-family: Geomanist, sans-serif !important;
-}
-.-ff-sec {
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace !important;
-}
-.-fw3 {
- font-weight: 300 !important;
-}
-.-fw4 {
- font-weight: 400 !important;
-}
-.-fw5 {
- font-weight: 500 !important;
-}
-a[class*="-o-"]:hover,
-a[class*="-o-"]:focus,
-a[class*="-o-"]:active {
- opacity: 1;
+
+h2,
+html .k-window-title {
+ font-size: 2.25rem;
}
-.-o-0 {
- opacity: 0;
+
+h3 {
+ font-size: 1.75rem;
+ line-height: 1.28em;
}
-.-o-20 {
- opacity: 0.2;
+
+h4 {
+ font-size: 1.3125rem;
+ line-height: 1.43em;
}
-.-o-30 {
- opacity: 0.3;
+
+h5 {
+ font-size: 1.125rem;
}
-.-o-40 {
- opacity: 0.4;
+
+.-allcaps {
+ font-weight: 600;
+ letter-spacing: -.02em;
+ text-transform: uppercase;
}
-.-o-50 {
- opacity: 0.5;
+
+pre {
+ font-size: .8125rem;
+ line-height: 1.36em;
}
-.-o-100 {
- opacity: 1;
+
+/* Navigation */
+
+.ns-navigation {
+ background: var(--background-dark);
+ font-size: .88em;
+ height: 4.71em;
+ display: flex;
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 2;
+ width: calc(100% + 550px);
+ margin-left: -300px;
}
-.-no-pseudo:before,
-.-no-pseudo:after {
- display: none !important;
+
+body.-landing .ns-navigation {
+ width: auto;
+ margin-left: unset;
}
-.-no-pseudo-first > :first-child:before,
-.-no-pseudo-first > :first-child:after {
- display: none !important;
+
+.ns-page:before,
+.ns-start-links:before,
+.ns-navigation:before {
+ position: absolute;
+ display: block;
+ content: "\a0";
+ width: 500%;
+ left: -200%;
+ height: 100%;
+ background: inherit;
+ z-index: -1;
+ transition: box-shadow .3s ease-out;
}
-.-no-pseudo-last > :last-child:before,
-.-no-pseudo-last > :last-child:after {
- display: none !important;
+
+html.ns-state-scrolled .ns-navigation:before {
+ box-shadow: 0 2px 10px var(--transparent-dark-50);
}
-.-separated > * + * {
- position: relative;
- display: inline-block;
- margin-left: 3.2em;
+
+.navigation__logo {
+ width: 14em;
+ background: transparent no-repeat center center url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASkAAAA4CAMAAACWuv46AAABOFBMVEUAAAD///////////////////////////////////////////88Wv3///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////88Wv3///////88Wv3///////////+Imf7///////////////////////88Wv3///88Wv08Wv3///////////////////////88Wv08Wv08Wv08Wv08Wv3///88Wv3///88Wv08Wv08Wv3///88Wv3DzP7P1/9WcP3v8f9DYP29x/7q7f+5w/6XqP49W/2Rov5IZP2TpP7z9f/d4//Z3/9yh/5uhf5kfP12jP50if6RZI/pAAAAUXRSTlMAoNCwUJCAQHDxMAMQ+/QJYBTWxBm9DzctBs3JI95U662IHwvTtGPhjIRYKXRq+vja2HxHOwO5qaSWZiXnmjMI5ZN5XEMy8s2VcFNMSp5bnHc4p+yiAAAH3ElEQVR42u2caVfaQBSGLxIUkkIIYd8EBWTR1qq1orWrdrPb0Fpbu+///x+UzNzMZIFm6Wl7TuH5RCYwSZ5M3rnxJILJlUf3790d/ZK79+4/ugIzzpUH10a+uPbgBswy1y+PfHP5OswuDy+OAnDxCcwqD9+OgjGrqq5fHAXk4mxegFcujwJzeSZj/cEoBM9g9rhyLYypazM4qB6NOO/fvXo+5vzMJeaN0f7q3XvR8hBmjvsjk2+vCeOVay58Tigvv/GWpzBz3OMjioqivHGbQlV8VF2GmYPf670jgi9OUy6HF2Hm4DbOieDj6RRTr3jTn4p0uXm4XwIP/sm2HDaQT2eTTb3gTRfgj3AnSQiprMLfALcV3hSm+j8xpSaIwRYERDvZ2FqMS9nQ2wpvirwJY6qZGFNbAcFewqAJU8nKBuZPdgglB0FQ0jpBFuIl8MT3tqqygeZhinwJYSrGdncVOFHaEoOpLBKDCDCKhNKAAAwWiIXaEvgEtxWFaeDOp71MfTwNa4q0lbCmlBZdrAcRtUxsJCXwg9hWeFMi1cOaIrGwpqBaISS1Doi/43VwaQB+ENsKb0qkelhTZCOEKWSlqAaawMyEGg7L+LEN/sBthTcleBPaVHJ7sqmsPNA8THmiVOUDkYQNQunAmO0EoRyASb4oZxXwTakqV5UwpsiPsKZIYuA2lW2uGQubvewgYrAIw0iExXGNNqyMxdEPg17U4DYgHbp4aGiS2ikyJtPDimCTGOhA2ebaDKpdujLVritsLe27A5CP79bW9s1tgcTaS2k9aXy9QecEbdy0xvo21g4nmXptTfWwpkhNc5raSBEkNWQXDCSIDRmAiVvaZ9/L4yhiu9wEKJYJ74Rd4cu2qb5cu7p+xAaceitJTFoFGBPH4XtCf7NubguHdU5MoVdXAVaIjYTFFBf0/IMz1YWpl2+9TSG6ajfVJBa8TK2yNRu2obICJ0w2cghjMuxqx2EjqiltwZbydWGqnsS+hSknC/lfmPpCuKnRuTPVxZX53bcpsmcz1SFBTMEtYlAGylUM6uMUsbFF1zGWG+s7KnBUIYqpXDJN6dhJ2m1KsDvd1Olri6mzz45UF6ZennqbShLGosWUlghmasBbALRL9PN2KYN7reOH5ABAsuqo9HaAgqYtrKnUlECabAq5M9nU2emHl0SYGnuzLP5AU8jHD6dnHqbaDcLoC1M9lHOyWiq0uamiLA/ZT2QDVZiCHP1wS+RLTekwHeslXpfvAX5R0DqhYZ5kx7dYOJB0LFwcprZdpmr9vCI/JpTN0nh/WNdb8pjiFFOjr9ZUD2oqquqYDjvc1Jolu6CLptxVgjBVZ4dq/KBFWALrluzKJugGVACtTOwMFbPXZVouKGwfKhZTua20pDlNtdj8sU4oBUeVMPnqG2NL9YBXXxS0TQyPKprCsVwFipLxNlW6ya4CgAKzruXpOElJDHa+jwBA7TniqwlQsR5jNkkS7dsFbmqhCBSHKRkYzPy6w9TkRDewpXqwRI8CHODNWCbHTG3jaUVue5vCFTrAIX6jQNzEWX3ZaSwTQbIKKRxxjLqsiKuY3NTAbQpnDzGoHk+vPF/bTNlT3X+VgKZgx3aeY32MFUTyYSqbZPU2FgwF2CZuFsVNXL+rX8LWXollDdhBUx1wm3LvXNSzRkdT9lR/HajyjNLzaDPFlhqA1L1MifuUZto840vTTSlAWd1gdnMKm+4mmkqqLlOTdq7h2xSmOhLcFMStpnbsux7zY+qIRV3FHAgD1kfcSgHyS/FIK7UK1sprASv3LDC6Tcn4GEfnk03dRN1YIt/yZQr5ENaUq6SJ5QnlBHDi4qYwshouU/yWjs+BSooOCTz8PJPT4zUo5THKYIVIFyhFKuIQTbWnmCJ3sGNmeZ+bWvc2NTr/LVNKVJjCyWj5mIqqEGEK7/CqAHDgMBW3qBYDJkrPfUknmUi8oPQxxPvMSQJHaIeIimIlw27msL+9aaZSR/QK3jVvnQAirHpQjRicaoqnenhToFbEgabxiCLpfjdBuCmePomrewskazeVF7PCgeUP37sFVZPKbGpVVs3O9Nvp/ccY6XVQzbm3u7WHvRzxO2S3KaSx3+/dJGLkbWFFGmnU1qaaEqke3hRoNW7K/adJNKWmCGffbgoOCZLjKWRHAtggVtAfwB33nZy3KUGSDv4CERSnmUK+/o4pUVbFAOSU2xQW7Jyow9SxMELJZ4iNQ8BLxEZCnnDjt6YFMnUbKLqlZaop5F1IU8jOJR4zRwnCSaIpx+GnVLspTDcxLWXLxMJj2qw0iY2bBaDYmjMr4GUqaa/yee4h+nRTyHlIU0hdBHI1R5B2H01Rsrv8eLIOU2lnfVna4vte6wNSjIqjTHTzgCxxrameCp6m9hZT5virg8lxhgeAp6mzzwFMFSWDAljYMVqKQCl09c1WrncMmmRg+MD2XCajx44UgCW6RgOGKuGiIJ+OVGqtXGy7BAKtM8wt1Mq7XQlbsd/ebmazEumgvKpkcAwMvi1e0mnxRrlWjvStfSjSsLLZ2l0sup/gQFNTUv0Vb/6PHspDU8GfChKmRKr/108FoangT5oJU8Lhf/2kGZoK/vSiMCUuzP/66UU0FfyJ2DcuU2fn//UTsWhq/pS1J/2oQXz+5P78bRCfzN8wCsb8rTXfzN+E9MX87VrfzN/Y/ovM/wuAX34CigQonPAMA7gAAAAASUVORK5CYII=");
+ background-size: contain;
}
-.-separated > * + *:before {
- content: "";
- display: inline-block;
- color: rgba(114,121,156,0.4);
- position: absolute;
- left: -1.7em;
- top: 50%;
- height: 1.2em;
- margin-top: -0.6em;
- border-left: 1px solid;
+
+.navigation__right {
+ flex: 1;
+ text-align: right;
}
-.-bl:before {
- content: "";
- position: absolute;
- display: block;
- margin-left: -1px;
- top: 0;
- bottom: 0;
- width: 1px;
- opacity: 0.2;
- color: #3d5afe;
- background: currentColor;
+
+.navigation__right,
+.navigation__right > * {
+ height: 100%;
}
-.-bl[class*="col-"]:before {
- margin-left: -21px;
+
+.navigation__right .k-menu {
+ display: inline-block;
+ color: var(--color-light);
+ font-weight: 600;
+ text-transform: uppercase;
+ border: 0;
}
-.hr--double {
- border-top-width: 2px;
+
+.ns-navigation .navigation__right > ul > .k-item {
+ height: 100%;
+ border: 0;
+ opacity: 1;
+ display: flex;
+ align-items: center;
}
-.-hyphenate,
-.-hyphenate-links a {
- overflow-wrap: break-word;
- word-wrap: break-word;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
+
+.ns-navigation .navigation__right > ul > .k-item .k-link {
+ color: inherit;
+ padding: 0 1.1em;
+ line-height: 4.72em;
}
-.-oya {
- overflow-y: auto;
+
+.ns-navigation .navigation__right > ul .k-separator {
+ background: var(--transparent-white-50);
+ font-size: inherit;
+ width: 1px;
+ height: 1.4em;
+ vertical-align: middle;
+ margin-top: 1.43em;
}
-.-p0 {
- padding: 0 !important;
+
+html .navigation__right > ul > .k-item > span.k-link {
+ line-height: normal;
}
-.-p1 {
- padding: 10px !important;
+
+html .navigation__right > ul > .k-item > span.k-link a {
+ padding: 5px;
+ display: inline-block;
+ color: var(--color-light);
+ opacity: .75;
}
-.-p2 {
- padding: 20px !important;
+
+html .navigation__right > ul > .k-item > span.k-link a:hover {
+ opacity: 1;
}
-.-p3 {
- padding: 30px !important;
+
+html .ns-navigation .k-menu-group,
+.navigation__right > ul > .k-item:not(.k-state-disabled) > .k-state-active,
+.navigation__right > ul > .k-item:not(.k-state-disabled) > .k-link:hover {
+ background: var(--background-secondary);
}
-.-p4 {
- padding: 40px !important;
+
+html .ns-navigation .k-menu .k-menu-group {
+ border: 0;
+ padding: .5em 0 .7em;
+ text-align: left;
+ min-width: calc(100% - 1.2em);
+ box-shadow: 0 3px 6px var(--transparent-dark-15);
}
-.-p5 {
- padding: 50px !important;
+
+html .ns-navigation .k-menu-group .k-item .k-link {
+ line-height: 2.2em;
+ padding: 0 1.1em;
}
-.-pt0 {
- padding-top: 0 !important;
+
+html .ns-navigation .k-menu-group .k-item .k-link:hover {
+ color: var(--color-green);
}
-.-pt1 {
- padding-top: 10px !important;
+
+html .ns-navigation .k-animation-container {
+ padding: 0 .71em .71em;
+ margin-left: -.71em;
+ min-width: 100%;
}
-.-pt2 {
- padding-top: 20px !important;
+
+.ns-navigation [target=_blank]:after,
+html .ns-navigation .k-menu .k-item .k-menu-expand-arrow {
+ font-family: "Font Awesome 5 Pro";
+ margin: -.1em -.3em 0 .2em;
}
-.-pt3 {
- padding-top: 30px !important;
+
+.ns-navigation .k-menu-expand-arrow:before {
+ content: "\f0d7";
+ font-weight: 600;
}
-.-pt4 {
- padding-top: 40px !important;
+
+.ns-navigation [target=_blank]:after {
+ content: "\f08e";
+ font-weight: 300;
+ font-size: 11px;
+ position: absolute;
+ margin: -.5em 0 0 .5em;
}
-.-pt5 {
- padding-top: 50px !important;
+
+/* Flavor Header */
+
+.ns-flavor-header {
+ display: flex;
+ align-items: center;
+ font-size: .88em;
+ height: 4.71em;
}
-.-pt6 {
- padding-top: 60px !important;
+
+.flavor-header__search {
+ flex: 1;
+ padding-left: 3.57em;
}
-.-pt7 {
- padding-top: 70px !important;
+
+.flavor-header__search > div {
+ width: calc(100% + 250px);
}
-.-pt8 {
- padding-top: 80px !important;
+
+.flavor-header__navigation {
+ color: inherit;
+ width: 16.43em;
+ margin-left: -20em;
}
-.-pt9 {
- padding-top: 90px !important;
+
+.flavor-header__title {
+ font-size: 1.5em;
+ margin: 0;
}
-.-pt10 {
- padding-top: 100px !important;
+
+.flavor-header__title:after {
+ font-size: .57em;
+ display: block;
+ content: "< All Flavors";
+ text-transform: uppercase;
+ line-height: 1;
}
-.-pb0 {
- padding-bottom: 0 !important;
+
+/* Left TOC */
+
+/* TreeView */
+
+html .k-treeview {
+ white-space: normal;
+ overflow: hidden;
}
-.-pb1 {
- padding-bottom: 10px !important;
+
+html .k-treeview .k-in {
+ border: 0;
+ cursor: pointer;
+ margin: 0;
+ padding-left: 1.87em;
+ user-select: none;
}
-.-pb2 {
- padding-bottom: 20px !important;
+
+.k-treeview .k-item > div {
+ display: flex;
+ align-items: center;
}
-.-pb3 {
- padding-bottom: 30px !important;
+
+.k-treeview-lines > .k-item > div > .k-icon {
+ display: none;
}
-.-pb4 {
- padding-bottom: 40px !important;
+
+.k-treeview-lines > .k-item > div > .k-in {
+ text-transform: uppercase;
}
-.-pb5 {
- padding-bottom: 50px !important;
+
+html .k-treeview .k-group .k-icon {
+ margin: 0 -1.71em 0 .71em;
+ font-size: .93em;
}
-.-pb6 {
- padding-bottom: 60px !important;
+
+.k-treeview .k-group .k-group .k-in {
+ padding-top: .33em;
+ padding-bottom: .33em;
+ font-weight: 600;
+ text-transform: capitalize;
}
-.-pb7 {
- padding-bottom: 70px !important;
+
+html .k-treeview .k-icon:before,
+.k-treeview-lines .k-group .k-group .k-in:before {
+ content: "\f15c";
+ font-family: "Font Awesome 5 Pro";
+ font-weight: 300;
+ font-size: 14px;
+ color: var(--color-secondary);
+ margin-left: -1.25em;
+ margin-right: .5em;
}
-.-pb8 {
- padding-bottom: 80px !important;
+
+.k-treeview-lines .k-group .k-group .k-icon + .k-in:before {
+ display: none;
}
-.-pb9 {
- padding-bottom: 90px !important;
+
+html .k-treeview .k-in > a {
+ color: inherit;
+ font-weight: inherit;
}
-.-pb10 {
- padding-bottom: 100px !important;
+
+html .k-treeview .k-icon:before {
+ font-weight: 400;
+ content: "\f105";
+ margin: 0;
+ position: absolute;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
}
-.-pl0 {
- padding-left: 0 !important;
+
+html .k-treeview .k-i-collapse:before {
+ content: "\f107";
}
-.-pl1 {
- padding-left: 10px !important;
+
+html .k-treeview-lines > .k-item {
+ margin: 0 -.8em 1.33em;
+ padding: 0;
}
-.-pl2 {
- padding-left: 20px !important;
+
+html .k-treeview-lines > .k-item > .k-group {
+ padding-top: .33em;
}
-.-pl3 {
- padding-left: 30px !important;
+
+html .k-treeview-lines > .k-item > .k-group > .k-item {
+ margin: 0 .3em;
+ padding: 0 0 0 .8em;
+ width: 100%;
}
-.-pl4 {
- padding-left: 40px !important;
+
+html .k-treeview-lines > .k-item > .k-group > .k-item > .k-group .k-in {
+ font-weight: 400;
+ color: var(--color-accent);
}
-.-pl5 {
- padding-left: 50px !important;
+
+html .k-treeview-lines > .k-item > .k-group > .ns-state-expanded {
+ border: solid var(--border-purple);
+ border-width: 1px 0;
+ background: var(--background-special);
}
-.-pl6 {
- padding-left: 60px !important;
+
+html .k-treeview.k-treeview.k-treeview.k-treeview.k-treeview .k-state-selected {
+ color: var(--color-green);
}
-.-pl7 {
- padding-left: 70px !important;
+
+/* Page */
+
+#page-inner-content {
+ display: flex;
}
-.-pl8 {
- padding-left: 80px !important;
+
+#page-article {
+ flex: 1;
+ min-width: 0;
}
-.-pl9 {
- padding-left: 90px !important;
+
+html .ns-page .-hidden {
+ display: none;
}
-.-pl10 {
- padding-left: 100px !important;
+
+/* Collapse button and container */
+
+.ns-side-nav {
+ font-size: .88em;
+ margin: -.71em 1.8em 0 -22.86em;
+ overflow: hidden;
+ padding: 1.43em;
}
-.-pr0 {
- padding-right: 0 !important;
+
+.right-nav__input,
+.side-nav__burger-input {
+ opacity: 0;
+ position: absolute;
}
-.-pr1 {
- padding-right: 10px !important;
+
+.navigation__burger-menu,
+.side-nav__burger-menu {
+ display: none;
+ border: 0;
+ z-index: 1;
+ width: 2.22em;
+ height: 2.22em;
+ cursor: pointer;
+ font-size: 1.29em;
+ position: relative;
+ align-items: center;
+ justify-content: center;
+ background: var(--color-light);
+ color: var(--color-secondary);
+ transition: box-shadow .3s ease-out;
+ transition-delay: .2s;
+ box-shadow: 0 3px 20px var(--transparent-dark-15);
+}
+
+.side-nav__burger-menu:before {
+ transform: rotate(-135deg);
+ transform-origin: center center;
+ transition: transform .2s ease-out;
+}
+
+.side-nav__burger-menu:hover {
+ color: var(--color-dark);
+}
+
+.right-nav__input:checked + label,
+.side-nav__burger-input:checked + label {
+ box-shadow: 0 0 0 var(--transparent-dark-15);
+ transition-delay: -.3s;
+}
+
+html body .side-nav__tree {
+ contain: content;
+ will-change: width, height;
+ transition: width .3s ease-out, max-height .3s ease-out;
+ background: var(--color-light);
+ box-shadow: 0 3px 20px var(--transparent-dark-15);
+ padding: 1.4em 1.72em 0 0;
+ width: 16.43em;
+ margin-top: 0;
}
-.-pr2 {
- padding-right: 20px !important;
+
+.side-nav__tree > ul {
+ font-size: 1.07em;
+ min-width: 15.33em;
}
-.-pr3 {
- padding-right: 30px !important;
+
+/* Breadcrumbs */
+
+.ns-breadcrumb ul {
+ white-space: nowrap;
+ list-style: none;
+ padding: 0;
}
-.-pr4 {
- padding-right: 40px !important;
+
+.ns-breadcrumb ul li {
+ display: inline-block;
}
-.-pr5 {
- padding-right: 50px !important;
+
+.ns-breadcrumb ul li:after {
+ content: "/";
+ display: inline-block;
+ margin: 0 5px;
}
-.-pr6 {
- padding-right: 60px !important;
+
+.ns-breadcrumb ul li:last-child:after {
+ display: none;
}
-.-pr7 {
- padding-right: 70px !important;
+
+/* Right TOC */
+
+.right-nav__container {
+ top: 6.25em;
+ margin-left: 1.25em;
+ position: -webkit-sticky;
+ position: sticky;
+ float: right;
+ margin-right: -17em;
}
-.-pr8 {
- padding-right: 80px !important;
+
+.right-nav__tree {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ border-left: 1px solid var(--color-purple);
}
-.-pr9 {
- padding-right: 90px !important;
+
+.right-nav__tree ul {
+ list-style: none;
+ padding: 0 0 0 1.33em;
+ display: block;
}
-.-pr10 {
- padding-right: 100px !important;
+
+.right-nav__tree > ul {
+ font-size: .93em;
+ font-weight: 600;
+ width: 13.33em;
+ margin: 0 0 3.13em;
+ -webkit-user-select: text;
+ -moz-user-select: -moz-text;
+ -ms-user-select: text;
+ user-select: text;
}
-.-m0 {
- margin: 0 !important;
+
+.right-nav__tree ul ul {
+ font-size: .93em;
+ font-weight: 400;
+ padding: 0;
}
-.-m1 {
- margin: 10px !important;
+
+.right-nav__tree > div {
+ font-weight: 400;
+ vertical-align: middle;
+ margin-left: 1.25em;
+ margin-bottom: 1.5em;
}
-.-m2 {
- margin: 20px !important;
+
+.right-nav__tree > div:first-child {
+ display: inline-block;
}
-.-m3 {
- margin: 30px !important;
+
+.right-nav__tree li {
+ display: block;
}
-.-m4 {
- margin: 40px !important;
+
+.right-nav__label {
+ display: none;
+ cursor: pointer;
+ width: 2.5em;
+ height: 2.5em;
+ vertical-align: middle;
+ align-items: center;
+ justify-content: center;
+ opacity: .75;
}
-.-m5 {
- margin: 50px !important;
+
+.right-nav__label:hover {
+ opacity: 1;
}
-.-mt0 {
- margin-top: 0 !important;
+
+.right-nav__label:before {
+ content: "\f100";
+ font-family: "Font Awesome 5 Pro";
+ font-weight: 300;
+ font-size: 1.5em;
}
-.-mt1 {
- margin-top: 10px !important;
+
+.right-nav__input:checked + .right-nav__label:before {
+ content: "\f101";
}
-.-mt2 {
- margin-top: 20px !important;
+
+.right-nav__tree ul a {
+ display: block;
+ padding: .33em 0;
+ position: relative;
}
-.-mt3 {
- margin-top: 30px !important;
+
+.right-nav__tree .ns-state-selected:before {
+ content: "\a0";
+ position: absolute;
+ top: 0;
+ left: -1.53em;
+ width: .2em;
+ height: 100%;
+ background: var(--background-green);
}
-.-mt4 {
- margin-top: 40px !important;
+
+.right-nav__tree a.ns-state-selected {
+ color: var(--color-green);
}
-.-mt5 {
- margin-top: 50px !important;
+
+div.right-nav__links {
+ text-transform: none;
+ padding-bottom: 30px;
}
-.-mt6 {
- margin-top: 60px !important;
+
+div.right-nav__links .ns-button {
+ padding-left: 1em;
+ padding-right: 1em;
}
-.-mt7 {
- margin-top: 70px !important;
+
+.right-nav__links a:not(.ns-button) {
+ margin-top: 1.56em;
+ display: block;
}
-.-mt8 {
- margin-top: 80px !important;
+
+.right-nav__links a:not(.ns-button) > i {
+ margin-right: .2em;
}
-.-mt9 {
- margin-top: 90px !important;
+
+/* Code Container */
+
+html .nd-code-container .k-loading {
+ display: none;
}
-.-mt10 {
- margin-top: 100px !important;
+
+html .nd-code-container,
+html .nd-code-container .k-item {
+ border: none;
}
-.-mb0 {
- margin-bottom: 0 !important;
+
+html .nd-code-container .k-item {
+ padding: 0 15px;
}
-.-mb1 {
- margin-bottom: 10px !important;
+
+html .nd-code-container .k-item.k-first {
+ padding-left: 0;
}
-.-mb2 {
- margin-bottom: 20px !important;
+
+html .nd-code-container .k-link {
+ font-weight: 600;
+ font-size: 12px;
+ text-transform: uppercase;
+ padding: 5px 0;
+ color: var(--color-accent);
+ border-bottom: 3px solid transparent;
}
-.-mb3 {
- margin-bottom: 30px !important;
+
+html .nd-code-container .k-tabstrip-items .k-state-active .k-link {
+ border-bottom-color: currentColor;
+ color: var(--color-green);
}
-.-mb4 {
- margin-bottom: 40px !important;
+
+html .nd-code-container .k-content {
+ padding: 0;
+ border: 0;
+ overflow: hidden;
+ margin: 0;
}
-.-mb5 {
- margin-bottom: 50px !important;
+
+html .nd-code-container pre {
+ overflow-x: auto;
+ font-weight: 400;
+ font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
}
-.-mb6 {
- margin-bottom: 60px !important;
+
+html .k-tabstrip-wrapper {
+ margin-bottom: 20px;
}
-.-mb7 {
- margin-bottom: 70px !important;
+
+html .nd-code-container.k-floatwrap:after {
+ display: none;
}
-.-mb8 {
- margin-bottom: 80px !important;
+
+/* Blockquote hints */
+
+blockquote {
+ margin: 1.25em 0;
+ display: flex;
+ position: relative;
+ flex-direction: column;
+ justify-content: center;
+ background: var(--background-purple);
+ border: 1px solid var(--color-light);
+ padding: 1.25em 1.25em 1.25em 5.63em;
+ min-height: 3em;
+}
+
+blockquote:before {
+ position: absolute;
+ content: "\a0";
+ display: block;
+ top: .42em;
+ left: .42em;
+ width: 1em;
+ height: 1em;
+ font-size: 3.2em;
+ line-height: 1;
+ margin-right: .4em;
+ background: transparent center center url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2050%2050%22%3E%0A%3Cpath%20d%3D%22M25.7%2C10.7c-5.8-0.4-10.5%2C4.1-10.5%2C9.8c0%2C1.1%2C0.2%2C2.2%2C0.6%2C3.3l0.9%2C1.7c0.1%2C0.2%2C0.2%2C0.4%2C0.4%2C0.6l0.1%2C0.1l0%2C0%0A%09c1.3%2C2.4%2C2.3%2C4.9%2C2.9%2C7.7h-2v0.9h2.2c0%2C0.1%2C0%2C0.1%2C0%2C0.1c0.1%2C0.2%2C0.1%2C0.5%2C0.1%2C0.8h-1.2v0.9h1.3c0.1%2C0.4%2C0.1%2C0.9%2C0.1%2C1.2V38%0A%09c0.3%2C0.8%2C1.1%2C1.3%2C1.9%2C1.3h5.1c0.9%2C0%2C1.8-0.6%2C2-1.6c0-0.2%2C0.1-0.4%2C0.1-0.6c0-0.1%2C0.1-0.3%2C0.1-0.5h1.3v-0.9h-1.1%0A%09c0.1-0.3%2C0.1-0.6%2C0.2-0.9h2.1v-0.9h-1.9c0.7-2.9%2C1.7-5.7%2C3.2-8.2c0.1-0.1%2C0.1-0.2%2C0.2-0.4c0.9-1.6%2C1.4-3.5%2C1.2-5.4%0A%09C34.6%2C15%2C30.7%2C11.1%2C25.7%2C10.7z%20M28.7%2C37.2c0%2C0.2-0.1%2C0.4-0.1%2C0.5c-0.1%2C0.5-0.6%2C0.9-1.1%2C0.9h-5.1c-0.4%2C0-0.9-0.2-1-0.7%0A%09c-0.1-0.3-0.1-0.7-0.1-1.1h7.4C28.7%2C36.9%2C28.7%2C37%2C28.7%2C37.2z%20M28.9%2C35.7L28.9%2C35.7l-7.6%2C0.1c-0.1-0.3-0.1-0.7-0.1-0.9h8%0A%09C29%2C35.2%2C28.9%2C35.5%2C28.9%2C35.7z%20M32.9%2C24.9L32.9%2C24.9c-0.1%2C0.2-0.2%2C0.3-0.3%2C0.4c-1.5%2C2.6-2.7%2C5.5-3.3%2C8.6h-8.4%0A%09c-0.6-3-1.7-5.7-3.1-8.2l-0.1-0.1c-0.1-0.2-0.2-0.4-0.3-0.6l-0.8-1.7c-0.3-0.9-0.5-1.9-0.5-3c0-5.1%2C4.3-9.3%2C9.5-8.9%0A%09c4.5%2C0.3%2C8%2C4%2C8.3%2C8.4C34.1%2C21.8%2C33.7%2C23.4%2C32.9%2C24.9z%22%2F%3E%0A%3Cg%3E%0A%09%3Crect%20x%3D%2234.1%22%20y%3D%225.3%22%20transform%3D%22matrix%280.5%20-0.866%200.866%200.5%2013.1193%2034.9042%29%22%20width%3D%225.4%22%20height%3D%221.5%22%2F%3E%0A%09%3Crect%20x%3D%2224.3%22%20y%3D%220.3%22%20width%3D%221.5%22%20height%3D%225.4%22%2F%3E%0A%09%3Crect%20x%3D%2212.5%22%20y%3D%223.4%22%20transform%3D%22matrix%280.866%20-0.5%200.5%200.866%20-1.2827%207.4242%29%22%20width%3D%221.5%22%20height%3D%225.4%22%2F%3E%0A%09%3Crect%20x%3D%2224.3%22%20y%3D%2244.3%22%20width%3D%221.5%22%20height%3D%225.4%22%2F%3E%0A%09%3Crect%20x%3D%2236%22%20y%3D%2241.2%22%20transform%3D%22matrix%280.8661%20-0.4999%200.4999%200.8661%20-17.0121%2024.2496%29%22%20width%3D%221.5%22%20height%3D%225.4%22%2F%3E%0A%09%3Crect%20x%3D%2210.5%22%20y%3D%2243.1%22%20transform%3D%22matrix%280.5001%20-0.866%200.866%200.5001%20-31.3599%2033.4008%29%22%20width%3D%225.4%22%20height%3D%221.5%22%2F%3E%0A%09%3Crect%20x%3D%2243.2%22%20y%3D%2234.1%22%20transform%3D%22matrix%280.5%20-0.866%200.866%200.5%20-9.9047%2056.4202%29%22%20width%3D%221.5%22%20height%3D%225.4%22%2F%3E%0A%09%3Crect%20x%3D%2244.3%22%20y%3D%2224.3%22%20width%3D%225.4%22%20height%3D%221.5%22%2F%3E%0A%09%3Crect%20x%3D%2241.2%22%20y%3D%2212.5%22%20transform%3D%22matrix%280.866%20-0.5%200.5%200.866%20-0.7251%2023.7179%29%22%20width%3D%225.4%22%20height%3D%221.5%22%2F%3E%0A%09%3Crect%20x%3D%220.3%22%20y%3D%2224.3%22%20width%3D%225.4%22%20height%3D%221.5%22%2F%3E%0A%09%3Crect%20x%3D%223.4%22%20y%3D%2236%22%20transform%3D%22matrix%280.8661%20-0.4999%200.4999%200.8661%20-17.554%207.9825%29%22%20width%3D%225.4%22%20height%3D%221.5%22%2F%3E%0A%09%3Crect%20x%3D%225.4%22%20y%3D%2210.5%22%20transform%3D%22matrix%280.5001%20-0.866%200.866%200.5001%20-8.4051%2011.9388%29%22%20width%3D%221.5%22%20height%3D%225.4%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}
-.-mb9 {
- margin-bottom: 90px !important;
+
+blockquote > *:first-child {
+ margin-top: 0;
}
-.-mb10 {
- margin-bottom: 100px !important;
+
+blockquote > *:last-child {
+ margin-bottom: 0;
}
-.-ml0 {
- margin-left: 0 !important;
+
+/* Button */
+
+.ns-button {
+ display: inline-block;
+ color: var(--color-accent);
+ border: 1px solid currentColor;
+ background: var(--background-light);
+ font-weight: 600;
+ font-size: 14px;
+ text-transform: uppercase;
+ min-width: 9.29em;
+ white-space: nowrap;
+ cursor: pointer;
}
-.-ml1 {
- margin-left: 10px !important;
+
+.ns-button,
+html .ns-navigation .navigation__right ul .k-item .ns-button {
+ padding: 0 2.14em;
+ height: 2.57em;
+ line-height: 2.5em;
+ cursor: pointer !important;
+ box-sizing: border-box;
+ margin: 0 .36em;
}
-.-ml2 {
- margin-left: 20px !important;
+
+html .ns-navigation .navigation__right ul .k-item .ns-button {
+ font-size: inherit;
}
-.-ml3 {
- margin-left: 30px !important;
+
+.ns-button:last-of-type,
+html .ns-navigation .navigation__right > ul > .k-last .ns-button {
+ margin-right: 0;
}
-.-ml4 {
- margin-left: 40px !important;
+
+.ns-button:first-of-type {
+ margin-left: 0;
}
-.-ml5 {
- margin-left: 50px !important;
+
+.ns-button:hover {
+ color: var(--background-secondary);
}
-.-ml6 {
- margin-left: 60px !important;
+
+.ns-button.-action {
+ color: var(--color-light);
+ border-color: transparent;
+ background: var(--background-accent);
}
-.-ml7 {
- margin-left: 70px !important;
+
+.ns-button.-action:hover {
+ background: var(--background-secondary);
}
-.-ml8 {
- margin-left: 80px !important;
+
+.ns-button.-large {
+ height: 42px;
+ line-height: 42px;
}
-.-ml9 {
- margin-left: 90px !important;
+
+/* Landing page */
+
+.-landing .ns-page {
+ display: flex;
+ flex-flow: wrap;
+ margin: 0 -1.25em;
+ position: relative;
+ justify-content: space-between;
+ background: var(--background-special);
}
-.-ml10 {
- margin-left: 100px !important;
+
+.-landing .ns-footer {
+ width: auto;
+ margin-left: unset;
}
-.-mr0 {
- margin-right: 0 !important;
+
+.ns-card {
+ padding: 1.88em 1.25em;
+ background: var(--color-light);
+ box-shadow: 0 3px 6px var(--transparent-dark-15);
+ color: var(--color-secondary);
+ display: inline-block;
+ margin: 1.88em .94em 0;
+ box-sizing: border-box;
+ flex: 1 1 16.5em;
+ transition: transform .2s ease-out;
+ transition-property: transform, box-shadow;
}
-.-mr1 {
- margin-right: 10px !important;
+
+.ns-card:hover {
+ cursor: pointer;
+ transform: translateY(5px);
+ box-shadow: 0 6px 12px var(--transparent-dark-15);
}
-.-mr2 {
- margin-right: 20px !important;
+
+.card__icon {
+ width: 4em;
+ height: 101%;
+ float: left;
+ margin-right: 1.25em;
+ fill: var(--color-secondary);
}
-.-mr3 {
- margin-right: 30px !important;
+
+.card__title {
+ color: var(--color-dark);
+ margin: 0 0 .5em;
}
-.-mr4 {
- margin-right: 40px !important;
+
+.card__description {
+ display: block;
+ padding-bottom: 1.88em;
}
-.-mr5 {
- margin-right: 50px !important;
+
+.ns-page > h1 {
+ margin: 1em .3em .4em;
+ width: 100%;
}
-.-mr6 {
- margin-right: 60px !important;
+
+.ns-start-links {
+ width: 100%;
+ margin-top: 3em;
+ background: var(--color-light);
+ position: relative;
}
-.-mr7 {
- margin-right: 70px !important;
+
+.ns-start-links #___gcse_0 {
+ width: 50%;
+ margin-left: auto;
+ margin-right: auto;
}
-.-mr8 {
- margin-right: 80px !important;
+
+.ns-start-links > div:first-of-type {
+ margin-top: 2.5em;
}
-.-mr9 {
- margin-right: 90px !important;
+
+.ns-start-links > div:last-of-type {
+ margin-bottom: 2.5em;
}
-.-mr10 {
- margin-right: 100px !important;
+
+.start-links__container {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: flex-start;
+ justify-content: space-between;
}
-.-ma {
- margin: 0 auto;
+
+.start-links__category {
+ margin: 2.5em .94em 0;
}
-.container {
- max-width: 1360px;
- margin-left: auto;
- margin-right: auto;
- padding-left: 40px;
- padding-right: 40px;
+
+.start-links__container ul {
+ padding: 0;
+ list-style: none;
}
-[class*="col-"] {
- position: relative;
+
+.start-links__container li {
+ font-size: 1.31em;
+ line-height: 1;
+ margin: 1em 0;
}
-.col-1 {
- width: 8.333333% !important;
+
+.start-links__container > * {
+ flex: 1 1 12.5em;
}
-.offset-1 {
- margin-left: 8.333333%;
+
+.start-links__container hr {
+ border: 0;
+ background: none;
+ height: .5em;
}
-.col-2 {
- width: 16.666667% !important;
+
+.start-links__title {
+ margin: 1.6em 0 .9em;
+}
+
+/* Footer */
+
+.ns-footer {
+ z-index: 2;
+ font-size: .88em;
+ position: relative;
+ width: calc(100% + 550px);
+ margin-left: -300px;
}
-.offset-2 {
- margin-left: 16.666667%;
+
+.ns-footer:after,
+.ns-footer:before,
+.footer__contribute:before,
+#feedback-section.-detached:before {
+ position: absolute;
+ display: block;
+ content: "\a0";
+ width: 500%;
+ left: -200%;
+ height: 4.29em;
+ background: var(--background-dark);
+ z-index: -1;
}
-.col-3 {
- width: 25% !important;
+
+.ns-footer:after {
+ height: 100%;
+ top: 0;
+ background: var(--background-base);
+ z-index: -2;
}
-.offset-3 {
- margin-left: 25%;
+
+#feedback-section.-detached:before {
+ position: fixed;
}
-.col-4 {
- width: 33.333333% !important;
+
+.footer__form {
+ text-align: center;
+ font-size: 1.14em;
}
-.offset-4 {
- margin-left: 33.333333%;
+
+.footer__form > h4 {
+ margin: 3.24em 0 0;
}
-.col-5 {
- width: 41.666667% !important;
+
+.footer__form > div > div {
+ margin-bottom: 5.94em;
}
-.offset-5 {
- margin-left: 41.666667%;
+
+.footer__form > div > div > p {
+ margin-bottom: 1.88em;
}
-.col-6 {
- width: 50% !important;
+
+.footer__newsletter-frame {
+ max-width: 100%;
+ height: 35px;
+ background: var(--background-light);
+ box-shadow: 0 3px 6px var(--transparent-dark-15);
}
-.offset-6 {
- margin-left: 50%;
+
+.footer__social-links {
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
-.col-7 {
- width: 58.333333% !important;
+
+.-landing .ns-feedback,
+.-landing .ns-footer:before {
+ height: 14.22em;
}
-.offset-7 {
- margin-left: 58.333333%;
+
+.-landing .ns-feedback #feedback-section {
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ color: var(--color-light);
}
-.col-8 {
- width: 66.666667% !important;
+
+.-landing .ns-feedback > div > div {
+ font-size: 1.5em;
+ padding: 0 0 1.43em;
}
-.offset-8 {
- margin-left: 66.666667%;
+
+/* Sitemap */
+
+.footer__sitemap-container {
+ display: flex;
+ flex-direction: column;
}
-.col-9 {
- width: 75% !important;
-}
-.offset-9 {
- margin-left: 75%;
-}
-.col-10 {
- width: 83.333333% !important;
-}
-.offset-10 {
- margin-left: 83.333333%;
-}
-.col-11 {
- width: 91.666667% !important;
-}
-.offset-11 {
- margin-left: 91.666667%;
-}
-.col-12 {
- width: 100% !important;
-}
-.offset-12 {
- margin-left: 100%;
-}
-.row {
- position: relative;
- font-size: 0;
- margin-left: -20px;
- margin-right: -20px;
-}
-.row.sf_cols {
- width: auto;
-}
-.row [class*="col-"] {
- display: inline-block;
- vertical-align: top;
- padding-left: 20px;
- padding-right: 20px;
-}
-.row--aligned > [class*="col-"] {
- position: static;
-}
-.row--separated > [class*="col-"] {
- position: static;
-}
-.row--separated > [class*="col-"]:first-child:before {
- display: none;
-}
-.row--separated > [class*="col-"]:before {
- content: "";
- position: absolute;
- top: 0;
- bottom: 0;
- margin-left: -20px;
- width: 1px;
- color: #3d5afe;
- background: currentColor;
- opacity: 0.2;
-}
-.row--equal {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-wrap: wrap;
- flex-wrap: wrap;
- max-width: 97vw;
-}
-.-bg-brightblue,
-.-bg-blackblue,
-.-bg-darkblue,
-.-bg-nocturnal,
-.-bg-darkpurple {
- color: #d8deff;
-}
-.-bg-brightblue h1,
-.-bg-blackblue h1,
-.-bg-darkblue h1,
-.-bg-nocturnal h1,
-.-bg-darkpurple h1,
-.-bg-brightblue h2,
-.-bg-blackblue h2,
-.-bg-darkblue h2,
-.-bg-nocturnal h2,
-.-bg-darkpurple h2,
-.-bg-brightblue h3,
-.-bg-blackblue h3,
-.-bg-darkblue h3,
-.-bg-nocturnal h3,
-.-bg-darkpurple h3,
-.-bg-brightblue h4,
-.-bg-blackblue h4,
-.-bg-darkblue h4,
-.-bg-nocturnal h4,
-.-bg-darkpurple h4,
-.-bg-brightblue h5,
-.-bg-blackblue h5,
-.-bg-darkblue h5,
-.-bg-nocturnal h5,
-.-bg-darkpurple h5,
-.-bg-brightblue h6,
-.-bg-blackblue h6,
-.-bg-darkblue h6,
-.-bg-nocturnal h6,
-.-bg-darkpurple h6,
-.-bg-brightblue .h1,
-.-bg-blackblue .h1,
-.-bg-darkblue .h1,
-.-bg-nocturnal .h1,
-.-bg-darkpurple .h1,
-.-bg-brightblue .h2,
-.-bg-blackblue .h2,
-.-bg-darkblue .h2,
-.-bg-nocturnal .h2,
-.-bg-darkpurple .h2,
-.-bg-brightblue .h3,
-.-bg-blackblue .h3,
-.-bg-darkblue .h3,
-.-bg-nocturnal .h3,
-.-bg-darkpurple .h3,
-.-bg-brightblue .h4,
-.-bg-blackblue .h4,
-.-bg-darkblue .h4,
-.-bg-nocturnal .h4,
-.-bg-darkpurple .h4,
-.-bg-brightblue .h5,
-.-bg-blackblue .h5,
-.-bg-darkblue .h5,
-.-bg-nocturnal .h5,
-.-bg-darkpurple .h5,
-.-bg-brightblue .h6,
-.-bg-blackblue .h6,
-.-bg-darkblue .h6,
-.-bg-nocturnal .h6,
-.-bg-darkpurple .h6 {
- color: #fff;
-}
-.-bg-brightblue .-c-contrast,
-.-bg-blackblue .-c-contrast,
-.-bg-darkblue .-c-contrast,
-.-bg-nocturnal .-c-contrast,
-.-bg-darkpurple .-c-contrast {
- color: #fff !important;
-}
-.-bg-brightblue hr,
-.-bg-blackblue hr,
-.-bg-darkblue hr,
-.-bg-nocturnal hr,
-.-bg-darkpurple hr,
-.-bg-brightblue .-bl:before,
-.-bg-blackblue .-bl:before,
-.-bg-darkblue .-bl:before,
-.-bg-nocturnal .-bl:before,
-.-bg-darkpurple .-bl:before,
-.-bg-brightblue .Share a:after,
-.-bg-blackblue .Share a:after,
-.-bg-darkblue .Share a:after,
-.-bg-nocturnal .Share a:after,
-.-bg-darkpurple .Share a:after,
-.-bg-brightblue .Highlight-box:before,
-.-bg-blackblue .Highlight-box:before,
-.-bg-darkblue .Highlight-box:before,
-.-bg-nocturnal .Highlight-box:before,
-.-bg-darkpurple .Highlight-box:before,
-.-bg-brightblue .Highlight-list:after,
-.-bg-blackblue .Highlight-list:after,
-.-bg-darkblue .Highlight-list:after,
-.-bg-nocturnal .Highlight-list:after,
-.-bg-darkpurple .Highlight-list:after,
-.-bg-brightblue .Highlight-list li:after,
-.-bg-blackblue .Highlight-list li:after,
-.-bg-darkblue .Highlight-list li:after,
-.-bg-nocturnal .Highlight-list li:after,
-.-bg-darkpurple .Highlight-list li:after,
-.-bg-brightblue .row--separated > [class*="col-"]:before,
-.-bg-blackblue .row--separated > [class*="col-"]:before,
-.-bg-darkblue .row--separated > [class*="col-"]:before,
-.-bg-nocturnal .row--separated > [class*="col-"]:before,
-.-bg-darkpurple .row--separated > [class*="col-"]:before {
- color: #000;
- opacity: 1;
-}
-.-bg-brightblue a:not(.Btn):not(.Link),
-.-bg-blackblue a:not(.Btn):not(.Link),
-.-bg-darkblue a:not(.Btn):not(.Link),
-.-bg-nocturnal a:not(.Btn):not(.Link),
-.-bg-darkpurple a:not(.Btn):not(.Link) {
- color: #00e676;
-}
-.-bg-brightblue a:not(.Btn):not(.Link):hover,
-.-bg-blackblue a:not(.Btn):not(.Link):hover,
-.-bg-darkblue a:not(.Btn):not(.Link):hover,
-.-bg-nocturnal a:not(.Btn):not(.Link):hover,
-.-bg-darkpurple a:not(.Btn):not(.Link):hover {
- color: #fff;
-}
-.-bg-brightblue input[type="submit"],
-.-bg-blackblue input[type="submit"],
-.-bg-darkblue input[type="submit"],
-.-bg-nocturnal input[type="submit"],
-.-bg-darkpurple input[type="submit"],
-.-bg-brightblue button,
-.-bg-blackblue button,
-.-bg-darkblue button,
-.-bg-nocturnal button,
-.-bg-darkpurple button {
- color: #000;
- background-color: #00e676;
-}
-.-bg-brightblue input[type="submit"]:hover,
-.-bg-blackblue input[type="submit"]:hover,
-.-bg-darkblue input[type="submit"]:hover,
-.-bg-nocturnal input[type="submit"]:hover,
-.-bg-darkpurple input[type="submit"]:hover,
-.-bg-brightblue button:hover,
-.-bg-blackblue button:hover,
-.-bg-darkblue button:hover,
-.-bg-nocturnal button:hover,
-.-bg-darkpurple button:hover {
- color: #fff;
-}
-.-bg-brightblue .Tooltip,
-.-bg-blackblue .Tooltip,
-.-bg-darkblue .Tooltip,
-.-bg-nocturnal .Tooltip,
-.-bg-darkpurple .Tooltip {
- background-color: #00e676;
- color: #000;
-}
-.-bg-cyan hr,
-.-bg-yellow hr,
-.-bg-cyan .-bl:before,
-.-bg-yellow .-bl:before,
-.-bg-cyan .Share a:after,
-.-bg-yellow .Share a:after,
-.-bg-cyan .Highlight-box:before,
-.-bg-yellow .Highlight-box:before,
-.-bg-cyan .Highlight-list:after,
-.-bg-yellow .Highlight-list:after,
-.-bg-cyan .Highlight-list li:after,
-.-bg-yellow .Highlight-list li:after,
-.-bg-cyan .row--separated > [class*="col-"]:before,
-.-bg-yellow .row--separated > [class*="col-"]:before {
- color: #000;
-}
-.-bg-whiteblue {
- background-color: #ebeeff !important;
-}
-.-bg-skyblue {
- background-color: #d5ebf6 !important;
-}
-.-bg-lightblue {
- background-color: #d8deff !important;
-}
-.-bg-brightblue {
- background-color: #2d45c8 !important;
-}
-.-bg-blackblue {
- background-color: #042733 !important;
-}
-.-bg-darkblue {
- background-color: #12356b !important;
-}
-.-bg-nocturnal {
- background-color: #053140 !important;
-}
-.-bg-darkpurple {
- background-color: #494275 !important;
-}
-.-bg-green {
- background-color: #00e676 !important;
-}
-.-bg-cyan {
- background-color: #5fcec4 !important;
-}
-.-bg-fog {
- background-color: #d1dfdf !important;
-}
-.-bg-yellow {
- background-color: #faae2a !important;
-}
-.-bg-lightgray {
- background-color: #f2f4fa !important;
-}
-.-bg-black {
- color: #fff;
-}
-a:not(.Btn):not(.Link) {
- color: #3d5afe;
-}
-a:not(.Btn):not(.Link):hover {
- color: #000;
-}
-
-#page-article h1 ~ p ~ h2,
-#page-article h2 ~ p ~ h2 {
- margin-top: 60px;
-}
-
-#page-article h1[id] > a:not(.Btn):not(.Link),
-#page-article h2[id] > a:not(.Btn):not(.Link),
-#page-article h3[id] > a:not(.Btn):not(.Link),
-#page-article h4[id] > a:not(.Btn):not(.Link) {
- color: #000;
-}
-#page-article h1[id] > a:not(.Btn):not(.Link):hover,
-#page-article h2[id] > a:not(.Btn):not(.Link):hover,
-#page-article h3[id] > a:not(.Btn):not(.Link):hover,
-#page-article h4[id] > a:not(.Btn):not(.Link):hover {
- color: #3d5afe;
-}
-
-.-c-white {
- color: #fff !important;
-}
-a.-c-white:not(.Btn):not(.Link):hover,
-a.-c-white:not(.Btn):not(.Link):active,
-a.-c-white:not(.Btn):not(.Link):focus {
- color: #b3b3b3 !important;
-}
-.-a-white :after,
-.-a-white:after,
-.-a-white :before,
-.-a-white li:before,
-.-a-white.-separated > *:before {
- color: #fff !important;
-}
-.-a-white[class*="row--separated"] [class*="-col-"]:before {
- background: #fff !important;
-}
-.-c-black {
- color: #000 !important;
-}
-a.-c-black:hover,
-a.-c-black:active,
-a.-c-black:focus {
- color: #000 !important;
+
+.footer__sitemap-container > .row {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
}
-.-a-black :after,
-.-a-black:after,
-.-a-black :before,
-.-a-black li:before,
-.-a-black.-separated > *:before {
- color: #000 !important;
+
+.footer__sitemap-container .footer__links {
+ align-items: flex-start;
+ flex-wrap: wrap;
}
-.-a-black[class*="row--separated"] [class*="-col-"]:before {
- background: #000 !important;
+
+.footer__links > div {
+ flex: 1;
}
-.-c-contrast {
- color: #000 !important;
+
+.footer__links h5 {
+ margin-bottom: 1.83em;
}
-a.-c-contrast:hover,
-a.-c-contrast:active,
-a.-c-contrast:focus {
- color: #000 !important;
+
+.footer__links ul {
+ list-style: none;
+ padding: 0;
+ font-size: 1.29em;
+ line-height: 1.9em;
+ margin-bottom: 2em;
}
-.-a-contrast :after,
-.-a-contrast:after,
-.-a-contrast :before,
-.-a-contrast li:before,
-.-a-contrast.-separated > *:before {
- color: #000 !important;
+
+.footer__contribute {
+ justify-content: center;
+ font-size: 1.14em;
+ position: relative;
+ padding: 1.38em 0;
}
-.-a-contrast[class*="row--separated"] [class*="-col-"]:before {
- background: #000 !important;
+
+.footer__contribute .ns-button {
+ font-size: .875em;
}
-.-c-gray {
- color: #455b66 !important;
-}
-a.-c-gray:hover,
-a.-c-gray:active,
-a.-c-gray:focus {
- color: #304047 !important;
-}
-.-a-gray :after,
-.-a-gray:after,
-.-a-gray :before,
-.-a-gray li:before,
-.-a-gray.-separated > *:before {
- color: #455b66 !important;
-}
-.-a-gray[class*="row--separated"] [class*="-col-"]:before {
- background: #455b66 !important;
-}
-.-c-purple {
- color: #72799c !important;
-}
-a.-c-purple:hover,
-a.-c-purple:active,
-a.-c-purple:focus {
- color: #4e536f !important;
-}
-.-a-purple :after,
-.-a-purple:after,
-.-a-purple :before,
-.-a-purple li:before,
-.-a-purple.-separated > *:before {
- color: #72799c !important;
-}
-.-a-purple[class*="row--separated"] [class*="-col-"]:before {
- background: #72799c !important;
-}
-.-c-lightblue {
- color: #d8deff !important;
-}
-a.-c-lightblue:hover,
-a.-c-lightblue:active,
-a.-c-lightblue:focus {
- color: #4b66ff !important;
-}
-.-a-lightblue :after,
-.-a-lightblue:after,
-.-a-lightblue :before,
-.-a-lightblue li:before,
-.-a-lightblue.-separated > *:before {
- color: #d8deff !important;
-}
-.-a-lightblue[class*="row--separated"] [class*="-col-"]:before {
- background: #d8deff !important;
-}
-.-c-whiteblue {
- color: #ebeeff !important;
-}
-a.-c-whiteblue:hover,
-a.-c-whiteblue:active,
-a.-c-whiteblue:focus {
- color: #5871ff !important;
-}
-.-a-whiteblue :after,
-.-a-whiteblue:after,
-.-a-whiteblue :before,
-.-a-whiteblue li:before,
-.-a-whiteblue.-separated > *:before {
- color: #ebeeff !important;
-}
-.-a-whiteblue[class*="row--separated"] [class*="-col-"]:before {
- background: #ebeeff !important;
-}
-.-c-skyblue {
- color: #d5ebf6 !important;
-}
-a.-c-skyblue:hover,
-a.-c-skyblue:active,
-a.-c-skyblue:focus {
- color: #64b5de !important;
-}
-.-a-skyblue :after,
-.-a-skyblue:after,
-.-a-skyblue :before,
-.-a-skyblue li:before,
-.-a-skyblue.-separated > *:before {
- color: #d5ebf6 !important;
-}
-.-a-skyblue[class*="row--separated"] [class*="-col-"]:before {
- background: #d5ebf6 !important;
-}
-.-c-blackblue {
- color: #042733 !important;
-}
-a.-c-blackblue:hover,
-a.-c-blackblue:active,
-a.-c-blackblue:focus {
- color: #031b24 !important;
-}
-.-a-blackblue :after,
-.-a-blackblue:after,
-.-a-blackblue :before,
-.-a-blackblue li:before,
-.-a-blackblue.-separated > *:before {
- color: #042733 !important;
-}
-.-a-blackblue[class*="row--separated"] [class*="-col-"]:before {
- background: #042733 !important;
-}
-.-c-brightblue {
- color: #3d5afe !important;
-}
-a.-c-brightblue:hover,
-a.-c-brightblue:active,
-a.-c-brightblue:focus {
- color: #0122db !important;
-}
-.-a-brightblue :after,
-.-a-brightblue:after,
-.-a-brightblue :before,
-.-a-brightblue li:before,
-.-a-brightblue.-separated > *:before {
- color: #3d5afe !important;
-}
-.-a-brightblue[class*="row--separated"] [class*="-col-"]:before {
- background: #3d5afe !important;
-}
-.-c-nocturnal {
- color: #053140 !important;
-}
-a.-c-nocturnal:hover,
-a.-c-nocturnal:active,
-a.-c-nocturnal:focus {
- color: #03222d !important;
-}
-.-a-nocturnal :after,
-.-a-nocturnal:after,
-.-a-nocturnal :before,
-.-a-nocturnal li:before,
-.-a-nocturnal.-separated > *:before {
- color: #053140 !important;
-}
-.-a-nocturnal[class*="row--separated"] [class*="-col-"]:before {
- background: #053140 !important;
-}
-.-c-blue {
- color: #74bce2 !important;
-}
-a.-c-blue:hover,
-a.-c-blue:active,
-a.-c-blue:focus {
- color: #2990c6 !important;
-}
-.-a-blue :after,
-.-a-blue:after,
-.-a-blue :before,
-.-a-blue li:before,
-.-a-blue.-separated > *:before {
- color: #74bce2 !important;
-}
-.-a-blue[class*="row--separated"] [class*="-col-"]:before {
- background: #74bce2 !important;
-}
-.-c-green {
- color: #00e676 !important;
-}
-a.-c-green:hover,
-a.-c-green:active,
-a.-c-green:focus {
- color: #00a153 !important;
-}
-.-a-green :after,
-.-a-green:after,
-.-a-green :before,
-.-a-green li:before,
-.-a-green.-separated > *:before {
- color: #00e676 !important;
-}
-.-a-green[class*="row--separated"] [class*="-col-"]:before {
- background: #00e676 !important;
-}
-.-c-green {
- color: #00e676 !important;
-}
-a.-c-green:hover,
-a.-c-green:active,
-a.-c-green:focus {
- color: #00a153 !important;
-}
-.-a-green :after,
-.-a-green:after,
-.-a-green :before,
-.-a-green li:before,
-.-a-green.-separated > *:before {
- color: #00e676 !important;
-}
-.-a-green[class*="row--separated"] [class*="-col-"]:before {
- background: #00e676 !important;
-}
-.-c-success {
- color: #17ba60 !important;
-}
-a.-c-success:hover,
-a.-c-success:active,
-a.-c-success:focus {
- color: #108243 !important;
-}
-.-a-success :after,
-.-a-success:after,
-.-a-success :before,
-.-a-success li:before,
-.-a-success.-separated > *:before {
- color: #17ba60 !important;
-}
-.-a-success[class*="row--separated"] [class*="-col-"]:before {
- background: #17ba60 !important;
-}
-.-c-lightred {
- color: #ff7190 !important;
-}
-a.-c-lightred:hover,
-a.-c-lightred:active,
-a.-c-lightred:focus {
- color: #ff033a !important;
-}
-.-a-lightred :after,
-.-a-lightred:after,
-.-a-lightred :before,
-.-a-lightred li:before,
-.-a-lightred.-separated > *:before {
- color: #ff7190 !important;
-}
-.-a-lightred[class*="row--separated"] [class*="-col-"]:before {
- background: #ff7190 !important;
-}
-.-c-red {
- color: #ea3e55 !important;
-}
-a.-c-red:hover,
-a.-c-red:active,
-a.-c-red:focus {
- color: #bb142b !important;
-}
-.-a-red :after,
-.-a-red:after,
-.-a-red :before,
-.-a-red li:before,
-.-a-red.-separated > *:before {
- color: #ea3e55 !important;
-}
-.-a-red[class*="row--separated"] [class*="-col-"]:before {
- background: #ea3e55 !important;
-}
-.-c-orange {
- color: #fc7121 !important;
-}
-a.-c-orange:hover,
-a.-c-orange:active,
-a.-c-orange:focus {
- color: #c54a03 !important;
-}
-.-a-orange :after,
-.-a-orange:after,
-.-a-orange :before,
-.-a-orange li:before,
-.-a-orange.-separated > *:before {
- color: #fc7121 !important;
-}
-.-a-orange[class*="row--separated"] [class*="-col-"]:before {
- background: #fc7121 !important;
-}
-.-c-yellow {
- color: #fbb040 !important;
-}
-a.-c-yellow:hover,
-a.-c-yellow:active,
-a.-c-yellow:focus {
- color: #d88305 !important;
-}
-.-a-yellow :after,
-.-a-yellow:after,
-.-a-yellow :before,
-.-a-yellow li:before,
-.-a-yellow.-separated > *:before {
- color: #fbb040 !important;
-}
-.-a-yellow[class*="row--separated"] [class*="-col-"]:before {
- background: #fbb040 !important;
-}
-.-ao-0 :after,
-.-ao-0:after,
-.-ao-0 :before,
-.-ao-0:before {
- opacity: 0 !important;
-}
-.-ao-10 :after,
-.-ao-10:after,
-.-ao-10 :before,
-.-ao-10:before {
- opacity: 0.1 !important;
-}
-.-ao-20 :after,
-.-ao-20:after,
-.-ao-20 :before,
-.-ao-20:before {
- opacity: 0.2 !important;
-}
-.-ao-30 :after,
-.-ao-30:after,
-.-ao-30 :before,
-.-ao-30:before {
- opacity: 0.3 !important;
-}
-.-ao-40 :after,
-.-ao-40:after,
-.-ao-40 :before,
-.-ao-40:before {
- opacity: 0.4 !important;
-}
-.-ao-50 :after,
-.-ao-50:after,
-.-ao-50 :before,
-.-ao-50:before {
- opacity: 0.5 !important;
-}
-.-ao-60 :after,
-.-ao-60:after,
-.-ao-60 :before,
-.-ao-60:before {
- opacity: 0.6 !important;
-}
-.-ao-70 :after,
-.-ao-70:after,
-.-ao-70 :before,
-.-ao-70:before {
- opacity: 0.7 !important;
-}
-.-ao-80 :after,
-.-ao-80:after,
-.-ao-80 :before,
-.-ao-80:before {
- opacity: 0.8 !important;
-}
-.-ao-90 :after,
-.-ao-90:after,
-.-ao-90 :before,
-.-ao-90:before {
- opacity: 0.9 !important;
-}
-.-ao-100 :after,
-.-ao-100:after,
-.-ao-100 :before,
-.-ao-100:before {
- opacity: 1 !important;
+
+.footer__contribute > * {
+ margin: 0 .67em 0 0;
}
-@font-face {
- font-family: "nativescript-icon-font";
- src: url("//d3hl5b0imnz9aa.cloudfront.net/cache/72ce4130f4943a6ffc08ca453b1724f8097f8dd3/iconfont/nativescript-icon-font-8f9c167f6a.eot");
- src: url("//d3hl5b0imnz9aa.cloudfront.net/cache/72ce4130f4943a6ffc08ca453b1724f8097f8dd3/iconfont/nativescript-icon-font-8f9c167f6a.eot?#iefix") format("eot"), url("//d3hl5b0imnz9aa.cloudfront.net/cache/72ce4130f4943a6ffc08ca453b1724f8097f8dd3/iconfont/nativescript-icon-font-8f9c167f6a.woff2") format("woff2"), url("//d3hl5b0imnz9aa.cloudfront.net/cache/72ce4130f4943a6ffc08ca453b1724f8097f8dd3/iconfont/nativescript-icon-font-8f9c167f6a.woff") format("woff"), url("/iconfont/nativescript-icon-font-8f9c167f6a.ttf") format("truetype"), url("//d3hl5b0imnz9aa.cloudfront.net/cache/72ce4130f4943a6ffc08ca453b1724f8097f8dd3/iconfont/nativescript-icon-font-8f9c167f6a.svg#nativescript-icon-font") format("svg");
- font-weight: normal;
- font-style: normal;
-}
-[class*="-i-"]:before {
- font-family: "nativescript-icon-font";
- vertical-align: middle;
- font-weight: normal;
- font-style: normal;
- speak: none;
- text-decoration: inherit;
- text-transform: none;
- text-rendering: geometricPrecision;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-.-i-android:before {
- content: "\b1";
-}
-.-i-circle:before,
-.-i-decor:after,
-[class*="Box"][class*="-i-"]:after,
-.Box--error:after,
-.Box--warning:after,
-.Box--success:after,
-.Box--info:after {
- content: "\b2";
-}
-.-i-clock:before {
- content: "\b3";
-}
-.-i-comments:before {
- content: "\b4";
-}
-.-i-error:before,
-.Box--error:before {
- content: "\b5";
-}
-.-i-external:before,
-.-mark-external a[href*="//"]:not([href*="nativescript.org"]):after {
- content: "\b6";
-}
-.-i-facebook:before {
- content: "\b7";
-}
-.-i-github:before {
- content: "\b8";
-}
-.-i-google:before {
- content: "\b9";
-}
-.-i-info:before,
-.Box--info:before {
- content: "\ba";
-}
-.-i-ios:before {
- content: "\bb";
-}
-.-i-linkedin:before {
- content: "\bc";
-}
-.-i-mail:before {
- content: "\bd";
-}
-.-i-pdf:before {
- content: "\be";
-}
-.-i-rss:before {
- content: "\bf";
-}
-.-i-search:before {
- content: "\c0";
-}
-.-i-success:before,
-.Box--success:before {
- content: "\c1";
-}
-.-i-twitter:before {
- content: "\c2";
-}
-.-i-warning:before,
-.Box--warning:before {
- content: "\c3";
-}
-.-i-decor:after,
-[class*="Box"][class*="-i-"]:after,
-.Box--error:after,
-.Box--warning:after,
-.Box--success:after,
-.Box--info:after {
- font-family: "nativescript-icon-font";
-}
-[class*="-i-"][class*="-i-decor"]:before {
- -webkit-transform: scale(0.33);
- transform: scale(0.33);
- -webkit-transform-origin: 50% 50%;
- transform-origin: 50% 50%;
-}
-.-mark-external a[href*="//"]:not([href*="nativescript.org"]):after {
- font-family: "nativescript-icon-font";
- vertical-align: super;
- font-size: 50%;
- padding-left: 0.7em;
- color: inherit !important;
-}
-span[class*=-i-]:empty:before {
- position: relative;
- bottom: 0.1em;
- font-size: 0.7em;
-}
-.Btn {
- position: relative;
- background-color: #3d5afe;
- color: #fff;
- border: 0;
- display: inline-block;
- max-width: 100%;
- padding: 0.62em 1em;
- text-align: center;
- -webkit-transition: background 0.2s, color 0.2s;
- transition: background 0.2s, color 0.2s;
- font-size: 20px !important;
- font-weight: 500;
- font-family: Geomanist, sans-serif;
- line-height: 1.25;
-}
-.Btn:hover,
-.Btn:focus,
-.Btn:active {
- color: #fff;
- background-color: #000;
-}
-.Btn:before {
- display: inline-block;
- content: "\a0";
- height: 100%;
- width: 0;
- vertical-align: text-bottom;
-}
-.Btn[class*="col-"] {
- padding-left: 0;
- padding-right: 0;
-}
-.Btn.-db {
- width: 100%;
-}
-.Btn--prim {
- background: #00e676;
- color: #000;
-}
-.Btn--prim:hover,
-.Btn--prim:focus,
-.Btn--prim:active {
- background-color: #000;
- color: #fff;
-}
-.Btn--ghost {
- color: #3d5afe;
- background: none;
-}
-.Btn--ghost:hover {
- color: #3d5afe;
- background: none;
-}
-.Btn--ghost:after {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 2px;
- border-style: solid;
- border-color: #00e676;
- -webkit-transition: 0.2s ease;
- transition: 0.2s ease;
-}
-.Btn--ghost:hover:after {
- border-color: #000;
-}
-
-a.Btn:nth-child(1):nth-last-child(2) {
- margin-right: 40px;
+
+.footer__contribute.row {
+ justify-content: center;
}
-@media only screen and (max-width: 480px) {
- a.Btn:nth-child(1):nth-last-child(2) {
- margin-right: 0;
- }
+.footer__contribute .ns-button {
+ background: transparent;
}
-a.Btn:nth-child(1):nth-last-child(2),
-a.Btn:nth-child(2):nth-last-child(1) {
- width: 100%;
- max-width: 400px;
+.footer__contribute:before {
+ height: 100%;
+ background: var(--background-purple);
}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-lightgray):not(.-bg-whiteblue) .Btn--ghost {
- color: #00e676;
+.footer__last-row {
+ height: 4.29em;
+ margin-top: 2.14em;
}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-lightgray):not(.-bg-whiteblue) .Btn--ghost:after {
- border-color: #3d5afe;
+
+.footer__last-row > .navigation__logo {
+ height: 1.5em;
+ width: 14em;
+ margin-left: -1em;
+ filter: brightness(60%);
+ background-position-x: .71em;
+ background-image: url("//d2odgkulk9w7if.cloudfront.net/images/default-source/logos/nativescript-logo-monochrome.png?sfvrsn=14");
}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-lightgray):not(.-bg-whiteblue) .Btn--ghost:hover {
- color: #00e676;
+
+.footer__last-row > *:last-child {
+ flex: 1;
+ min-width: 0;
}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-lightgray):not(.-bg-whiteblue) .Btn--ghost:hover:after {
- border-color: #fff;
+
+.footer__copyright {
+ text-align: right;
+ color: var(--transparent-dark-50);
}
-input[type=text],
-select,
-textarea {
- width: 100%;
- height: 2em;
- margin-bottom: 0.5em;
- border: 1px solid #d8deff;
- padding: .5em .5em 0;
- font-family: Geomanist, sans-serif;
- outline: none;
- background-color: #f9fafd;
-}
-input[type=text]:disabled,
-select:disabled,
-textarea:disabled {
- color: #cbd1d8;
-}
-input[type=text]:hover,
-select:hover,
-textarea:hover,
-input[type=text]:focus,
-select:focus,
-textarea:focus,
-input[type=text]:active,
-select:active,
-textarea:active {
- border: 1px solid #7e8de1;
-}
-option {
- font-size: 0.8em;
- color: #455b66;
+
+.footer__copyright a {
+ color: inherit;
}
-textarea {
- min-height: 4em;
- resize: none;
-}
-textarea + div.char-count {
- display: block;
- width: 100%;
- background-color: #f2f4fa;
- text-align: right;
- font-size: 0.7em;
- color: #72799c;
- border: 1px solid #d8deff;
- border-top: 0;
- padding: 0 0.5em;
- margin: -0.7em 0 0.5em 0;
-}
-input[type="radio"],
-input[type="checkbox"] {
- font-size: 0.8em;
- vertical-align: middle;
-}
-input[type="radio"]:checked + label,
-input[type="checkbox"]:checked + label {
- color: #000;
-}
-input[type="radio"]:disabled + label,
-input[type="checkbox"]:disabled + label {
- color: #97a3b1;
-}
-input[type="radio"]:disabled + label:hover,
-input[type="checkbox"]:disabled + label:hover {
- color: #97a3b1;
-}
-input[type="radio"] + label,
-input[type="checkbox"] + label {
- font-family: Geomanist, sans-serif;
- margin-left: 0.8em;
-}
-input[type="radio"] + label:hover,
-input[type="checkbox"] + label:hover {
- color: #000;
-}
-label + input[type="radio"],
-label + input[type="checkbox"] {
- margin-left: 20px;
-}
-input[type="submit"],
-button {
- width: 100%;
- padding: 16px;
- margin-top: 0.75em;
- color: #fff;
- font-family: Geomanist, sans-serif;
- background-color: #3d5afe;
- -webkit-transition: background-color 0.2s ease;
- transition: background-color 0.2s ease;
-}
-input[type="submit"]:hover,
-button:hover {
- background-color: #000;
-}
-::-webkit-input-placeholder {
- color: #97a3b1;
- font-weight: 100;
-}
-::-moz-placeholder {
- color: #97a3b1;
- font-weight: 100;
-}
-:-ms-input-placeholder {
- color: #97a3b1;
- font-weight: 100;
-}
-::placeholder {
- color: #97a3b1;
- font-weight: 100;
-}
-label,
-.label {
- display: inline-block;
- font-size: 0.8em;
- color: #72799c;
-}
-.FormError em {
- color: #fb2540;
- font-style: normal;
-}
-.FormError input,
-.FormError select {
- border: 1px solid #f00;
-}
-.FormNote {
- font-size: 0.7em;
- font-family: Geomanist, sans-serif;
- color: #97a3b1;
- display: block;
- padding-top: 0.35em;
-}
-.Tooltip {
- position: relative;
- display: inline-block;
- width: 11px;
- height: 11px;
- margin-top: -2px;
- margin-left: 0;
- border-radius: 50%;
- font-size: 0.563em;
- font-family: Geomanist, sans-serif;
- line-height: 1.3;
- text-align: center;
- vertical-align: middle;
- background-color: #3d5afe;
- color: #fff;
- cursor: help;
-}
-.Tooltip .Tooltip-info {
- position: absolute;
- top: -30px;
- left: 24px;
- z-index: 99999;
- width: 240px;
- padding: 15px 15px 15px 20px;
- font-size: 1.556em;
- font-weight: 400;
- text-align: left;
- color: #fff;
- background-color: #042733;
- opacity: 0;
- visibility: hidden;
- cursor: text;
- -webkit-transform: translateX(30px);
- transform: translateX(30px);
- -webkit-transition: all 0.3s 0s ease;
- transition: all 0.3s 0s ease;
-}
-.Tooltip .Tooltip-info:after {
- content: "";
- position: absolute;
- top: 30px;
- left: 0;
- width: 0;
- height: 0;
- margin-left: -14px;
- border: 7px solid transparent;
- border-right-color: #042733;
-}
-.Tooltip:hover .Tooltip-info {
- opacity: 1;
- visibility: visible;
- -webkit-transition-delay: 0s;
- transition-delay: 0s;
- -webkit-transform: translateX(0);
- transform: translateX(0);
-}
-.Box {
- background-color: #8291a1;
- padding: 25px 30px;
- color: #fff;
- font-size: 0.9em;
- font-family: Geomanist, sans-serif;
- position: relative;
-}
-.Box:before {
- position: absolute;
- left: 22px;
- top: 23px;
- z-index: 1;
- font-size: 36px;
- text-align: center;
- -webkit-transform: scale(0.33);
- transform: scale(0.33);
- -webkit-transform-origin: 50% 50%;
- transform-origin: 50% 50%;
- font-family: "nativescript-icon-font";
-}
-.Box:after {
- position: absolute;
- left: 22px;
- top: 23px;
- z-index: 0;
- font-size: 36px;
- text-align: center;
-}
-[class*="Box"][class*="-i-"] {
- padding-left: 80px;
-}
-.Box--error {
- background-color: #ea3e55;
- padding-left: 80px;
-}
-.Box--warning {
- background-color: #faae2a;
- padding-left: 80px;
-}
-.Box--success {
- background-color: #3bca7b;
- padding-left: 80px;
-}
-.Box--info {
- background-color: #6ea0e5;
- padding-left: 80px;
-}
-.Embed {
- position: relative;
- width: 100%;
- height: 0;
- padding-bottom: 100%;
-}
-.Embed.Embed--21by9 {
- padding-bottom: 42.857142857142854%;
-}
-.Embed.Embed--16by9 {
- padding-bottom: 56.25%;
-}
-.Embed.Embed--16by10 {
- padding-bottom: 62.5%;
-}
-.Embed.Embed--4by3 {
- padding-bottom: 75%;
-}
-.Embed.Embed--5by4 {
- padding-bottom: 80%;
-}
-.Embed iframe,
-.Embed object,
-.Embed embed,
-.Embed video {
- position: absolute;
- left: 0;
- right: 0;
- width: 100% !important;
- height: 100% !important;
-}
-.Section {
- padding-top: 100px;
- padding-bottom: 100px;
- margin-left: auto;
- margin-right: auto;
-}
-.Pagination {
- position: relative;
- font-size: 16px;
- font-weight: 500;
- text-align: center;
- padding-top: 60px;
- padding-right: 60px;
- color: #3d5afe;
-}
-.Pagination a {
- display: inline-block;
- text-align: center;
- color: inherit;
- padding: 5px 10px;
- text-decoration: none;
- font-family: Geomanist, sans-serif;
-}
-.Pagination a:hover,
-.Pagination .sf_PagerCurrent {
- color: #000 !important;
- background-color: #f2f4fa;
-}
-.Pagination .sf_PagerPrev,
-.Pagination .sf_PagerNext {
- position: absolute;
- top: 60px;
- right: 0;
- margin-bottom: 6px;
-}
-.Pagination .sf_PagerPrev:not([href]),
-.Pagination .sf_PagerNext:not([href]) {
- color: #a2a2a4 !important;
- cursor: default;
- pointer-events: none;
-}
-.Pagination .sf_PagerNext {
- padding-right: 0;
-}
-.Pagination .sf_PagerNext:after {
- content: " >";
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
-}
-.Pagination .sf_PagerPrev {
- position: relative;
- float: left;
- padding-left: 0;
- top: auto !important;
-}
-.Pagination .sf_PagerPrev:before {
- content: "< ";
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
-}
-.Pagination .sf_pagerNumeric {
- display: inline-block;
-}
-.List0,
-.ac_results ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-.List0 li,
-.ac_results ul li {
- padding-left: 0;
- margin-bottom: 0;
-}
-.List0 li:before,
-.ac_results ul li:before {
- display: none;
-}
-ul {
- padding-left: 20px;
- list-style: none;
-}
-ul li {
- position: relative;
- margin-bottom: 0.85em;
-}
-ul li:before {
- content: "•";
- position: absolute;
- left: -20px;
- color: #00e676;
-}
-.List {
- counter-reset: section;
-}
-.List ol,
-ol.List {
- list-style-type: none;
- margin: 0;
- padding: 0;
- counter-reset: section;
-}
-.List ol li,
-ol.List li,
-.List .List-item {
- position: relative;
- padding-left: 50px;
- margin-bottom: 20px;
-}
-.List ol li:before,
-ol.List li:before,
-.List .List-item:before {
- position: absolute;
- display: inline-block;
- counter-increment: section;
- content: counter(section);
- font-size: 60px;
- font-family: Geomanist, sans-serif;
- font-weight: 400;
- top: 0;
- left: 0;
- line-height: 0.9;
-}
-.HighlightBox {
- position: relative;
-}
-.HighlightBox * {
- position: relative;
-}
-.HighlightBox:before {
- content: "";
- display: block;
- position: absolute;
- color: #3d5afe;
- border: 1px solid;
- opacity: 0.2;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- -webkit-transition: all 0.2s ease;
- transition: all 0.2s ease;
-}
-.HighlightList {
- position: relative;
-}
-.HighlightList:after {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 1px;
- color: #3d5afe;
- opacity: 0.2;
- background: currentColor;
-}
-.HighlightList > li,
-.HighlightList > div:not(.sf_colsIn),
-.HighlightList > div.sf_colsIn > div {
- position: relative;
-}
-.HighlightList > li:after,
-.HighlightList > div:not(.sf_colsIn):after,
-.HighlightList > div.sf_colsIn > div:after {
- content: "";
- display: block;
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- height: 1px;
- color: #3d5afe;
- background: currentColor;
- opacity: 0.2;
-}
-.HighlightList > li > a,
-.HighlightList > div:not(.sf_colsIn) > a,
-.HighlightList > div.sf_colsIn > div > a {
- display: block;
- padding: 10px 0;
-}
-.Hover {
- position: relative;
-}
-.Hover * {
- position: relative;
- z-index: 2;
-}
-.Hover:after {
- content: "";
- display: block;
- position: absolute;
- -webkit-transition: all 0.2s ease;
- transition: all 0.2s ease;
- z-index: 1;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- opacity: 0 !important;
-}
-.Hover > a {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 2;
-}
-.Hover:hover {
- color: #fff;
-}
-.Hover:hover a {
- color: #fff;
-}
-.Hover:hover:after {
- background-color: #042733;
- opacity: 1 !important;
-}
-.Hover:hover .-c-gray {
- color: #d8deff !important;
-}
-.Hover:hover .-c-purple {
- color: #d8deff !important;
-}
-.Hover:hover .-c-brightblue {
- color: #00e676 !important;
-}
-.Hover:hover .-c-nocturnal,
-.Hover:hover .-c-contrast {
- color: #fff !important;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover {
- color: #000;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover a {
- color: #3d5afe;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover:after {
- background-color: #fff;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover .-c-contrast {
- color: #000 !important;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover .-c-purple {
- color: #455b66 !important;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover .-c-brightblue {
- color: #2d45c8 !important;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover .-c-lightblue {
- color: #455b66 !important;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover .-c-gray {
- color: #455b66 !important;
-}
-[class*="-bg-"]:not(.-bg-lightblue):not(.-bg-whiteblue):not(.-bg-skyblue):not(.-bg-cyan):not(.-bg-lightgray) .Hover:hover:hover .-c-green {
- color: #3d5afe !important;
-}
-.Hover--expand:hover:after {
- top: -21px;
- left: -21px;
- right: -21px;
- bottom: -21px;
- opacity: 1 !important;
-}
-.Nav {
- position: relative;
- top: 0;
- z-index: 3;
- width: 100%;
- height: 48px;
- font-size: 0;
- background-color: #042733;
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
- border-bottom: 1px solid #000;
-}
-.Nav button {
- margin-top: 0;
-}
-.Nav-logo,
-.Nav-right,
-.Nav-menu,
-.Nav-cta {
- display: inline-block;
-}
-.Nav-logo {
- width: 13%;
- vertical-align: top;
-}
-.Nav-logo a {
- display: inline-block;
- padding-top: 10px;
-}
-.Nav-logo a:hover img,
-.Nav-logo a:focus img {
- opacity: 0.8;
-}
-.Nav-logo a img {
- width: 149px;
- height: auto;
-}
-.Nav-open-menu {
- display: none;
- color: #00e676;
- background-color: rgba(0,0,0,0);
- padding: 0;
- margin-right: 20px;
- margin-left: -40px;
- width: 84px;
- text-align: center;
- height: 48px;
- line-height: 1;
-}
-.Nav-open-menu:before {
- display: block;
- content: "\2630";
- font-size: 26px;
- padding-top: 9px;
- padding-bottom: 7px;
-}
-.Nav-open-menu:focus {
- outline: none;
-}
-.Nav-open-menu:active,
-.Nav-open-menu.is-active {
- color: #fff;
- background-color: #3d5afe;
-}
-.Nav-open-menu:active:before,
-.Nav-open-menu.is-active:before {
- content: "\00D7";
- font-size: 32px;
- padding-top: 2px;
- padding-bottom: 5px;
-}
-.Nav-right {
- width: 87%;
- text-align: right;
-}
-.Nav-menu {
- position: relative;
- width: auto;
-}
-.Nav-menu ul {
- margin: 0;
- padding: 0;
- font-size: 0;
- text-align: right;
- display: inline-block;
- vertical-align: top;
- z-index: 2;
-}
-.Nav-menu li {
- display: inline-block;
- vertical-align: top;
-}
-.Nav-menu li:before {
- content: none;
-}
-.Nav-menu li .-i-github:before,
-.Nav-menu li .-i-search:before {
- line-height: 0.9;
-}
-.Nav-menu .Search-open {
- border-right: 1px solid #000;
- margin-right: 0 !important;
- height: 48px;
-}
-.Nav-menu > div > ul a,
-.Nav-menu button {
- display: block;
- border: 1px solid #000;
- margin-right: -1px;
- padding: 11px 30px 12px;
- font-size: 16px;
- color: #fff !important;
- background-color: #042733;
- -webkit-transition: none;
- transition: none;
-}
-.Nav-menu > div > ul a:hover,
-.Nav-menu button:hover,
-.Nav-menu > div > ul a.is-active,
-.Nav-menu button.is-active {
- color: #3d5afe !important;
- background-color: #fff;
- border-top-color: #fff;
- border-right-color: #fff;
- border-bottom-color: #fff;
-}
-.Nav-menu > div > ul a:focus,
-.Nav-menu button:focus {
- outline: none;
-}
-.Nav-menu > div > ul a.is-current,
-.Nav-menu button.is-current {
- background: #000;
- border-color: #000;
- color: #fff;
- pointer-events: none;
-}
-.Nav-cta {
- margin-left: 30px;
- vertical-align: top;
- margin-top: 4px;
-}
-.Nav-cta .Btn {
- width: 180px;
- padding-top: 0.43em;
- padding-bottom: 0.43em;
- font-size: 18px !important;
-}
-.NavAlt {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- padding: 15px 0;
-}
-.NavAlt svg {
- width: 35px;
-}
-.NavAlt .ns-logo {
- fill: #fff;
-}
-.NavAlt a:first-child {
- -webkit-transition: opacity 0.2s ease;
- transition: opacity 0.2s ease;
-}
-.NavAlt.is-fixed {
- position: fixed;
- z-index: 20;
-}
-.NavAlt.-separated > * + * {
- margin-left: 3.2em;
-}
-.NavAlt.-separated > * + :before {
- left: -1.9em;
-}
-.Search-container {
- display: none;
- position: absolute;
- top: 0;
- right: 0;
- width: 100%;
- height: 48px;
- background-color: #f2f4fa;
- z-index: 2;
-}
-.Search-container input[type="text"],
-.Search-container .Btn--cancel,
-.Search-container td.gsc-search-button {
- border: 0;
- background-color: rgba(0,0,0,0);
- display: inline-block;
-}
-.Search-container input[type="text"]:focus,
-.Search-container .Btn--cancel:focus,
-.Search-container td.gsc-search-button:focus {
- outline: 0;
- box-shadow: none;
-}
-.Search-container input[type="text"] {
- width: 100%;
- margin: 0;
- height: 48px;
- padding: 9px 28px 10px;
- font-size: 20px;
-}
-.Search-container .Btn--cancel,
-.Search-container td.gsc-search-button {
- position: absolute;
- top: 0;
-}
-.Search-container td.gsc-search-button {
- right: 1px;
- color: #3e5bfe !important;
- border: 1px solid transparent;
- border-left: 1px solid #d8deff;
- height: 48px;
- width: 76px;
-}
-.Search-container .Btn--cancel {
- width: auto;
- right: 76px;
- font-size: 30px;
- line-height: 1.8;
- padding: 0 14px;
- color: #d4daef !important;
- height: 100%;
-}
-.Search-container .Btn--cancel:hover,
-.Search-container .Btn--cancel:focus,
-.Search-container .Btn--cancel:active {
- background: transparent;
-}
-.Search-container .Btn--cancel:before {
- display: inline-block;
- content: "\a0";
- width: 0;
- height: 100%;
- vertical-align: middle;
-}
-.ModalInit {
- display: block;
-}
-.ModalInit .ModalInit-icon {
- display: block;
- width: 122px;
- height: 122px;
- overflow: hidden;
- border-radius: 20px;
-}
-.ModalInit .ModalInit-thumb {
- display: block;
- height: 200px;
- overflow: hidden;
-}
-.ModalView {
- position: fixed;
- top: 0;
- right: 0;
- bottom: -60px;
- left: 0;
- z-index: 10;
- padding-top: 80px;
- background-color: #f2f4fa;
- opacity: 0;
- -webkit-transition: opacity 200ms linear;
- transition: opacity 200ms linear;
- pointer-events: none;
-}
-.ModalView.is-opened {
- opacity: 1;
- pointer-events: all;
-}
-.ModalView .Btn--ghost {
- color: #3d5afe !important;
-}
-.ModalView .Btn--ghost:after {
- border-color: #00e676 !important;
-}
-.ModalView .Btn--ghost:hover:after {
- border-color: #000 !important;
-}
-.ModalClose {
- display: block;
- position: absolute;
- top: 40px;
- right: 40px;
- font-size: 40px;
- color: #3d5afe !important;
- font-weight: 300;
- font-family: Geomanist, sans-serif;
-}
-.ImagesSlider {
- position: relative;
- max-width: 420px;
- margin: 0 auto;
- overflow: visible;
- text-align: center;
-}
-.ImagesSlider ul {
- list-style-type: none;
- padding: 0;
- margin: 0;
-}
-.ImagesSlider li {
- position: absolute;
- display: inline-block;
- width: 100%;
- opacity: 0;
- -webkit-transform: scale(0.5);
- transform: scale(0.5);
- left: 0;
- top: 0;
- -webkit-transform-style: preserve-3d;
- -webkit-transition: 0.5s transform ease-in-out, 0.5s left ease-in-out, 0.5s opacity ease-in-out;
- -webkit-transition: 0.5s left ease-in-out, 0.5s opacity ease-in-out, 0.5s -webkit-transform ease-in-out;
- transition: 0.5s left ease-in-out, 0.5s opacity ease-in-out, 0.5s -webkit-transform ease-in-out;
- transition: 0.5s transform ease-in-out, 0.5s left ease-in-out, 0.5s opacity ease-in-out;
- transition: 0.5s transform ease-in-out, 0.5s left ease-in-out, 0.5s opacity ease-in-out, 0.5s -webkit-transform ease-in-out;
-}
-.ImagesSlider li:before {
- content: '';
-}
-.ImagesSlider li.prev-active,
-.ImagesSlider li.next-active {
- top: 0;
- -webkit-transform: scale(0.85);
- transform: scale(0.85);
- opacity: 0.1;
-}
-.ImagesSlider li.active {
- position: relative;
- -webkit-transform: scale(1);
- transform: scale(1);
- z-index: 1;
- opacity: 1;
- left: 0;
-}
-.ImagesSlider li.prev-active {
- left: -25%;
-}
-.ImagesSlider li.next-active {
- left: 25%;
-}
-.ImagesSlider .sfTxtContent {
- display: none;
-}
-.SliderControls {
- display: none;
-}
-.SliderControls a {
- position: absolute;
- width: 40px;
- top: 0;
- bottom: 0;
-}
-.SliderControls a span {
- font-size: 60px;
- color: #3d5afe;
- top: 40%;
- position: absolute;
-}
-.SliderControls a:hover path {
- opacity: 1;
-}
-.SliderControls .next {
- left: 100%;
-}
-.SliderControls .next span {
- left: 0;
-}
-.SliderControls .prev {
- right: 100%;
-}
-.SliderControls .prev span {
- right: 0;
-}
-.ac_results {
- background: #f9fafd;
- margin-left: 1px;
- margin-top: 0;
- font-family: Geomanist, sans-serif;
-}
-.ac_results li {
- padding: 5px 20px !important;
-}
-.ac_results li.ac_over {
- background: #ececec;
- cursor: pointer;
-}
-.Share {
- display: inline-block;
- color: #000;
- padding-bottom: 1px;
- padding-right: 1px;
- font-size: 0;
-}
-.Share:after {
- content: "";
- display: inline-block;
- width: 100%;
-}
-.Share a {
- position: relative;
- float: left;
- width: 2.1em;
- height: 2.1em;
- line-height: 2em;
- text-align: center;
- -webkit-transition: all ease 0.2s;
- transition: all ease 0.2s;
- font-size: 24px;
-}
-.Share a + a:after {
- border-left: 0;
-}
-.Share a:after {
- content: "";
- position: absolute;
- display: block;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- color: #3d5afe;
- border: 1px solid;
- opacity: 0.2;
-}
-.Share a:hover {
- background: #3d5afe;
- color: #fff !important;
-}
-@media only screen and (max-width: 1360px){
- html,
- body{
- background: #fff;
- }
- .-fs14{
- font-size: 14px !important;
- }
- .-fs16,
- h6,
- .h6{
- font-size: 14px !important;
- }
- .-fs18{
- font-size: 18px !important;
- }
- .-fs20,
- h5,
- .h5{
- font-size: 18px !important;
- }
- .-fs24,
- h4,
- .h4{
- font-size: 22px !important;
- }
- .-fs32,
- h3,
- .h3{
- font-size: 26px !important;
- }
- .-fs38{
- font-size: 30px !important;
- }
- .-fs46,
- h2,
- .h2{
- font-size: 36px !important;
- }
- .-fs60,
- h1,
- .h1{
- font-size: 44px !important;
- }
- .-fs90{
- font-size: 60px !important;
- }
- .-xl-oh{
- overflow: hidden !important;
- }
- .-xl-ov{
- overflow: visible !important;
- }
- .-xl-pr{
- position: relative !important;
- }
- .-xl-ps{
- position: static !important;
- }
- .-xl-fl{
- float: left !important;
- }
- .-xl-fr{
- float: right !important;
- }
- .-xl-fn{
- float: none !important;
- }
- .-xl-vam{
- vertical-align: middle !important;
- }
- .-xl-vat{
- vertical-align: top !important;
- }
- .-xl-wa{
- width: auto !important;
- }
- .-xl-db{
- display: block !important;
- }
- .-xl-dib{
- display: inline-block !important;
- }
- .-xl-dn{
- display: none !important;
- }
- .-xl-tal{
- text-align: left !important;
- }
- .-xl-tac{
- text-align: center !important;
- }
- .-xl-tar{
- text-align: right !important;
- }
- .-xl-no-pseudo:before,
- .-xl-no-pseudo:after{
- display: none !important;
- }
- .-xl-no-pseudo-first > :first-child:before,
- .-xl-no-pseudo-first > :first-child:after{
- display: none !important;
- }
- .-xl-no-pseudo-last > :last-child:before,
- .-xl-no-pseudo-last > :last-child:after{
- display: none !important;
- }
- .-xl-hyphenate,
- .-xl-hyphenate-links a{
- overflow-wrap: break-word;
- word-wrap: break-word;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- }
- .-xl-oya{
- overflow-y: auto;
- }
- .-p4{
- padding: 30px !important;
- }
- .-p5{
- padding: 40px !important;
- }
- .-pt4{
- padding-top: 30px !important;
- }
- .-pt5{
- padding-top: 40px !important;
- }
- .-pt6{
- padding-top: 40px !important;
- }
- .-pt7{
- padding-top: 50px !important;
- }
- .-pt8{
- padding-top: 70px !important;
- }
- .-pt9{
- padding-top: 70px !important;
- }
- .-pt10{
- padding-top: 80px !important;
- }
- .-pb4{
- padding-bottom: 30px !important;
- }
- .-pb5{
- padding-bottom: 40px !important;
- }
- .-pb6{
- padding-bottom: 40px !important;
- }
- .-pb7{
- padding-bottom: 50px !important;
- }
- .-pb8{
- padding-bottom: 70px !important;
- }
- .-pb9{
- padding-bottom: 70px !important;
- }
- .-pb10{
- padding-bottom: 80px !important;
- }
- .-pl4{
- padding-left: 30px !important;
- }
- .-pl5{
- padding-left: 40px !important;
- }
- .-pl6{
- padding-left: 40px !important;
- }
- .-pl7{
- padding-left: 50px !important;
- }
- .-pl8{
- padding-left: 70px !important;
- }
- .-pl9{
- padding-left: 70px !important;
- }
- .-pl10{
- padding-left: 80px !important;
- }
- .-pr4{
- padding-right: 30px !important;
- }
- .-pr5{
- padding-right: 40px !important;
- }
- .-pr6{
- padding-right: 40px !important;
- }
- .-pr7{
- padding-right: 50px !important;
- }
- .-pr8{
- padding-right: 70px !important;
- }
- .-pr9{
- padding-right: 70px !important;
- }
- .-pr10{
- padding-right: 80px !important;
- }
- .-m4{
- margin: 30px !important;
- }
- .-m5{
- margin: 40px !important;
- }
- .-mt4{
- margin-top: 30px !important;
- }
- .-mt5{
- margin-top: 40px !important;
- }
- .-mt6{
- margin-top: 40px !important;
- }
- .-mt7{
- margin-top: 50px !important;
- }
- .-mt8{
- margin-top: 70px !important;
- }
- .-mt9{
- margin-top: 70px !important;
- }
- .-mt10{
- margin-top: 80px !important;
- }
- .-mb4{
- margin-bottom: 30px !important;
- }
- .-mb5{
- margin-bottom: 40px !important;
- }
- .-mb6{
- margin-bottom: 40px !important;
- }
- .-mb7{
- margin-bottom: 50px !important;
- }
- .-mb8{
- margin-bottom: 70px !important;
- }
- .-mb9{
- margin-bottom: 70px !important;
- }
- .-mb10{
- margin-bottom: 80px !important;
- }
- .-ml4{
- margin-left: 30px !important;
- }
- .-ml5{
- margin-left: 40px !important;
- }
- .-ml6{
- margin-left: 40px !important;
- }
- .-ml7{
- margin-left: 50px !important;
- }
- .-ml8{
- margin-left: 70px !important;
- }
- .-ml9{
- margin-left: 70px !important;
- }
- .-ml10{
- margin-left: 80px !important;
- }
- .-mr4{
- margin-right: 30px !important;
- }
- .-mr5{
- margin-right: 40px !important;
- }
- .-mr6{
- margin-right: 40px !important;
- }
- .-mr7{
- margin-right: 50px !important;
- }
- .-mr8{
- margin-right: 70px !important;
- }
- .-mr9{
- margin-right: 70px !important;
- }
- .-mr10{
- margin-right: 80px !important;
- }
- .-xl-p0{
- padding: 0 !important;
- }
- .-xl-p1{
- padding: 10px !important;
- }
- .-xl-p2{
- padding: 20px !important;
- }
- .-xl-pt0{
- padding-top: 0 !important;
- }
- .-xl-pt1{
- padding-top: 10px !important;
- }
- .-xl-pt2{
- padding-top: 20px !important;
- }
- .-xl-pt3{
- padding-top: 30px !important;
- }
- .-xl-pt4{
- padding-top: 40px !important;
- }
- .-xl-pb0{
- padding-bottom: 0 !important;
- }
- .-xl-pb1{
- padding-bottom: 10px !important;
- }
- .-xl-pb2{
- padding-bottom: 20px !important;
- }
- .-xl-pb3{
- padding-bottom: 30px !important;
- }
- .-xl-pb4{
- padding-bottom: 40px !important;
- }
- .-xl-pl0{
- padding-left: 0 !important;
- }
- .-xl-pl1{
- padding-left: 10px !important;
- }
- .-xl-pl2{
- padding-left: 20px !important;
- }
- .-xl-pl3{
- padding-left: 30px !important;
- }
- .-xl-pl4{
- padding-left: 40px !important;
- }
- .-xl-pl5{
- padding-left: 50px !important;
- }
- .-xl-pr0{
- padding-right: 0 !important;
- }
- .-xl-pr1{
- padding-right: 10px !important;
- }
- .-xl-pr2{
- padding-right: 20px !important;
- }
- .-xl-pr3{
- padding-right: 30px !important;
- }
- .-xl-pr4{
- padding-right: 40px !important;
- }
- .-xl-m0{
- margin: 0 !important;
- }
- .-xl-m1{
- margin: 10px !important;
- }
- .-xl-m2{
- margin: 20px !important;
- }
- .-xl-m3{
- margin: 30px !important;
- }
- .-xl-m4{
- margin: 40px !important;
- }
- .-xl-mt0{
- margin-top: 0 !important;
- }
- .-xl-mt1{
- margin-top: 10px !important;
- }
- .-xl-mt2{
- margin-top: 20px !important;
- }
- .-xl-mt3{
- margin-top: 30px !important;
- }
- .-xl-mt4{
- margin-top: 40px !important;
- }
- .-xl-mb0{
- margin-bottom: 0 !important;
- }
- .-xl-mb1{
- margin-bottom: 10px !important;
- }
- .-xl-mb2{
- margin-bottom: 20px !important;
- }
- .-xl-mb3{
- margin-bottom: 30px !important;
- }
- .-xl-mb4{
- margin-bottom: 40px !important;
- }
- .-xl-ml0{
- margin-left: 0 !important;
- }
- .-xl-ml1{
- margin-left: 10px !important;
- }
- .-xl-ml2{
- margin-left: 20px !important;
- }
- .-xl-ml3{
- margin-left: 30px !important;
- }
- .-xl-ml4{
- margin-left: 40px !important;
- }
- .-xl-mr0{
- margin-right: 0 !important;
- }
- .-xl-mr1{
- margin-right: 10px !important;
- }
- .-xl-mr2{
- margin-right: 20px !important;
- }
- .-xl-mr3{
- margin-right: 30px !important;
- }
- .-xl-mr4{
- margin-right: 40px !important;
- }
- .-xl-ma{
- margin: 0 auto;
- }
- .-xl-col-1{
- width: 8.333333% !important;
- }
- .-xl-offset-1{
- margin-left: 8.333333%;
- }
- .-xl-col-2{
- width: 16.666667% !important;
- }
- .-xl-offset-2{
- margin-left: 16.666667%;
- }
- .-xl-col-3{
- width: 25% !important;
- }
- .-xl-offset-3{
- margin-left: 25%;
- }
- .-xl-col-4{
- width: 33.333333% !important;
- }
- .-xl-offset-4{
- margin-left: 33.333333%;
- }
- .-xl-col-5{
- width: 41.666667% !important;
- }
- .-xl-offset-5{
- margin-left: 41.666667%;
- }
- .-xl-col-6{
- width: 50% !important;
- }
- .-xl-offset-6{
- margin-left: 50%;
- }
- .-xl-col-7{
- width: 58.333333% !important;
- }
- .-xl-offset-7{
- margin-left: 58.333333%;
- }
- .-xl-col-8{
- width: 66.666667% !important;
- }
- .-xl-offset-8{
- margin-left: 66.666667%;
- }
- .-xl-col-9{
- width: 75% !important;
- }
- .-xl-offset-9{
- margin-left: 75%;
- }
- .-xl-col-10{
- width: 83.333333% !important;
- }
- .-xl-offset-10{
- margin-left: 83.333333%;
- }
- .-xl-col-11{
- width: 91.666667% !important;
- }
- .-xl-offset-11{
- margin-left: 91.666667%;
- }
- .-xl-col-12{
- width: 100% !important;
- }
- .-xl-offset-12{
- margin-left: 100%;
- }
- .Section{
- padding-top: 80px;
- padding-bottom: 80px;
- }
- .Pagination{
+
+.footer__copyright a:hover {
+ text-decoration: underline;
+}
+
+.footer__copyright > * {
+ white-space: nowrap;
+}
+
+/* Feedback Form */
+
+#feedback-checkbox-area {
+ margin-top: 24px;
+}
+
+#feedback-form-window {
+ background-color: var(--background-light);
+ padding: 0 30px 30px;
+ overflow: hidden;
+}
+
+html .k-overlay {
+ background: var(--transparent-dark-60);
+}
+
+html div.k-window {
+ border: 0;
+ box-shadow: 0 0 20px rgba(0, 0, 0, .4);
+}
+
+.k-widget.k-window input[type=text],
+.k-widget.k-window textarea {
+ box-sizing: border-box;
+}
+
+html .k-window-titlebar {
+ background: var(--background-light);
+ border: 0;
padding-top: 20px;
- }
- .Pagination .sf_PagerPrev,
- .Pagination .sf_PagerNext{
- top: 20px;
- }
- .Nav-cta .Btn{
- width: 154px;
- }
- .NavAlt a.is-selected:after{
- top: 46px !important;
- }
- .NavAlt.-separated > * + *{
- margin-left: 1em;
- }
- .NavAlt.-separated > * + :before{
- left: -0.8em;
- }
-}
-@media only screen and (max-width: 960px){
- html,
- body{
- background: #fff;
- }
- [class*="col-"]{
- font-size: 18px;
- }
- .-l-oh{
- overflow: hidden !important;
- }
- .-l-ov{
- overflow: visible !important;
- }
- .-l-pr{
- position: relative !important;
- }
- .-l-ps{
- position: static !important;
- }
- .-l-fl{
- float: left !important;
- }
- .-l-fr{
- float: right !important;
- }
- .-l-fn{
- float: none !important;
- }
- .-l-vam{
- vertical-align: middle !important;
- }
- .-l-vat{
- vertical-align: top !important;
- }
- .-l-wa{
- width: auto !important;
- }
- .-l-db{
- display: block !important;
- }
- .-l-dib{
- display: inline-block !important;
- }
- .-l-dn{
- display: none !important;
- }
- .-l-tal{
- text-align: left !important;
- }
- .-l-tac{
- text-align: center !important;
- }
- .-l-tar{
- text-align: right !important;
- }
- .-l-no-pseudo:before,
- .-l-no-pseudo:after{
- display: none !important;
- }
- .-l-no-pseudo-first > :first-child:before,
- .-l-no-pseudo-first > :first-child:after{
- display: none !important;
- }
- .-l-no-pseudo-last > :last-child:before,
- .-l-no-pseudo-last > :last-child:after{
- display: none !important;
- }
- .-l-hyphenate,
- .-l-hyphenate-links a{
- overflow-wrap: break-word;
- word-wrap: break-word;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- }
- .-l-oya{
- overflow-y: auto;
- }
- .-p5{
- padding: 30px !important;
- }
- .-pt5{
- padding-top: 30px !important;
- }
- .-pt7{
- padding-top: 40px !important;
- }
- .-pt8{
- padding-top: 60px !important;
- }
- .-pt9{
- padding-top: 60px !important;
- }
- .-pb5{
- padding-bottom: 30px !important;
- }
- .-pb7{
- padding-bottom: 40px !important;
- }
- .-pb8{
- padding-bottom: 60px !important;
- }
- .-pb9{
- padding-bottom: 60px !important;
- }
- .-pl5{
- padding-left: 30px !important;
- }
- .-pl7{
- padding-left: 40px !important;
- }
- .-pl8{
- padding-left: 60px !important;
- }
- .-pl9{
- padding-left: 60px !important;
- }
- .-pr5{
- padding-right: 30px !important;
- }
- .-pr7{
- padding-right: 40px !important;
- }
- .-pr8{
- padding-right: 60px !important;
- }
- .-pr9{
- padding-right: 60px !important;
- }
- .-m5{
- margin: 30px !important;
- }
- .-mt5{
- margin-top: 30px !important;
- }
- .-mt7{
- margin-top: 40px !important;
- }
- .-mt8{
- margin-top: 60px !important;
- }
- .-mt9{
- margin-top: 60px !important;
- }
- .-mb5{
- margin-bottom: 30px !important;
- }
- .-mb7{
- margin-bottom: 40px !important;
- }
- .-mb8{
- margin-bottom: 60px !important;
- }
- .-mb9{
- margin-bottom: 60px !important;
- }
- .-ml5{
- margin-left: 30px !important;
- }
- .-ml7{
- margin-left: 40px !important;
- }
- .-ml8{
- margin-left: 60px !important;
- }
- .-ml9{
- margin-left: 60px !important;
- }
- .-mr5{
- margin-right: 30px !important;
- }
- .-mr7{
- margin-right: 40px !important;
- }
- .-mr8{
- margin-right: 60px !important;
- }
- .-mr9{
- margin-right: 60px !important;
- }
- .-l-p0{
- padding: 0 !important;
- }
- .-l-p1{
- padding: 10px !important;
- }
- .-l-p2{
- padding: 20px !important;
- }
- .-l-pt0{
- padding-top: 0 !important;
- }
- .-l-pt1{
- padding-top: 10px !important;
- }
- .-l-pt2{
- padding-top: 20px !important;
- }
- .-l-pt3{
- padding-top: 30px !important;
- }
- .-l-pt4{
- padding-top: 40px !important;
- }
- .-l-pb0{
- padding-bottom: 0 !important;
- }
- .-l-pb1{
- padding-bottom: 10px !important;
- }
- .-l-pb2{
- padding-bottom: 20px !important;
- }
- .-l-pb3{
- padding-bottom: 30px !important;
- }
- .-l-pb4{
- padding-bottom: 40px !important;
- }
- .-l-pl0{
- padding-left: 0 !important;
- }
- .-l-pl1{
- padding-left: 10px !important;
- }
- .-l-pl2{
- padding-left: 20px !important;
- }
- .-l-pl3{
- padding-left: 30px !important;
- }
- .-l-pl4{
- padding-left: 40px !important;
- }
- .-l-pl5{
- padding-left: 50px !important;
- }
- .-l-pr0{
- padding-right: 0 !important;
- }
- .-l-pr1{
- padding-right: 10px !important;
- }
- .-l-pr2{
- padding-right: 20px !important;
- }
- .-l-pr3{
- padding-right: 30px !important;
- }
- .-l-pr4{
- padding-right: 40px !important;
- }
- .-l-m0{
- margin: 0 !important;
- }
- .-l-m1{
- margin: 10px !important;
- }
- .-l-m2{
- margin: 20px !important;
- }
- .-l-m3{
- margin: 30px !important;
- }
- .-l-m4{
- margin: 40px !important;
- }
- .-l-mt0{
- margin-top: 0 !important;
- }
- .-l-mt1{
- margin-top: 10px !important;
- }
- .-l-mt2{
- margin-top: 20px !important;
- }
- .-l-mt3{
- margin-top: 30px !important;
- }
- .-l-mt4{
- margin-top: 40px !important;
- }
- .-l-mb0{
- margin-bottom: 0 !important;
- }
- .-l-mb1{
- margin-bottom: 10px !important;
- }
- .-l-mb2{
- margin-bottom: 20px !important;
- }
- .-l-mb3{
- margin-bottom: 30px !important;
- }
- .-l-mb4{
- margin-bottom: 40px !important;
- }
- .-l-ml0{
- margin-left: 0 !important;
- }
- .-l-ml1{
- margin-left: 10px !important;
- }
- .-l-ml2{
- margin-left: 20px !important;
- }
- .-l-ml3{
- margin-left: 30px !important;
- }
- .-l-ml4{
- margin-left: 40px !important;
- }
- .-l-mr0{
- margin-right: 0 !important;
- }
- .-l-mr1{
- margin-right: 10px !important;
- }
- .-l-mr2{
- margin-right: 20px !important;
- }
- .-l-mr3{
- margin-right: 30px !important;
- }
- .-l-mr4{
- margin-right: 40px !important;
- }
- .-l-ma{
- margin: 0 auto;
- }
- [class*="offset-"]{
- margin-left: 0 !important;
- }
- .col-3{
- width: 50% !important;
- }
- .col-4{
- width: 100% !important;
- margin-bottom: 50px;
- }
- .col-9:only-child{
- width: 100% !important;
- margin-left: 0 !important;
- }
- .-l-col-1{
- width: 8.333333% !important;
- }
- .-l-offset-1{
- margin-left: 8.333333%;
- }
- .-l-col-2{
- width: 16.666667% !important;
- }
- .-l-offset-2{
- margin-left: 16.666667%;
- }
- .-l-col-3{
- width: 25% !important;
- }
- .-l-offset-3{
- margin-left: 25%;
- }
- .-l-col-4{
- width: 33.333333% !important;
- }
- .-l-offset-4{
- margin-left: 33.333333%;
- }
- .-l-col-5{
- width: 41.666667% !important;
- }
- .-l-offset-5{
- margin-left: 41.666667%;
- }
- .-l-col-6{
- width: 50% !important;
- }
- .-l-offset-6{
- margin-left: 50%;
- }
- .-l-col-7{
- width: 58.333333% !important;
- }
- .-l-offset-7{
- margin-left: 58.333333%;
- }
- .-l-col-8{
- width: 66.666667% !important;
- }
- .-l-offset-8{
- margin-left: 66.666667%;
- }
- .-l-col-9{
- width: 75% !important;
- }
- .-l-offset-9{
- margin-left: 75%;
- }
- .-l-col-10{
- width: 83.333333% !important;
- }
- .-l-offset-10{
- margin-left: 83.333333%;
- }
- .-l-col-11{
- width: 91.666667% !important;
- }
- .-l-offset-11{
- margin-left: 91.666667%;
- }
- .-l-col-12{
- width: 100% !important;
- }
- .-l-offset-12{
- margin-left: 100%;
- }
- .row--separated > [class*="col-"]:before{
- display: none;
- }
- .List ol li,
- ol.List li,
- .List .List-item{
- padding-left: 80px;
- }
- .List ol li:before,
- ol.List li:before,
- .List .List-item:before{
- left: 0;
- }
- .Nav-logo{
- width: 48%;
- }
- .Nav-logo a{
- vertical-align: top;
- }
- .Nav-open-menu{
- display: inline-block;
- }
- .Nav-right{
- width: 52%;
- }
- .Nav-menu{
- position: static;
- vertical-align: top;
- }
- .Nav-menu ul.-fl{
- display: none;
- position: absolute;
- width: 50%;
- top: 48px;
- left: 0;
- padding: 0 30px 15px 30px;
- text-align: left;
- background-color: #3d5afe;
- }
- .Nav-menu ul.-fl.is-visible{
- display: block;
- }
- .Nav-menu ul.-fl li{
- display: block;
- }
- .Nav-menu ul.-fl li:last-child a{
- border-bottom-width: 0;
- }
- .Nav-menu ul.-fl a{
- padding: 13px 0;
+}
+
+html .k-window-title {
+ margin: 0 .3em;
+}
+
+.feedback-extw__input,
+.feedback-extw__textarea {
+ margin: 12px 0 30px;
+ padding: 10px;
width: 100%;
- background-color: #3d5afe;
- border: 0;
- border-bottom: 1px solid rgba(0,0,0,0.2);
- }
- .Nav-menu ul.-fl a:hover,
- .Nav-menu ul.-fl a:focus{
- margin-top: 0;
- color: #000 !important;
- }
- .Nav-menu .Search-open{
- width: 69px;
- padding-left: 0;
- padding-right: 0;
- }
- .Nav-menu .Search-open.is-active{
- background-color: #f2f4fa !important;
- border-bottom: 0 solid rgba(0,0,0,0);
- }
- .Nav-menu .Search-open.is-active:before{
- display: none;
- }
- .Nav-menu .Search-open.is-active:after{
- content: "×";
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
- font-size: 30px;
- line-height: 0.8;
- opacity: 0.5;
- }
- .Nav-menu a,
- .Nav-menu button{
- padding-left: 30px;
- padding-right: 30px;
- }
- .Search-container{
- top: 48px;
- }
- .Search-container input[type="text"],
- .Search-container .Btn--cancel,
- .Search-container td.gsc-search-button{
- display: inline-block;
- }
- .Search-container .Btn--cancel{
- display: none !important;
- }
- .js-stick{
- width: auto !important;
- }
-}
-@media only screen and (max-width: 800px){
- html,
- body{
- background: #fff;
- }
- .-m-oh{
- overflow: hidden !important;
- }
- .-m-ov{
- overflow: visible !important;
- }
- .-m-pr{
- position: relative !important;
- }
- .-m-ps{
- position: static !important;
- }
- .-m-fl{
- float: left !important;
- }
- .-m-fr{
- float: right !important;
- }
- .-m-fn{
- float: none !important;
- }
- .-m-vam{
- vertical-align: middle !important;
- }
- .-m-vat{
- vertical-align: top !important;
- }
- .-m-wa{
- width: auto !important;
- }
- .-m-db{
- display: block !important;
- }
- .-m-dib{
- display: inline-block !important;
- }
- .-m-dn{
- display: none !important;
- }
- .-m-tal{
- text-align: left !important;
- }
- .-m-tac{
- text-align: center !important;
- }
- .-m-tar{
- text-align: right !important;
- }
- .-m-no-pseudo:before,
- .-m-no-pseudo:after{
- display: none !important;
- }
- .-m-no-pseudo-first > :first-child:before,
- .-m-no-pseudo-first > :first-child:after{
- display: none !important;
- }
- .-m-no-pseudo-last > :last-child:before,
- .-m-no-pseudo-last > :last-child:after{
- display: none !important;
- }
- .-m-hyphenate,
- .-m-hyphenate-links a{
- overflow-wrap: break-word;
- word-wrap: break-word;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- }
- .-m-oya{
- overflow-y: auto;
- }
- .-p3{
- padding: 20px !important;
- }
- .-pt3{
- padding-top: 20px !important;
- }
- .-pt8{
- padding-top: 50px !important;
- }
- .-pt9{
- padding-top: 50px !important;
- }
- .-pt10{
- padding-top: 70px !important;
- }
- .-pb3{
- padding-bottom: 20px !important;
- }
- .-pb8{
- padding-bottom: 50px !important;
- }
- .-pb9{
- padding-bottom: 50px !important;
- }
- .-pb10{
- padding-bottom: 70px !important;
- }
- .-pl3{
- padding-left: 20px !important;
- }
- .-pl8{
- padding-left: 50px !important;
- }
- .-pl9{
- padding-left: 50px !important;
- }
- .-pl10{
- padding-left: 70px !important;
- }
- .-pr3{
- padding-right: 20px !important;
- }
- .-pr8{
- padding-right: 50px !important;
- }
- .-pr9{
- padding-right: 50px !important;
- }
- .-pr10{
- padding-right: 70px !important;
- }
- .-m3{
- margin: 20px !important;
- }
- .-mt3{
- margin-top: 20px !important;
- }
- .-mt8{
- margin-top: 50px !important;
- }
- .-mt9{
- margin-top: 50px !important;
- }
- .-mt10{
- margin-top: 70px !important;
- }
- .-mb3{
- margin-bottom: 20px !important;
- }
- .-mb8{
- margin-bottom: 50px !important;
- }
- .-mb9{
- margin-bottom: 50px !important;
- }
- .-mb10{
- margin-bottom: 70px !important;
- }
- .-ml3{
- margin-left: 20px !important;
- }
- .-ml8{
- margin-left: 50px !important;
- }
- .-ml9{
- margin-left: 50px !important;
- }
- .-ml10{
- margin-left: 70px !important;
- }
- .-mr3{
- margin-right: 20px !important;
- }
- .-mr8{
- margin-right: 50px !important;
- }
- .-mr9{
- margin-right: 50px !important;
- }
- .-mr10{
- margin-right: 70px !important;
- }
- .-m-p0{
- padding: 0 !important;
- }
- .-m-p1{
- padding: 10px !important;
- }
- .-m-p2{
- padding: 20px !important;
- }
- .-m-pt0{
- padding-top: 0 !important;
- }
- .-m-pt1{
- padding-top: 10px !important;
- }
- .-m-pt2{
- padding-top: 20px !important;
- }
- .-m-pt3{
- padding-top: 30px !important;
- }
- .-m-pt4{
- padding-top: 40px !important;
- }
- .-m-pb0{
- padding-bottom: 0 !important;
- }
- .-m-pb1{
- padding-bottom: 10px !important;
- }
- .-m-pb2{
- padding-bottom: 20px !important;
- }
- .-m-pb3{
- padding-bottom: 30px !important;
- }
- .-m-pb4{
- padding-bottom: 40px !important;
- }
- .-m-pl0{
- padding-left: 0 !important;
- }
- .-m-pl1{
- padding-left: 10px !important;
- }
- .-m-pl2{
- padding-left: 20px !important;
- }
- .-m-pl3{
- padding-left: 30px !important;
- }
- .-m-pl4{
- padding-left: 40px !important;
- }
- .-m-pl5{
- padding-left: 50px !important;
- }
- .-m-pr0{
- padding-right: 0 !important;
- }
- .-m-pr1{
- padding-right: 10px !important;
- }
- .-m-pr2{
- padding-right: 20px !important;
- }
- .-m-pr3{
- padding-right: 30px !important;
- }
- .-m-pr4{
- padding-right: 40px !important;
- }
- .-m-m0{
- margin: 0 !important;
- }
- .-m-m1{
- margin: 10px !important;
- }
- .-m-m2{
- margin: 20px !important;
- }
- .-m-m3{
- margin: 30px !important;
- }
- .-m-m4{
- margin: 40px !important;
- }
- .-m-mt0{
- margin-top: 0 !important;
- }
- .-m-mt1{
- margin-top: 10px !important;
- }
- .-m-mt2{
- margin-top: 20px !important;
- }
- .-m-mt3{
- margin-top: 30px !important;
- }
- .-m-mt4{
- margin-top: 40px !important;
- }
- .-m-mb0{
- margin-bottom: 0 !important;
- }
- .-m-mb1{
- margin-bottom: 10px !important;
- }
- .-m-mb2{
- margin-bottom: 20px !important;
- }
- .-m-mb3{
- margin-bottom: 30px !important;
- }
- .-m-mb4{
- margin-bottom: 40px !important;
- }
- .-m-ml0{
- margin-left: 0 !important;
- }
- .-m-ml1{
- margin-left: 10px !important;
- }
- .-m-ml2{
- margin-left: 20px !important;
- }
- .-m-ml3{
- margin-left: 30px !important;
- }
- .-m-ml4{
- margin-left: 40px !important;
- }
- .-m-mr0{
- margin-right: 0 !important;
- }
- .-m-mr1{
- margin-right: 10px !important;
- }
- .-m-mr2{
- margin-right: 20px !important;
- }
- .-m-mr3{
- margin-right: 30px !important;
- }
- .-m-mr4{
- margin-right: 40px !important;
- }
- .-m-ma{
- margin: 0 auto;
- }
- .col-2{
- width: 33.33333% !important;
- }
- .col-10{
- width: 66.66666% !important;
- }
- .-m-col-1{
- width: 8.333333% !important;
- }
- .offset-1{
- margin-left: 0 !important;
- }
- .-m-offset-1{
- margin-left: 8.333333%;
- }
- .-m-col-2{
- width: 16.666667% !important;
- }
- .offset-2{
- margin-left: 0 !important;
- }
- .-m-offset-2{
- margin-left: 16.666667%;
- }
- .-m-col-3{
- width: 25% !important;
- }
- .offset-3{
- margin-left: 0 !important;
- }
- .-m-offset-3{
- margin-left: 25%;
- }
- .-m-col-4{
- width: 33.333333% !important;
- }
- .offset-4{
- margin-left: 0 !important;
- }
- .-m-offset-4{
- margin-left: 33.333333%;
- }
- .-m-col-5{
- width: 41.666667% !important;
- }
- .offset-5{
- margin-left: 0 !important;
- }
- .-m-offset-5{
- margin-left: 41.666667%;
- }
- .-m-col-6{
- width: 50% !important;
- }
- .offset-6{
- margin-left: 0 !important;
- }
- .-m-offset-6{
- margin-left: 50%;
- }
- .-m-col-7{
- width: 58.333333% !important;
- }
- .offset-7{
- margin-left: 0 !important;
- }
- .-m-offset-7{
- margin-left: 58.333333%;
- }
- .-m-col-8{
- width: 66.666667% !important;
- }
- .offset-8{
- margin-left: 0 !important;
- }
- .-m-offset-8{
- margin-left: 66.666667%;
- }
- .-m-col-9{
- width: 75% !important;
- }
- .offset-9{
- margin-left: 0 !important;
- }
- .-m-offset-9{
- margin-left: 75%;
- }
- .-m-col-10{
- width: 83.333333% !important;
- }
- .offset-10{
- margin-left: 0 !important;
- }
- .-m-offset-10{
- margin-left: 83.333333%;
- }
- .-m-col-11{
- width: 91.666667% !important;
- }
- .offset-11{
- margin-left: 0 !important;
- }
- .-m-offset-11{
- margin-left: 91.666667%;
- }
- .-m-col-12{
- width: 100% !important;
- }
- .offset-12{
- margin-left: 0 !important;
- }
- .-m-offset-12{
- margin-left: 100%;
- }
- .Section{
- padding-top: 70px;
- padding-bottom: 70px;
- }
- .Nav-logo{
- width: 46%;
- }
- .Nav-right{
- width: 54%;
- }
- .Nav-menu li.github{
- display: none;
- }
- .ModalInit .ModalInit-thumb{
- height: 120px;
- }
- .ModalClose{
- top: 15px;
- }
- .ImagesSlider{
- display: inline-block;
- }
- .SliderControls{
- display: none !important;
- }
- .ShowcasesContainer h1{
- font-size: 40px;
- }
- .ShowcasesContainer .col-2{
- width: 50%;
- }
- .ShowcasesContainer .AppStores img{
- display: inline-block;
- }
- .ImagesSlider,
- .ImagesSlider li{
- -webkit-transition: none;
- transition: none;
- }
- .ImagesSlider.next-active,
- .ImagesSlider li.next-active,
- .ImagesSlider.prev-active,
- .ImagesSlider li.prev-active{
- display: none;
- }
-}
-@media only screen and (max-width: 590px){
- html,
- body{
- background: #fff;
- }
- [class*="col-"]{
- font-size: 16px;
- }
- .-s-oh{
- overflow: hidden !important;
- }
- .-s-ov{
- overflow: visible !important;
- }
- .-s-pr{
- position: relative !important;
- }
- .-s-ps{
- position: static !important;
- }
- .-s-fl{
- float: left !important;
- }
- .-s-fr{
- float: right !important;
- }
- .-s-fn{
- float: none !important;
- }
- .-s-vam{
- vertical-align: middle !important;
- }
- .-s-vat{
- vertical-align: top !important;
- }
- .-s-wa{
- width: auto !important;
- }
- .-s-db{
- display: block !important;
- }
- .-s-dib{
- display: inline-block !important;
- }
- .-s-dn{
- display: none !important;
- }
- .-s-tal{
- text-align: left !important;
- }
- .-s-tac{
- text-align: center !important;
- }
- .-s-tar{
- text-align: right !important;
- }
- .-s-no-pseudo:before,
- .-s-no-pseudo:after{
- display: none !important;
- }
- .-s-no-pseudo-first > :first-child:before,
- .-s-no-pseudo-first > :first-child:after{
- display: none !important;
- }
- .-s-no-pseudo-last > :last-child:before,
- .-s-no-pseudo-last > :last-child:after{
- display: none !important;
- }
- .-bl:before{
- display: none;
- }
- .-s-hyphenate,
- .-s-hyphenate-links a{
- overflow-wrap: break-word;
- word-wrap: break-word;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- }
- .-s-oya{
- overflow-y: auto;
- }
- .-p4{
- padding: 20px !important;
- }
- .-p5{
- padding: 20px !important;
- }
- .-pt4{
- padding-top: 20px !important;
- }
- .-pt5{
- padding-top: 20px !important;
- }
- .-pt6{
- padding-top: 20px !important;
- }
- .-pt7{
- padding-top: 30px !important;
- }
- .-pt8{
- padding-top: 30px !important;
- }
- .-pt9{
- padding-top: 30px !important;
- }
- .-pt10{
- padding-top: 30px !important;
- }
- .-pb4{
- padding-bottom: 20px !important;
- }
- .-pb5{
- padding-bottom: 20px !important;
- }
- .-pb6{
- padding-bottom: 20px !important;
- }
- .-pb7{
- padding-bottom: 30px !important;
- }
- .-pb8{
- padding-bottom: 30px !important;
- }
- .-pb9{
- padding-bottom: 30px !important;
- }
- .-pb10{
- padding-bottom: 30px !important;
- }
- .-pl4{
- padding-left: 20px !important;
- }
- .-pl5{
- padding-left: 20px !important;
- }
- .-pl6{
- padding-left: 20px !important;
- }
- .-pl7{
- padding-left: 30px !important;
- }
- .-pl8{
- padding-left: 30px !important;
- }
- .-pl9{
- padding-left: 30px !important;
- }
- .-pl10{
- padding-left: 30px !important;
- }
- .-pr4{
- padding-right: 20px !important;
- }
- .-pr5{
- padding-right: 20px !important;
- }
- .-pr6{
- padding-right: 20px !important;
- }
- .-pr7{
- padding-right: 30px !important;
- }
- .-pr8{
- padding-right: 30px !important;
- }
- .-pr9{
- padding-right: 30px !important;
- }
- .-pr10{
- padding-right: 30px !important;
- }
- .-m4{
- margin: 20px !important;
- }
- .-m5{
- margin: 20px !important;
- }
- .-mt4{
- margin-top: 20px !important;
- }
- .-mt5{
- margin-top: 20px !important;
- }
- .-mt6{
- margin-top: 20px !important;
- }
- .-mt7{
- margin-top: 30px !important;
- }
- .-mt8{
- margin-top: 30px !important;
- }
- .-mt9{
- margin-top: 30px !important;
- }
- .-mt10{
- margin-top: 30px !important;
- }
- .-mb4{
- margin-bottom: 20px !important;
- }
- .-mb5{
- margin-bottom: 20px !important;
- }
- .-mb6{
- margin-bottom: 20px !important;
- }
- .-mb7{
- margin-bottom: 30px !important;
- }
- .-mb8{
- margin-bottom: 30px !important;
- }
- .-mb9{
- margin-bottom: 30px !important;
- }
- .-mb10{
- margin-bottom: 30px !important;
- }
- .-ml4{
- margin-left: 20px !important;
- }
- .-ml5{
- margin-left: 20px !important;
- }
- .-ml6{
- margin-left: 20px !important;
- }
- .-ml7{
- margin-left: 30px !important;
- }
- .-ml8{
- margin-left: 30px !important;
- }
- .-ml9{
- margin-left: 30px !important;
- }
- .-ml10{
- margin-left: 30px !important;
- }
- .-mr4{
- margin-right: 20px !important;
- }
- .-mr5{
- margin-right: 20px !important;
- }
- .-mr6{
- margin-right: 20px !important;
- }
- .-mr7{
- margin-right: 30px !important;
- }
- .-mr8{
- margin-right: 30px !important;
- }
- .-mr9{
- margin-right: 30px !important;
- }
- .-mr10{
- margin-right: 30px !important;
- }
- .-s-p0{
- padding: 0 !important;
- }
- .-s-p1{
- padding: 10px !important;
- }
- .-s-p2{
- padding: 20px !important;
- }
- .-s-pt0{
- padding-top: 0 !important;
- }
- .-s-pt1{
- padding-top: 10px !important;
- }
- .-s-pt2{
- padding-top: 20px !important;
- }
- .-s-pt3{
- padding-top: 30px !important;
- }
- .-s-pt4{
- padding-top: 40px !important;
- }
- .-s-pb0{
- padding-bottom: 0 !important;
- }
- .-s-pb1{
- padding-bottom: 10px !important;
- }
- .-s-pb2{
- padding-bottom: 20px !important;
- }
- .-s-pb3{
- padding-bottom: 30px !important;
- }
- .-s-pb4{
- padding-bottom: 40px !important;
- }
- .-s-pl0{
- padding-left: 0 !important;
- }
- .-s-pl1{
- padding-left: 10px !important;
- }
- .-s-pl2{
- padding-left: 20px !important;
- }
- .-s-pl3{
- padding-left: 30px !important;
- }
- .-s-pl4{
- padding-left: 40px !important;
- }
- .-s-pl5{
- padding-left: 50px !important;
- }
- .-s-pr0{
- padding-right: 0 !important;
- }
- .-s-pr1{
- padding-right: 10px !important;
- }
- .-s-pr2{
- padding-right: 20px !important;
- }
- .-s-pr3{
- padding-right: 30px !important;
- }
- .-s-pr4{
- padding-right: 40px !important;
- }
- .-s-m0{
- margin: 0 !important;
- }
- .-s-m1{
- margin: 10px !important;
- }
- .-s-m2{
- margin: 20px !important;
- }
- .-s-m3{
- margin: 30px !important;
- }
- .-s-m4{
- margin: 40px !important;
- }
- .-s-mt0{
- margin-top: 0 !important;
- }
- .-s-mt1{
- margin-top: 10px !important;
- }
- .-s-mt2{
- margin-top: 20px !important;
- }
- .-s-mt3{
- margin-top: 30px !important;
- }
- .-s-mt4{
- margin-top: 40px !important;
- }
- .-s-mb0{
- margin-bottom: 0 !important;
- }
- .-s-mb1{
- margin-bottom: 10px !important;
- }
- .-s-mb2{
- margin-bottom: 20px !important;
- }
- .-s-mb3{
- margin-bottom: 30px !important;
- }
- .-s-mb4{
- margin-bottom: 40px !important;
- }
- .-s-ml0{
- margin-left: 0 !important;
- }
- .-s-ml1{
- margin-left: 10px !important;
- }
- .-s-ml2{
- margin-left: 20px !important;
- }
- .-s-ml3{
- margin-left: 30px !important;
- }
- .-s-ml4{
- margin-left: 40px !important;
- }
- .-s-mr0{
- margin-right: 0 !important;
- }
- .-s-mr1{
- margin-right: 10px !important;
- }
- .-s-mr2{
- margin-right: 20px !important;
- }
- .-s-mr3{
- margin-right: 30px !important;
- }
- .-s-mr4{
- margin-right: 40px !important;
- }
- .-s-ma{
- margin: 0 auto;
- }
- .container{
- padding-left: 20px;
- padding-right: 20px;
- }
- [class*="col-"]{
- margin-bottom: 20px;
- }
- .col-2{
- margin-bottom: 25px;
- }
- .col-10{
- margin-bottom: 50px;
- }
- .col-1.col-1{
- width: 100% !important;
- }
- .-s-col-1{
- width: 8.333333% !important;
- }
- .-s-offset-1{
- margin-left: 8.333333%;
- }
- .col-2.col-2{
- width: 100% !important;
- }
- .-s-col-2{
- width: 16.666667% !important;
- }
- .-s-offset-2{
- margin-left: 16.666667%;
- }
- .col-3.col-3{
- width: 100% !important;
- }
- .-s-col-3{
- width: 25% !important;
- }
- .-s-offset-3{
- margin-left: 25%;
- }
- .col-4.col-4{
- width: 100% !important;
- }
- .-s-col-4{
- width: 33.333333% !important;
- }
- .-s-offset-4{
- margin-left: 33.333333%;
- }
- .col-5.col-5{
- width: 100% !important;
- }
- .-s-col-5{
- width: 41.666667% !important;
- }
- .-s-offset-5{
- margin-left: 41.666667%;
- }
- .col-6.col-6{
- width: 100% !important;
- }
- .-s-col-6{
- width: 50% !important;
- }
- .-s-offset-6{
- margin-left: 50%;
- }
- .col-7.col-7{
- width: 100% !important;
- }
- .-s-col-7{
- width: 58.333333% !important;
- }
- .-s-offset-7{
- margin-left: 58.333333%;
- }
- .col-8.col-8{
- width: 100% !important;
- }
- .-s-col-8{
- width: 66.666667% !important;
- }
- .-s-offset-8{
- margin-left: 66.666667%;
- }
- .col-9.col-9{
- width: 100% !important;
- }
- .-s-col-9{
- width: 75% !important;
- }
- .-s-offset-9{
- margin-left: 75%;
- }
- .col-10.col-10{
- width: 100% !important;
- }
- .-s-col-10{
- width: 83.333333% !important;
- }
- .-s-offset-10{
- margin-left: 83.333333%;
- }
- .col-11.col-11{
- width: 100% !important;
- }
- .-s-col-11{
- width: 91.666667% !important;
- }
- .-s-offset-11{
- margin-left: 91.666667%;
- }
- .col-12.col-12{
- width: 100% !important;
- }
- .-s-col-12{
- width: 100% !important;
- }
- .-s-offset-12{
- margin-left: 100%;
- }
- .row{
- margin-left: -10px;
- margin-right: -10px;
- }
- .row [class*="col-"]{
- padding-left: 10px;
- padding-right: 10px;
- }
- .Section{
- padding-top: 30px;
- padding-bottom: 30px;
- }
- .Pagination .sf_pagerNumeric{
+ font-size: 14px;
+ color: var(--color-secondary);
+ box-sizing: border-box;
+ border: 1px solid var(--border-purple);
+ box-shadow: none;
+ outline: none;
+}
+
+.feedback-extw__textarea {
+ margin: 10px 0 20px;
+ width: 100%;
+}
+
+input::-webkit-input-placeholder,
+textarea::-webkit-input-placeholder {
+ color: var(--transparent-dark-50);
+}
+
+input::-moz-placeholder,
+textarea::-moz-placeholder {
+ color: var(--transparent-dark-50);
+}
+
+input:-ms-input-placeholder,
+textarea:-ms-input-placeholder {
+ color: var(--transparent-dark-50);
+}
+
+#send-feedback {
float: left;
- clear: both;
- }
- .List ol li,
- ol.List li,
- .List .List-item{
- padding-left: 60px;
- }
- .List ol li:before,
- ol.List li:before,
- .List .List-item:before{
- font-size: 60px;
- }
- .Nav .container{
- padding: 0;
- }
- .Nav-logo{
- width: 53%;
- }
- .Nav-open-menu{
- width: 70px;
- margin-left: 0;
- margin-right: 10px;
- }
- .Nav-right{
- width: 47%;
- }
- .Nav-menu ul.-fl{
- width: 60%;
- }
- .Nav-menu a,
- .Nav-menu button{
- padding-left: 20px;
- padding-right: 20px;
- }
- .Nav-cta{
- margin-left: 0;
- margin-top: 0;
- }
- .Nav-cta .Btn{
- padding: 13px;
- }
- .Share a{
- font-size: 18px;
- }
-}
-@media only screen and (min-width: 961px){
- .row--aligned > [class*="col-"]{
- margin-bottom: 30px;
- }
- .row--aligned > [class*="col-"] > :last-child:not(:nth-child(1)){
+}
+
+.feedback-extw__textarea.k-invalid {
+ border-color: var(--color-error);
+}
+
+#feedback-form span.k-tooltip {
+ display: block;
position: absolute;
- bottom: 0;
- }
- .Nav ~ .PageWrapper .Section:first-child{
- margin-top: 48px;
- }
- .js-stick.is-sticky{
+ font-size: 13px;
+ color: var(--color-error);
+ border: 0;
+ background-clip: padding-box;
+ text-align: left;
+ padding: 5px 0;
+ margin-top: -26px;
+}
+
+#feedback-form-window,
+#feedback-form .k-tooltip .k-icon {
+ display: none;
+}
+
+#feedback-form-window .k-notification {
position: fixed;
- top: 100px;
- }
- .js-stick.is-sticky-bottom{
- position: absolute;
- bottom: 0;
- top: auto;
- }
-}
-@media only screen and (max-width: 1190px) and (min-width: 961px){
- .Nav-logo{
- width: 18%;
- }
- .Nav-right{
- width: 82%;
- position: static;
- float: right;
- }
- .Nav-menu > div > ul a,
- .Nav-menu button {
- padding-left: 16px;
- padding-right: 16px;
- }
- .Nav-cta{
- margin-left: 13px;
- }
-}
-@media only screen and (max-width: 475px){
- .Nav-logo{
- width: 35%;
- }
- .Nav-logo a{
- width: 28px;
- overflow: hidden;
- }
- .Nav-logo a img{
- max-width: none;
- }
- .Nav-right{
- width: 65%;
- }
- .Nav-menu ul.-fl{
+ left: 20px;
+ width: calc(100% - 40px);
+ top: -60px;
+ background: var(--background-light);
+}
+
+#feedback-menu-container {
+ color: var(--color-light);
+ margin: 0;
width: 100%;
- }
- .Nav-cta .Btn{
- width: auto;
- }
+ display: flex;
+ align-items: center;
+ font-size: 1.5em;
}
-blockquote {
- min-height: 100px;
- padding: 30px 30px 30px 90px;
- margin: 0 0 1em;
- color: #2fb2af;
- background: #e5f1f1 url(../images/important.png) no-repeat 30px 30px;
+#feedback-menu-container a {
+ cursor: pointer;
+ color: var(--color-light);
+ opacity: .75;
}
-@media only screen and (max-width: 560px) {
- blockquote {
- padding: 90px 30px 30px 30px;
- background: #e5f1f1 url(../images/important.png) no-repeat center 30px;
- }
+#feedback-menu-container a:hover {
+ opacity: 1;
}
-blockquote table {
- border: 0;
- border-collapse: collapse;
+#feedback-buttons-container,
+#feedback-submitted-container {
+ flex: 1;
+ display: flex;
+ align-items: center;
}
-blockquote th, blockquote td {
- padding: .5em;
+#feedback-section {
+ display: flex;
+ align-items: center;
+ width: 100%;
+ height: inherit;
+ background: var(--background-dark);
}
-blockquote p:last-child {
- margin: 0;
+#feedback-section.-detached {
+ position: fixed;
+ bottom: 0;
+ z-index: 10000;
+ width: calc(50% + 550px);
}
-code[class*="language-"],
-pre[class*="language-"] {
- color: black;
- font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
- direction: ltr;
- text-align: left;
- white-space: pre;
- word-spacing: normal;
- word-break: normal;
- line-height: 1.5;
- font-size: 0.9em;
+.ns-feedback {
+ height: 4.29em;
+}
- -moz-tab-size: 4;
- tab-size: 4;
+.feedback__title {
+ flex: 1;
+}
- -webkit-hyphens: none;
- -moz-hyphens: none;
- -ms-hyphens: none;
- hyphens: none;
+#close-banner-button {
+ width: 1.14em;
+ height: 1.14em;
+ position: fixed;
+ margin-top: 1px;
+ right: 1em;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
-/* Code blocks */
-pre[class*="language-"] {
- position: relative;
- padding-top: 0.5em;
- padding-bottom: 0.5em;
- margin: .5em 0;
- box-shadow: -1px 0 0 0 #358ccb, 0 0 0 1px #dfdfdf;
- border-left: 10px solid #358ccb;
- background: #fdfdfd linear-gradient(transparent 50%, rgba(69, 142, 209, 0.04) 50%);
- background-size: 2.7em 2.7em;
- background-origin: content-box;
- overflow: visible;
-}
-
-code[class*="language"] {
- max-height: inherit;
- height: 100%;
- padding: 0 1em;
- display: block;
- overflow: auto;
-}
-
-/* Margin bottom to accomodate shadow */
-:not(pre) > code[class*="language-"],
-pre[class*="language-"] {
- background-color: #fdfdfd;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- margin-bottom: 1em;
+#close-banner-button:before {
+ font-family: "Font Awesome 5 Pro";
+ font-weight: 300;
+ font-size: .86em;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ content: "\f00d";
}
-/* Inline code */
-:not(pre) > code[class*="language-"] {
- position: relative;
- padding: .2em;
- border-radius: 0.3em;
- color: #c92c2c;
- border: 1px solid rgba(0, 0, 0, 0.1);
-}
-
-pre[class*="language-"]:before,
-pre[class*="language-"]:after {
- content: '';
- z-index: -2;
- display: block;
- position: absolute;
- bottom: 0.75em;
- left: 0.18em;
- width: 40%;
- height: 20%;
- box-shadow: 0 13px 8px #979797;
- -webkit-transform: rotate(-2deg);
- -moz-transform: rotate(-2deg);
- -ms-transform: rotate(-2deg);
- -o-transform: rotate(-2deg);
- transform: rotate(-2deg);
-}
-
-:not(pre) > code[class*="language-"]:after,
-pre[class*="language-"]:after {
- right: 0.75em;
- left: auto;
- -webkit-transform: rotate(2deg);
- -moz-transform: rotate(2deg);
- -ms-transform: rotate(2deg);
- -o-transform: rotate(2deg);
- transform: rotate(2deg);
+/* Checkboxes and radios */
+
+.tp-checkbox,
+.tp-checkbox .checkbox__label {
+ display: flex;
}
-.token.comment,
-.token.block-comment,
-.token.prolog,
-.token.doctype,
-.token.cdata {
- color: #7D8B99;
+.tp-checkbox {
+ position: relative;
}
-.token.punctuation {
- color: #5F6364;
+.tp-checkbox.-ellipsis label .checkbox__text,
+.tp-checkbox.-ellipsis label .radio__text,
+.tp-radio.-ellipsis label .checkbox__text,
+.tp-radio.-ellipsis label .radio__text {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ word-wrap: break-word;
}
-.token.property,
-.token.tag,
-.token.boolean,
-.token.number,
-.token.function-name,
-.token.constant,
-.token.symbol,
-.token.deleted {
- color: #c92c2c;
+.tp-checkbox .checkbox__label,
+.tp-radio .radio__label {
+ position: relative;
+ align-items: center;
+ padding: 8px 0;
+ width: 100%;
+ white-space: nowrap;
+ cursor: pointer;
+ -webkit-transition: color .3s;
+ transition: color .3s;
}
-.token.selector,
-.token.attr-name,
-.token.string,
-.token.char,
-.token.function,
-.token.builtin,
-.token.inserted {
- color: #2f9c0a;
+.tp-checkbox .checkbox__label .checkbox__icon,
+.tp-checkbox .checkbox__label .radio__icon,
+.tp-radio .radio__label .checkbox__icon,
+.tp-radio .radio__label .radio__icon {
+ -webkit-transition: color .3s;
+ transition: color .3s;
}
-.token.operator,
-.token.entity,
-.token.url,
-.token.variable {
- color: #a67f59;
- background: rgba(255, 255, 255, 0.5);
+.tp-checkbox .checkbox__label .checkbox__text,
+.tp-checkbox .checkbox__label .radio__text,
+.tp-radio .radio__label .checkbox__text,
+.tp-radio .radio__label .radio__text {
+ display: inline-block;
+ vertical-align: middle;
+ white-space: normal;
+ margin-left: 8px;
}
-.token.atrule,
-.token.attr-value,
-.token.keyword,
-.token.class-name {
- color: #1990b8;
+.tp-checkbox .checkbox__icon,
+.tp-radio .radio__icon {
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ border: 1px solid rgba(45, 62, 80, .3);
+ -webkit-transition: border-color .3s;
+ transition: border-color .3s;
}
-.token.regex,
-.token.important {
- color: #e90;
+.tp-checkbox .checkbox__icon:before,
+.tp-radio .radio__icon:before {
+ content: "\f00c";
+ font-family: "Font Awesome 5 Pro";
+ font-size: 12px;
+ -webkit-transition: opacity .3s;
+ transition: opacity .3s;
+ opacity: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
-.language-css .token.string,
-.style .token.string {
- color: #a67f59;
- background: rgba(255, 255, 255, 0.5);
+.tp-checkbox.-ellipsis,
+.tp-radio.-ellipsis {
+ width: 100%
}
-.token.important {
- font-weight: normal;
+.tp-checkbox.-ellipsis label .checkbox__text,
+.tp-checkbox.-ellipsis label .radio__text,
+.tp-radio.-ellipsis label .checkbox__text,
+.tp-radio.-ellipsis label .radio__text {
+ width: 100%;
+ padding-left: 21px;
+ margin-left: -16px
}
-.token.bold {
- font-weight: bold;
+.tp-checkbox .checkbox__input {
+ position: absolute;
+ top: 5px;
+ margin: 0;
+ width: 0;
+ height: 0;
+ z-index: 2;
+ opacity: 0;
+ cursor: pointer;
}
-.token.italic {
- font-style: italic;
+
+.tp-checkbox .checkbox__input:checked + label .checkbox__icon:before,
+.tp-checkbox .checkbox__input:checked + label .radio__icon:before {
+ opacity: 1;
}
-.token.entity {
- cursor: help;
+.tp-checkbox .checkbox__input:indeterminate + label .checkbox__icon:before {
+ opacity: 1;
+ content: '';
+ top: 50%;
+ left: 50%;
+ width: 50%;
+ height: 50%;
+ margin: -25%;
+}
+
+.tp-checkbox .checkbox__input:disabled,
+.tp-checkbox .checkbox__input:disabled + label {
+ cursor: default;
+}
+
+.tp-radio .radio__icon,
+.tp-checkbox .checkbox__icon,
+.tp-checkbox .checkbox__icon:before {
+ width: 1.2em;
+ height: 1.2em;
+ font-size: 11px;
+}
+
+.tp-checkbox .checkbox__icon {
+ border: 1px solid var(--color-dark);
+ border-radius: 3px;
+}
+
+.tp-checkbox .checkbox__icon:before {
+ width: 1em;
+ height: 1em;
+}
+
+.tp-radio .radio__input:checked + label .checkbox__icon,
+.tp-radio .radio__input:checked + label .radio__icon {
+ border-radius: 50%;
+}
+
+.tp-radio .radio__input:checked + label .checkbox__icon:before,
+.tp-radio .radio__input:checked + label .radio__icon:before {
+ opacity: 1;
+}
+
+.tp-radio .radio__input:disabled,
+.tp-radio .radio__input:disabled + label {
+ cursor: default;
+}
+
+.tp-radio .radio__icon {
+ border-radius: 50%;
+}
+
+.tp-radio .radio__icon:before {
+ width: 50%;
+ height: 50%;
+ border-radius: 50%;
+ content: "\a0";
+ top: 50%;
+ left: 50%;
+ margin: -25%
+}
+
+html .tp-checkbox {
+ line-height: 1em;
+}
+
+.tp-checkbox .checkbox__icon {
+ background: var(--background-light);
}
-.namespace {
- opacity: .7;
+.tp-checkbox .checkbox__input:checked + label .checkbox__icon,
+.tp-checkbox .checkbox__input:checked + label .radio__icon {
+ border-radius: 2px;
+ border-color: var(--color-dark);
+ background-color: var(--background-light);
+ color: var(--color-dark);
}
-@media screen and (max-width: 767px) {
- pre[class*="language-"]:before,
- pre[class*="language-"]:after {
- bottom: 14px;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
+/* checkbox span text */
+.tp-checkbox .checkbox__label .checkbox__text {
+ font-weight: 400;
+ color: var(--color-dark);
+}
+.tp-radio .radio__input:checked + label .checkbox__icon,
+.tp-radio .radio__input:checked + label .radio__icon {
+ border-color: var(--color-accent);
+ background-color: var(--background-light);
+ color: var(--color-dark);
}
-/* Plugin styles */
-.token.tab:not(:empty):before,
-.token.cr:before,
-.token.lf:before {
- color: #e0d7d1;
+html .tp-checkbox.-disabled .checkbox__label .checkbox__icon {
+ border-color: var(--transparent-dark-20);
}
-/* Plugin styles: Line Numbers */
-pre[class*="language-"].line-numbers {
- padding-left: 0;
+html .tp-checkbox.-disabled .checkbox__label .checkbox__text {
+ color: var(--transparent-dark-50);
}
-pre[class*="language-"].line-numbers code {
- padding-left: 3.8em;
+html .tp-radio .radio__icon:before {
+ background-color: var(--background-dark);
}
-pre[class*="language-"].line-numbers .line-numbers-rows {
- left: 0;
+.tp-radio .radio__input:disabled + label .checkbox__icon,
+.tp-radio .radio__input:disabled + label .radio__icon {
+ border-color: var(--transparent-dark-20);
}
-/* Style the code exercise boxes */
-.exercise {
- border: 1px solid #ccc;
- border-radius: 0.3em;
- margin-bottom: 1em;
+/* table styling (copied from the theme.css which is not loaded anymore */
+article table {
+ width: 100%;
+ margin: 20px 0;
+ text-align: left;
+ border-collapse: collapse;
+ border: 1px solid var(--border-purple);
+ font: 400 16px "Open Sans", sans-serif;
+ background: var(--color-light);
}
-.exercise p, .exercise pre {
- margin-left: 1em;
- margin-right: 1em;
+
+article table tr {
+ border-left-width: 0;
+ border-right-width: 0;
}
-.exercise h4 {
- margin-top: 0;
- padding: 0.8em;
- border-bottom: 1px solid #eee;
- font-size: 1.1em;
+
+article table th {
+ padding: 6px 15px;
+ font-size: 12px;
+ font-weight: 600;
+ text-transform: uppercase;
+ text-align: left;
+ vertical-align: middle;
+ line-height: normal;
+ border-left-width: 0;
+ border-right-width: 0;
}
-.copy-button {
- position: absolute;
- height: 1.5em;
- top: calc(-1.5em - 1px);
- right: -1px;
- padding: 0 0.5em;
- background: white;
- border: 1px solid #dfdfdf;
- border-bottom: 0;
- width: auto;
- margin-top: 0;
- color: #000;
+article table td {
+ padding: 10px 15px;
+ line-height: normal;
+ border-left-width: 0;
+ border-right-width: 0;
+ border-top: 1px solid var(--border-purple);
}
-.copy-button:hover,
-.copy-button:active,
-.copy-button:focus {
- background: #5854F8 !important;
- outline: 0;
- color: white;
+article table td h2,
+article table td h3,
+article table td h4,
+article table td h5 {
+ font-weight: 500;
+ margin: 0;
}
-input.gsc-search-button {
- border-radius: 0;
- margin: 0 0 23px;
- border: 0;
- padding: 0;
- width: 38px;
- height: 36px;
- background: none;
- opacity: 0;
-}
-td.gsc-search-button:before {
- content: "\c0";
- font-family: "nativescript-icon-font";
- display: block;
- line-height: 48px;
- font-size: 16px;
- text-align: center;
-}
+/* Social links */
-.gsc-wrapper {
- text-align: left;
+.footer__social-links {
+ font-size: 0;
+ height: 40px;
}
-.gsc-wrapper b {
- font-weight: 700;
+.footer__social-links iframe {
+ margin: 0;
}
-.gcsc-branding {
- display: none !important;
+.footer__social-links .slack-button,
+.footer__social-links #fb-root ~ iframe {
+ vertical-align: top;
+ margin: 10px;
}
-.gsc-search-box-tools .gsc-search-box .gsc-input {
- display: block !important;
- padding-left: 10px !important;
+.footer__social-links .slack-iframe {
+ margin: 0;
}
-.gsc-control-cse {
- padding: 0 !important;
- height: 48px !important;
- border: 0 !important;
+.footer__social-links #fb-root {
+ display: none;
}
-#gsc-i-id1 {
- background: none !important;
- height: 48px !important;
+.fb_iframe_widget {
+ display: inline-block !important;
}
-.gsc-search-box .gsc-input>input:hover,
-.gsc-input-box-hover,
-.gsc-search-box .gsc-input>input:focus,
-.gsc-input-box-focus {
- border: 0 !important;
- box-shadow: none !important;
-}
+@media only screen and (max-width: 480px) {
+ .footer__social-links {
+ height: 80px
+ }
+}
+
+
+/* Responsiveness */
+
+@media only screen and (max-width: 1800px) {
+ body.-landing {
+ flex: 1 0 90%;
+ width: 90%;
+ }
+}
+
+@media only screen and (max-width: 1280px) {
+ body {
+ flex: 1 0 90%;
+ width: 90%;
+ }
+
+ .ns-navigation,
+ .ns-footer {
+ width: auto;
+ margin-left: unset;
+ }
+
+ #feedback-section.-detached {
+ flex: 1 0 90%;
+ width: 90%;
+ }
+
+ .side-nav__burger-input,
+ .side-nav__burger-menu {
+ display: inline-flex;
+ }
+
+ html body .side-nav__tree {
+ width: 1em;
+ max-height: 0;
+ margin-top: -2.86em;
+ padding: 2.86em 1.72em 0 0;
+ }
+
+ .side-nav__burger-input:checked ~ .side-nav__tree {
+ width: 16.43em;
+ max-height: 2500px;
+ }
+
+ .side-nav__burger-input:checked + .side-nav__burger-menu:before {
+ transform: rotate(45deg);
+ }
+
+ .flavor-header__search > div {
+ width: auto;
+ }
+
+ .flavor-header__navigation {
+ margin-left: 10px;
+ }
+
+ .ns-side-nav {
+ margin: -.71em 1.43em 0 -1.43em;
+ }
+
+ .right-nav__label {
+ display: inline-flex;
+ position: absolute;
+ left: 0;
+ top: .94em;
+ z-index: 1;
+ }
-.gsc-input {
- background: none;
- height: 48px;
- line-height: 48px;
- padding: 0 !important;
- border: 0 !important;
-}
+ .right-nav__container {
+ position: fixed;
+ padding-right: 1.25em;
+ top: 4.13em;
+ right: -12.5em;
+ bottom: 0;
+ margin: 0;
+ z-index: 1;
+ }
-.gsc-input-box {
- height: auto !important;
- border: 0 !important;
-}
+ .right-nav__tree > div {
+ margin-top: 1.38em;
+ }
-.gsib_a {
- padding: 0 !important;
-}
+ .right-nav__tree {
+ overflow: hidden;
+ overflow-y: auto;
+ margin-top: 0;
+ width: 13.75em;
+ height: 100%;
+ background: var(--background-base);
+ transition: box-shadow .2s ease-out;
+ }
-.gsib_b {
- display: none !important;
-}
+ .right-nav__sizer {
+ transition: width .2s ease-out;
+ width: 13.75em;
+ }
-input.gsc-search-button,
-input.gsc-search-button:hover,
-input.gsc-search-button:focus {
- position: absolute !important;
- top: -1px !important;
- right: -2px !important;
- padding: 0 !important;
- margin: 0 !important;
- width: 76px !important;
- height: 48px !important;
- border: 0 !important;
-}
+ .right-nav__tree > div,
+ .right-nav__tree > ul {
+ margin-left: 4.67em;
+ }
-.SecNav .selected {
- color: #fff !important;
-}
-.SecNav .selected:after {
- content: "";
- display: block;
- position: absolute;
- bottom: 0;
- margin-bottom: -17px;
- left: 50%;
- margin-left: -20px;
- width: 39px;
- height: 18px;
- color: #494275 !important;
- background: currentColor;
- background: radial-gradient(circle at bottom left, transparent 19px, currentColor 20px), radial-gradient(circle at bottom right, transparent 19px, currentColor 20px);
- background-position: top left, top right;
- background-size: 20px 20px;
- background-repeat: no-repeat;
-}
-.k-treeview {
- white-space: normal !important;
- overflow: hidden !important;
-}
-.k-treeview .k-in {
- display: inline-block;
- padding: 5px 10px;
- margin-top: -11px;
- margin-bottom: 12px;
- border: 0;
- color: #3d5afe;
- font-weight: 400;
- cursor: pointer !important;
- line-height: 1.1;
-}
+ .right-nav__input:checked ~ .right-nav__sizer {
+ width: 29em;
+ }
-.k-treeview-lines > .k-item {
- margin-bottom: 20px;
-}
+ .right-nav__input:checked ~ .right-nav__tree {
+ width: 17.8em;
+ box-shadow: -3px 0 6px var(--transparent-dark-15);
+ }
-.k-treeview-lines > .k-item > div > .k-in {
- font-size: 18px;
- text-transform: lowercase;
- font-family: Consolas, sans-serif;
-}
-.k-treeview-lines > .k-item > div > .k-in:first-letter {
- text-transform: uppercase;
-}
+ .right-nav__input:checked ~ .right-nav__tree > ul {
+ margin-left: 1.33em;
+ }
-.k-state-selected a {
- color: #000 !important;
-}
+ .right-nav__input:checked ~ .right-nav__tree > div {
+ margin-left: 2.5em;
+ }
-.k-treeview .k-icon {
- vertical-align: top;
+ .right-nav__tree .ns-state-selected:before {
+ left: -2.87em;
+ }
}
-.k-treeview-lines .k-item:before {
- display: none;
+@media only screen and (max-width: 1280px) {
+ html {
+ font-size: 14px;
+ }
}
-.k-treeview-lines .k-icon:before {
- content: "";
- display: block;
- position: absolute;
- width: 0;
- height: 0;
- margin-left: 8px;
- border-style: solid;
- border-width: 7px 4px 0 4px;
- border-color: #3d5afe transparent transparent transparent;
-}
-.k-treeview-lines .k-icon.k-plus:before {
- border-width: 4px 0 4px 7px;
- border-color: transparent transparent transparent #3d5afe;
-}
-.k-treeview-lines .k-icon.k-minus:after {
- content: "";
- display: block;
- position: absolute;
- width: 1px;
- background: #72799c;
- opacity: 0.2;
- top: 0;
- left: 11px;
- bottom: 15px;
+@media only screen and (max-width: 1100px) {
+ html {
+ font-size: 13px;
+ }
}
-.k-group {
- padding-top: 2px !important;
-}
-.k-group .k-group li:before {
- display: none;
-}
+@media only screen and (max-width: 1020px) {
+ html {
+ font-size: 13px;
+ }
+ .ns-card,
+ .footer__links > div,
+ .start-links__category {
+ flex: auto;
+ }
+ .right-nav__container {
+ display: none;
+ }
-.k-tabstrip-wrapper {
- margin: 0 0 45px;
+ .navigation__burger-menu {
+ display: inline-block;
+ }
}
-.k-tabstrip-wrapper pre {
- margin: 0;
-}
-.k-tabstrip .k-content {
- padding: 1em;
-}
+/* Base16 Google Light Prism Theme */
-.k-tabstrip {
- border: 0;
- margin: 0 -.29em;
+pre, code {
+ font-size: 13px;
}
-.k-tabstrip .k-item {
- border-width: 0 1px 0;
- border-color: #dce4e5;
- background-color: #F5F7F8;
- padding-bottom: 0;
- margin-right: 2px;
+a code {
+ font-size: inherit;
+ font-family: inherit;
}
-.k-tabstrip .k-tabstrip-items .k-state-active {
- background: #2d3e50;
- border-color: #2d3e50;
- margin-bottom: 0;
+a code:after,
+a code:before {
+ content: "\"";
}
-.k-tabstrip .k-tabstrip-items .k-state-active .k-link {
- color: #fff;
+a strong {
+ font-weight: inherit;
}
-.k-reset li:before {
- display: none;
+code[class*="language-"],
+pre[class*="language-"] {
+ white-space: pre;
+ word-spacing: normal;
+ word-break: normal;
+ -moz-tab-size: 4;
+ tab-size: 4;
+ -webkit-hyphens: none;
+ -ms-hyphens: none;
+ hyphens: none;
}
-/* tip */
-.tip-container {
- display: none;
- background: #faae2a;
- color: #000;
-}
-.tip {
- position: relative;
- overflow: hidden;
- padding: 10px 20px 10px 0;
-}
-.tip a.icon-next {
- display: inline-block;
-}
-.tip a.icon-next:before {
- display: inline-block;
- position: relative;
- top: -2px;
-}
-.tip.is-revealed {
- max-height: 150px;
-}
-.tip-close {
- display: inline-block;
- width: 30px;
- height: 30px;
- text-align: center;
- line-height: 24px;
- position: absolute;
- right: -8px;
- top: 14px;
- font-size: 1.5em;
-}
-.tip-close:hover {
- color: #000;
-}
-@media screen and (max-width:760px) {
- .tip a.icon-next {
- padding: 0;
- line-height: 1;
- }
- .tip a.icon-next:before {
- font-size: 22px
- }
- .tip.is-revealed {
- padding: 10px 0;
- overflow: visible;
- }
-}
-div.noimprovethis {
- display: none;
-}
-#feedback-checkbox-area {
- margin-top: 24px;
-}
-#feedback-form-window {
- background-color: #fff;
- padding: 0 20px 20px;
- overflow: hidden;
-}
-html div.k-window {
- border: 0;
- box-shadow: 0 0 20px rgba(0,0,0,.4);
-}
-.k-widget.k-window input[type=text],
-.k-widget.k-window textarea {
- box-sizing: border-box;
-}
-html .k-window-titlebar {
- background: #fff;
- border: 0;
-}
-html .k-window-title {
- left: .5em;
- right: .5em;
-}
-#feedback-checkbox-area label{
- display: block;
- margin: 5px 0 10px;
-}
-#feedback-checkbox-area textarea {
- width: 100%;
-}
-.feedback-extw__input {
- margin: 12px 0 30px;
- padding: 10px;
- width: 100%;
-}
-#send-feedback {
- float: left;
- color: #fff;
- margin-left: 1.833em;
+pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
+code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
+ text-shadow: none;
+ background: var(--color-purple);
}
-#send-feedback:hover {
- text-decoration: underline;
- background-color: #000;
+pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
+code[class*="language-"]::selection, code[class*="language-"] ::selection {
+ text-shadow: none;
+ background: var(--color-purple);
}
-#feedback-menu-container {
- color: #fff;
+/* Code blocks */
+pre[class*="language-"] {
+ padding: 20px;
+ margin: 0 0 20px;
+ overflow: auto;
+ border: 1px solid var(--border-purple);
}
-#feedback-menu-container .Btn {
- cursor: pointer;
- width: auto;
- margin: 0;
+/* Inline code */
+:not(pre) > code[class*="language-"] {
+ padding: .1em;
+ border-radius: .3em;
}
-#feedback-menu-container .row > .-xl-col-4:before {
- content: "\a0";
- display: block;
+.token.comment,
+.token.prolog,
+.token.doctype,
+.token.cdata {
+ color: #b4b7b4;
}
-#feedback-menu-container [class*="col-"] {
- margin-bottom: 0;
- overflow: hidden;
+.token.punctuation {
+ color: #373b41;
}
-@media only screen and (max-width: 590px) {
- #feedback-menu-container .row [class*="col-"] {
- padding-left: 10px;
- padding-right: 30px;
- }
+.token.namespace {
+ opacity: .7;
}
-@media only screen and (max-width: 800px) {
- #feedback-menu-container .row > .-xl-col-4 {
- display: none;
- }
+.token.property {
+ color: #fba922;
}
-#feedback-form span.k-tooltip {
- position: absolute;
- display: inline-block;
- right: 20px;
- margin-top: 0;
- font-size: 13px;
- color: red;
- border-color: transparent transparent #d8deff #d8deff;
- background: white;
- padding-top: 5px;
- background-clip: padding-box;
+.token.selector {
+ color: #a36ac7;
}
-#feedback-form-window,
-#feedback-form .k-tooltip .k-icon {
- display: none;
+.token.attr-value,
+.token.string,
+.token.entity,
+.token.url,
+.language-css .token.string,
+.style .token.string {
+ color: #f96a38;
}
-#feedback-form-window .k-notification {
- position: fixed;
- left: 20px;
- width: calc(100% - 40px);
- top: -60px;
- background: #fff;
+.token.attr-name,
+.token.control,
+.token.function,
+.token.directive,
+.token.unit {
+ color: var(--color-source-green);
}
-#feedback-submitted-container {
- height: 50px;
+.token.operator,
+.token.boolean,
+.token.number,
+.token.statement,
+.token.tag,
+.token.keyword,
+.token.regex,
+.token.atrule,
+.token.placeholder,
+.token.variable {
+ color: var(--color-accent);
}
-#feedback-submitted-container > span,
-#helpful-buttons-container .side-title {
- line-height: 56px;
- position: absolute;
+.token.deleted {
+ text-decoration: line-through;
}
-#feedback-section {
- width: 100%;
- background: #3d5afe;
+.token.inserted {
+ border-bottom: 1px dotted #1d1f21;
+ text-decoration: none;
}
-.-right {
- float: right;
+.token.italic {
+ font-style: italic;
}
-#feedback-section.-detached {
- position: fixed;
- bottom: -1px;
- z-index: 10000;
+.token.important,
+.token.bold {
+ font-weight: bold;
}
-.feedback-mark {
- height: 52px;
+.token.important {
+ color: #cc342b;
}
-#close-banner-button.Btn {
- background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIxLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNSAyNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUgMjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIyNSwyNC4zIDEzLjIsMTIuNSAyNSwwLjcgMjUsMCAyNC4zLDAgMTIuNSwxMS44IDAuNywwIDAsMCAwLDAuNyAxMS44LDEyLjUgMCwyNC4zIDAsMjUgMC43LDI1IAoJMTIuNSwxMy4yIDI0LjMsMjUgMjUsMjUgIi8+Cjwvc3ZnPgo=") no-repeat center center;
- width: 24px;
- height: 24px;
- background-size: contain;
- position: absolute;
- right: 4px;
- top: 13px;
+.token.entity {
+ cursor: help;
}
-/* Checkboxes and radios */
-
-.tp-checkbox.-switch label .checkbox__icon {
- display: none;
+pre > code.highlight {
+ outline: 0.4em solid #cc342b;
+ outline-offset: .4em;
}
-.tp-checkbox,
-.tp-checkbox .checkbox__label,
-.tp-checkbox.-switch input + label:after,
-.tp-checkbox.-switch input + label:before {
- display: block;
-}
+/* Google Search box */
-.tp-checkbox,
-.tp-checkbox.-switch input + label {
- position: relative;
+html .gsc-control-cse {
+ position: relative;
+ border: 0;
+ font-family: inherit;
+ padding: 0 10px 0 16px;
+ box-shadow: 0 3px 6px var(--transparent-dark-15);
}
-.tp-checkbox.-switch input + label:after,
-.tp-checkbox.-switch input + label:before {
- position: absolute;
+html .-landing .gsc-control-cse {
+ box-shadow: none;
+ border: 1px solid var(--border-purple);
}
-.tp-checkbox.-ellipsis label .checkbox__text,
-.tp-checkbox.-ellipsis label .radio__text,
-.tp-radio.-ellipsis label .checkbox__text,
-.tp-radio.-ellipsis label .radio__text {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-wrap: break-word;
+.gsc-input-box table,
+.gsc-input-box tr {
+ height: 31px;
}
-.tp-checkbox .checkbox__label,
-.tp-radio .radio__label {
- position: relative;
- width: 100%;
- white-space: nowrap;
- cursor: pointer;
- -webkit-transition: color .3s;
- transition: color .3s;
+.-landing .gsc-input-box table,
+.-landing .gsc-input-box tr {
+ height: 41px;
}
-.tp-checkbox .checkbox__label .checkbox__icon,
-.tp-checkbox .checkbox__label .radio__icon,
-.tp-radio .radio__label .checkbox__icon,
-.tp-radio .radio__label .radio__icon {
- -webkit-transition: color .3s;
- transition: color .3s;
+.gsc-input-box table,
+.gsc-input-box tbody,
+.gsc-input-box td {
+ display: block;
}
-.tp-checkbox .checkbox__label .checkbox__text,
-.tp-checkbox .checkbox__label .radio__text,
-.tp-radio .radio__label .checkbox__text,
-.tp-radio .radio__label .radio__text {
- display: inline-block;
- vertical-align: middle;
- white-space: normal;
- margin-left: 2px;
+.gsc-input-box tr {
+ display: flex;
+ align-items: center;
}
-.tp-checkbox .checkbox__icon,
-.tp-radio .radio__icon {
- display: inline-block;
- position: relative;
- top: 5px;
- border: 1px solid rgba(45, 62, 80, .3);
- -webkit-transition: border-color .3s;
- transition: border-color .3s;
+html .gsc-input-box {
+ border: 0;
+ outline: none;
+ box-shadow: none;
}
-.tp-checkbox .checkbox__icon:before,
-.tp-radio .radio__icon:before {
- position: absolute;
- width: 100%;
- height: 100%;
- background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB3aWR0aD0iMTc5MiIgaGVpZ2h0PSIxNzkyIiB2aWV3Qm94PSIwIDAgMTc5MiAxNzkyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0xNjcxIDU2NnEwIDQwLTI4IDY4bC03MjQgNzI0LTEzNiAxMzZxLTI4IDI4LTY4IDI4dC02OC0yOGwtMTM2LTEzNi0zNjItMzYycS0yOC0yOC0yOC02OHQyOC02OGwxMzYtMTM2cTI4LTI4IDY4LTI4dDY4IDI4bDI5NCAyOTUgNjU2LTY1N3EyOC0yOCA2OC0yOHQ2OCAyOGwxMzYgMTM2cTI4IDI4IDI4IDY4eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
- background-size: contain;
- -webkit-transition: opacity .3s;
- transition: opacity .3s;
- opacity: 0;
+.gsc-input::-webkit-input-placeholder {
+ color: var(--transparent-dark-50);
}
-.tp-checkbox.-ellipsis,
-.tp-radio.-ellipsis {
- width: 100%
+html td.gsc-search-button {
+ width: 36px;
+ height: 100%;
+ position: absolute;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ left: 0;
+ top: 0;
+ margin: 0;
}
-.tp-checkbox.-ellipsis label .checkbox__text,
-.tp-checkbox.-ellipsis label .radio__text,
-.tp-radio.-ellipsis label .checkbox__text,
-.tp-radio.-ellipsis label .radio__text {
- width: 100%;
- padding-left: 21px;
- margin-left: -16px
+td.gsc-search-button:before {
+ content: "\f002";
+ font-family: "Font Awesome 5 Pro";
+ display: flex;
+ line-height: inherit;
+ font-size: 16px;
+ height: 100%;
+ width: 100%;
+ align-items: center;
+ justify-content: center;
}
-.tp-checkbox .checkbox__input {
- position: absolute;
- top: 5px;
- margin: 0;
- width: 0;
- height: 0;
- z-index: 2;
- opacity: 0;
- cursor: pointer;
+button.gsc-search-button {
+ position: absolute;
+ opacity: .01;
+ height: inherit;
+ cursor: pointer;
+ left: 0;
+ top: 0;
+ width: 100%;
+ padding: 0;
}
-.tp-checkbox .checkbox__input:checked + label .checkbox__icon:before,
-.tp-checkbox .checkbox__input:checked + label .radio__icon:before {
- opacity: 1;
+.gsc-search-button svg {
+ margin-top: 2px;
+ font-size: 1rem;
+ width: 1em;
+ height: 1em;
}
-.tp-checkbox .checkbox__input:indeterminate + label .checkbox__icon:before {
- opacity: 1;
- content: '';
- top: 50%;
- left: 50%;
- width: 50%;
- height: 50%;
- margin: -25%;
+html form.gsc-search-box,
+html table.gsc-search-box {
+ margin: 0;
}
-.tp-checkbox .checkbox__input:disabled,
-.tp-checkbox .checkbox__input:disabled + label {
- cursor: default;
+td.gsc-input {
+ flex: 1;
}
-.tp-radio .radio__icon,
-.tp-checkbox .checkbox__icon,
-.tp-checkbox .checkbox__icon:before {
- border-radius: 2px;
- width: 15px;
- height: 15px;
+input.gsc-input {
+ visibility: hidden;
+ background: none !important;
+ text-indent: 16px !important;
}
-.tp-checkbox .checkbox__icon:before {
- top: 0;
- left: 0;
- content: "\a0";
+html .gsc-search-box-tools .gsc-clear-button {
+ display: none;
}
-.tp-radio .radio__input:checked + label .checkbox__icon,
-.tp-radio .radio__input:checked + label .radio__icon {
- border-radius: 50%;
+html .gsc-search-box-tools .gsc-search-box .gsc-input {
+ padding-right: 0;
}
-.tp-radio .radio__input:checked + label .checkbox__icon:before,
-.tp-radio .radio__input:checked + label .radio__icon:before {
- opacity: 1;
+html .gsst_a {
+ padding: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
-.tp-radio .radio__input:indeterminate + label .checkbox__icon:before {
- opacity: 1;
- content: '';
- top: 50%;
- left: 50%;
- width: 50%;
- height: 50%;
- margin: -25%;
+html .gsib_a,
+html .gsib_b {
+ padding-top: 0;
+ display: flex;
+ align-items: center;
}
-.tp-radio .radio__input:disabled,
-.tp-radio .radio__input:disabled + label {
- cursor: default;
-}
+/* Google Search Results */
-.tp-radio .radio__icon {
- border-radius: 50%;
+html .gsc-results-wrapper-overlay {
+ border-radius: 0;
+ overflow: auto;
+ box-shadow: none;
+ background: var(--background-base);
+ width: 100%;
+ height: auto;
+ top: 4.6em;
+ left: 0;
+ bottom: 0;
+ padding: 0 50px;
+ transition: all 0.25s linear;
+ box-sizing: border-box;
}
-.tp-radio .radio__icon:before {
- width: 50%;
- height: 50%;
- border-radius: 50%;
- content: '';
- top: 50%;
- left: 50%;
- margin: -25%
+html .gsc-wrapper .gsc-webResult.gsc-result,
+html .gsc-results .gsc-imageResult {
+ border: 0;
+ background: var(--background-base);
}
-html .tp-checkbox {
- line-height: 16px;
+.gsc-above-wrapper-area {
+ position: relative;
+ width: 100%;
+ margin-top: 90px;
+ background: var(--background-base);
}
-.tp-checkbox .checkbox__icon {
- top: 2px;
- background: #FFF;
+html .gsc-results-close-btn {
+ z-index: 1;
+ top: 95px;
+ right: 40px;
+ position: fixed !important;
+ background: none;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ opacity: .75;
}
-.tp-checkbox .checkbox__input:checked + label .checkbox__icon,
-.tp-checkbox .checkbox__input:checked + label .radio__icon {
- border-radius: 2px;
- border-color: #3A53FF;
- background-color: #3A53FF;
- color: #FFF;
+html .gsc-results-close-btn:hover {
+ opacity: 1;
}
-/* checkbox span text */
-.tp-checkbox .checkbox__label .checkbox__text {
- font-weight: 400;
- font-size: 15px;
- color: #022734;
+html .gsc-results-close-btn:before {
+ font-family: "Font Awesome 5 Pro";
+ font-weight: 300;
+ font-size: 24px;
+ content: "\f00d";
}
-.tp-radio .radio__input:checked + label .checkbox__icon,
-.tp-radio .radio__input:checked + label .radio__icon {
- border-color: #3A53FF;
- background-color: #FFF;
- color: #FFF;
+html .gsc-results {
+ padding-top: 20px;
}
-html .tp-checkbox.-disabled .checkbox__label .checkbox__icon {
- border-color: rgba(0,0,0,.3);
+html .gsc-results:before {
+ margin-top: -130px;
+ padding: 10px 7px 90px;
+ content: "Search Results";
+ font-size: 32px;
+ display: block;
}
-html .tp-checkbox.-disabled .checkbox__label .checkbox__text {
- color: rgba(0,0,0,.5);
+html .gsc-modal-background-image {
+ display: none;
}
-html .tp-radio .radio__icon:before {
- background-color: #3A53FF;
-}
-.tp-radio .radio__input:disabled + label .checkbox__icon,
-.tp-radio .radio__input:disabled + label .radio__icon {
- border-color: rgba(0,0,0,.3);
+html .gsc-overflow-hidden {
+ overflow: visible;
}
-/* table styling (copied from the theme.css which is not loaded anymore */
-.Section table {
- width: 100%;
- margin: 20px 0;
- text-align: left;
- border-collapse: collapse;
- border-bottom: 2px solid #ecf0f1;
- font: 400 16px "Open Sans",sans-serif;
- border-left-width: 0;
- border-right-width: 0;
+.-overflow-hidden {
+ overflow: hidden;
}
-.Section table tr {
- border-left-width: 0;
- border-right-width: 0;
+.gs-webResult {
+ display: flex;
+ flex-direction: column;
}
-.Section table th {
- padding: 6px 15px;
- border-top: 2px solid #ecf0f1;
- border-bottom: 2px solid #ecf0f1;
- color: #969ea7;
- font: inherit;
- font-size: 14px;
- font-weight: 600;
- text-align: left;
- text-transform: uppercase;
- background: #f5f7f8;
- vertical-align: middle;
- line-height: normal;
- border-left-width: 0;
- border-right-width: 0;
+.gsc-url-top {
+ order: 2;
}
-.Section table td {
- border-top: 2px solid #ecf0f1;
- padding: 10px 15px;
- font: inherit;
- line-height: normal;
- border-left-width: 0;
- border-right-width: 0;
+html .gs-webResult.gs-result a.gs-title:link,
+html .gs-webResult.gs-result a.gs-title:link b,
+html .gs-imageResult a.gs-title:link,
+html .gs-imageResult a.gs-title:link b,
+html .gsc-results .gsc-cursor-box .gsc-cursor-page {
+ color: var(--color-accent);
}
-.Section table td h2,
-.Section table td h3,
-.Section table td h4,
-.Section table td h5 {
- font-weight: 500;
- margin: 0;
+html .gs-webResult div.gs-visibleUrl {
+ color: var(--color-accent);
+ opacity: .7;
}
+html .gsc-result .gs-title {
+ overflow: visible;
+}
diff --git a/build/_assets/stylesheets/theme.css b/build/_assets/stylesheets/theme.css
deleted file mode 100644
index ddb7f43a7..000000000
--- a/build/_assets/stylesheets/theme.css
+++ /dev/null
@@ -1,929 +0,0 @@
-*, *:before, *:after {
- -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
- }
-
-html {
- -webkit-font-smoothing: antialiased;
- -webkit-overflow-scrolling: touch;
- -ms-text-size-adjust: 100%;
- font-size: 62.5%;
-}
-
-body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
- margin: 0;
- padding: 0;
-}
-
-table {
- border-collapse: collapse;
- border-spacing: 0;
-}
-
-fieldset, img {
- border: 0;
-}
-
-address, caption, cite, code, dfn, th, var {
- font-style: normal;
- font-weight: normal;
-}
-
-caption, th {
- text-align: left;
-}
-
-h1, h2, h3, h4, h5, h6 {
- font-size: 100%;
- font-weight: normal;
-}
-
-q:before, q:after {
- content: '';
-}
-
-abbr, acronym {
- border: 0;
-}
-
-a {
- outline: none;
-}
-
-body:focus, div:focus, fieldset:focus, span:focus, li:focus, p:focus {
- outline: 0;
-}
-
-@font-face {
- font-family: 'open_sansregular';
- src: url('../fonts/OpenSans-Light-webfont.eot');
- src: url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-Light-webfont.woff') format('woff'),url('../fonts/OpenSans-Light-webfont.ttf') format('truetype'),url('../fonts/OpenSans-Light-webfont.svg#open_sansregular') format('svg');
- font-weight: 300;
- font-style: normal;
-}
-@font-face {
- font-family: 'open_sansregular';
- src: url('../fonts/OpenSans-Regular-webfont.eot');
- src: url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
- font-weight: 400;
- font-style: normal;
-}
-@font-face {
- font-family: 'open_sansregular';
- src: url('../fonts/OpenSans-Italic-webfont.eot');
- src: url('../fonts/OpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-Italic-webfont.woff') format('woff'),url('../fonts/OpenSans-Italic-webfont.ttf') format('truetype'),url('../fonts/OpenSans-Italic-webfont.svg#open_sansregular') format('svg');
- font-weight: 400;
- font-style: italic;
-}
-
-@font-face {
- font-family: 'open_sansregular';
- src: url('../fonts/OpenSans-Semibold-webfont.eot');
- src: url('../fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-Semibold-webfont.woff') format('woff'),url('../fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),url('../fonts/OpenSans-Semibold-webfont.svg#open_sansregular') format('svg');
- font-weight: 500;
- font-style: normal;
-}
-
-@font-face {
- font-family: 'open_sansregular';
- src: url('../fonts/OpenSans-SemiboldItalic-webfont.eot');
- src: url('../fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'),url('../fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'),url('../fonts/OpenSans-SemiboldItalic-webfont.svg#open_sansregular') format('svg');
- font-weight: 500;
- font-style: italic;
-}
-@font-face {
- font-family: 'open_sansregular';
- src: url('../fonts/OpenSans-Bold-webfont.eot');
- src: url('../fonts/OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-Bold-webfont.woff') format('woff'),url('../fonts/OpenSans-Bold-webfont.ttf') format('truetype'),url('../fonts/OpenSans-Bold-webfont.svg#open_sansregular') format('svg');
- font-weight: 700;
- font-style: normal;
-}
-@font-face {
- font-family: 'open_sanslight';
- src: url('../fonts/OpenSans-Light-webfont.eot');
- src: url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-Light-webfont.woff') format('woff'),url('../fonts/OpenSans-Light-webfont.ttf') format('truetype'),url('../fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-@font-face {
- font-family: 'open_sanssemibold';
- src: url('../fonts/OpenSans-Semibold-webfont.eot');
- src: url('../fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-Semibold-webfont.woff') format('woff'),url('../fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),url('../fonts/OpenSans-Semibold-webfont.svg#open_sanssemibold') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-@font-face {
- font-family: 'open_sansbold';
- src: url('../fonts/OpenSans-Bold-webfont.eot');
- src: url('../fonts/OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/OpenSans-Bold-webfont.woff') format('woff'),url('../fonts/OpenSans-Bold-webfont.ttf') format('truetype'),url('../fonts/OpenSans-Bold-webfont.svg#open_sansbold') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-@font-face {
- font-family: 'FontAwesome';
- src: url('../fonts/fontawesome-webfont.eot');
- src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff') format('woff'),url('../fonts/fontawesome-webfont.ttf') format('truetype'),url('../fonts/fontawesome-webfont.svg#svgfontawesome-webfont') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-body {
- color: #2c3d4f;
- font-family: "open_sansregular",sans-serif;
- line-height: 1.2;
-}
-
-body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
- text-rendering: optimizelegibility;
-}
-
-body, h1, h2, h3, h4, h5, h6, p, blockquote, abbr, address, cite, del, dfn, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
- font-family: 'open_sansregular',sans-serif;
- line-height: 22px;
- font-size: 1.3rem;
-}
-
-strong, b {
- font-weight: bold;
-}
-
-a {
- color: #28a1e2;
- text-decoration: none;
- cursor: pointer;
- transition: color 0.2s ease,opacity 0.2s ease;
-}
-a:hover, a:active {
- outline: 0;
-}
-a:hover {
- color: #1a84bd;
- text-decoration: underline;
-}
-a:focus {
- outline: thin dotted;
-}
-
-em {
- font-style: italic;
-}
-
-ol, ul, dl {
- padding: 0;
-}
-
-ol {
- list-style-type: decimal;
-}
-
-code {
- font-family: "Courier New","TexGyreCursor-Regular", monospace;
- font-size: 13px;
-}
-
-code + em {
- padding-left: .4em;
-}
-
-blockquote {
- position: relative;
- z-index: 1;
- margin: 20px 0 20px 20px;
- padding: 20px 20px 20px 55px;
- border: 2px solid #dce4e5;
- border-radius: 4px;
- background: #fafbfb;
- min-height: 40px;
-}
-blockquote *:last-child {
- margin: 0;
-}
-blockquote::before {
- content: "\f0eb";
- font-family: "FontAwesome";
- font-size: 35px;
- color: #d1dadb;
- position: absolute;
- margin-left: -37px;
- margin-top: 6px;
-}
-blockquote h3 {
- margin-top: 0;
-}
-
-h1 {
- margin: 20px 0 12px 0;
- font-size: 2.4rem;
- line-height: 1.2em;
-}
-h1:first-child {
- border-bottom: 1px solid #dce4e5;
- padding-bottom: 10px;
- margin-bottom: 16px;
- margin-top: 10px;
- font-weight: 500;
-}
-h2 {
- margin: 20px 0 12px 0;
- font-size: 1.8rem;
- font-weight: 500;
-}
-h3 {
- margin: 20px 0 12px 0;
- font-size: 1.4rem;
- line-height: 1.2em;
- font-weight: 500;
-}
-h2 + h3 {
- margin-top: 12px;
-}
-h3 em {
- font-size: 12px;
- color: black;
- margin-left: .5em;
-}
-h3 code {
- margin-left: .5em;
- color: blue;
-}
-h3 a {
- color: #2d3e50;
-}
-h3 + section > p {
- margin-top: 0;
-}
-h4 {
- margin-bottom: 1em;
- font-size: 1.3rem;
- font-weight: 500;
-}
-h4 {
- font-size: 12px;
- margin-bottom: 0;
-}
-h4 + p {
- margin-top: 0;
-}
-h5 {
- font-size: 1.2rem;
- color: #808284;
-}
-h6 {
- margin-bottom: 1.5em;
- font-size: 1.0rem;
- font-weight: 700;
-}
-
-hr {
- border-bottom: 1px solid #dce4e5;
-}
-
-p {
- margin-bottom: 12px;
- margin-top: 12px;
- line-height: 22px;
-}
-
-::-webkit-scrollbar {
- width: 16px;
- height: 16px;
-}
-
-::-webkit-scrollbar-button {
- width: 0;
- height: 0;
-}
-
-::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment {
- display: block;
-}
-
-::-webkit-scrollbar-button:vertical:start:increment, ::-webkit-scrollbar-button:vertical:end:decrement {
- display: none;
-}
-
-::-webkit-scrollbar-track:vertical, ::-webkit-scrollbar-track:horizontal, ::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal, ::-webkit-scrollbar-track:vertical, ::-webkit-scrollbar-track:horizontal, ::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
- border-style: solid;
- border-color: transparent;
-}
-
-::-webkit-scrollbar-track:vertical {
- background-color: #fff;
- background-clip: padding-box;
-}
-
-::-webkit-scrollbar-track:horizontal {
- border-bottom-width: 0;
- background-color: #fff;
- background-clip: padding-box;
-}
-
-::-webkit-scrollbar-thumb {
- min-height: 28px;
- padding-top: 100px;
- background-color: rgba(0,0,0,0.2);
- background-clip: padding-box;
- -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1),inset 0 -1px 0 rgba(0,0,0,0.07);
-}
-
-::-webkit-scrollbar-thumb:hover {
- background-color: rgba(0,0,0,0.4);
- -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.25);
-}
-
-::-webkit-scrollbar-thumb:active {
- background-color: rgba(0,0,0,0.5);
- -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35);
-}
-
-::-webkit-scrollbar-thumb:vertical {
- border-width: 0;
-}
-
-::-webkit-scrollbar-thumb:horizontal {
- border-width: 0;
- border-top-width: 5px;
-}
-
-::-webkit-scrollbar-track:vertical {
- border-width: 0;
- background-color: rgba(0,0,0,0.05);
- -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,0.1);
-}
-
-::-webkit-scrollbar-track:horizontal {
- border-top: 6px;
- border-bottom: 1px;
-}
-
-::-webkit-scrollbar-thumb:vertical {
- border-width: 0;
-}
-
-::-webkit-scrollbar-thumb:horizontal {
- border-width: 0;
- border-top: 6px;
-}
-
-::-webkit-scrollbar-track:hover {
- background-color: rgba(0,0,0,0.05);
- -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,0.1);
-}
-
-::-webkit-scrollbar-track:active {
- background-color: rgba(0,0,0,0.05);
- -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,0.14),inset -1px -1px 0 rgba(0,0,0,0.07);
-}
-
-.tiny::-webkit-scrollbar-track:vertical {
- border-top: 0;
- border-right-width: 1px;
- border-bottom: 0;
- border-left-width: 6px;
-}
-
-.tiny::-webkit-scrollbar-thumb:vertical {
- border-width: 0;
- border-right-width: 1px;
- border-left-width: 6px;
-}
-
-.mini::-webkit-scrollbar {
- width: 5px;
- height: 16px;
-}
-
-.mini::-webkit-scrollbar-track:vertical {
- border-width: 0;
- background: none;
- -webkit-box-shadow: none;
-}
-
-.mini::-webkit-scrollbar-track:vertical {
- -webkit-box-shadow: none;
-}
-
-input[type='text'], input[type='password'], textarea {
- border-radius: 4px;
- display: block;
- width: 535px;
- margin-top: 20px;
- padding: 8px 10px;
- border: 2px solid #d0d4d8;
- color: #2d3e50;
- font: 400 13px "Open Sans",sans-serif;
- -webkit-appearance: none;
-}
-
-input[type='text']:disabled, input[type='password']:disabled, textarea:disabled {
- border-color: #f1f1f1;
- background: white;
- color: #969ea7;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-
-input[type='text']:focus, input[type='password']:focus, textarea:focus {
- border-color: #99cbec;
-}
-
-input[type='text'].small, input[type='password'].small, textarea.small {
- padding: 4px 10px;
-}
-
-textarea {
- height: 50px;
- overflow: auto;
- resize: vertical;
-}
-
-input[type='checkbox'], input[type='radio'] {
- position: absolute;
- margin: 0;
- clip: rect(0 0 0 0);
-}
-
-input[type='radio'] + em::before, input[type='checkbox'] + em::before {
- margin-right: 10px;
- float: left;
- display: block;
-}
-
-input[type='radio'] + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEM3NEQ4NTYzNkZEMTFFMzk0NDJDQkRFMDIxNDIzM0IiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEM3NEQ4NTczNkZEMTFFMzk0NDJDQkRFMDIxNDIzM0IiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0Qzc0RDg1NDM2RkQxMUUzOTQ0MkNCREUwMjE0MjMzQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0Qzc0RDg1NTM2RkQxMUUzOTQ0MkNCREUwMjE0MjMzQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv7e0kcAAAE/SURBVHjaYvz//z8DDBw+ccYBSOUDcQADKtgAxBNtLUwOwAQYQRoZGRkZDh0/PR/IT2BmZn4jLSH2QYCfTwWk4MvXbwxPnr/8BQRsQO4EO0vTQrBOkEagpn4g/v/g0ZPb/3GAJ89e/AepOXrq7DSwjUAOyHn75aQl78jLSqsw4AFPn79kuPfwMYjpyATyE8h5hDSBgLSkOAMHOzsDJwdHL0hjAMhPDEQCKQkxhu8/fhiBNDLAAoIYwMPNBaaZGMgETLAgJxbA1II0bgDFE7Ean714xSAowP8NpHEiKHJBQU0IgNT8+PmTQURIYDU45QCTGjjVKMnLgoMcXxxKiIm8VlNWFIMnOVCK+Pv3XyYonkBBDgs9kJ9AzgPZBNKkqqSgBlT/Aa4RBECpCBS5oHhCtg3kJ5DzJMXFEmBiAAEGAKy9qC7VhUBMAAAAAElFTkSuQmCC');
- display: inline-block;
- width: 14px;
- height: 14px;
-}
-
-@media (-webkit-min-device-pixel-ratio:2),(min-resolution:144dpi) {
- input[type='radio'] + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODdCRTY0MTIzNkZEMTFFMzgzOThERTBGQzIzNkQ4REUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODdCRTY0MTMzNkZEMTFFMzgzOThERTBGQzIzNkQ4REUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4N0JFNjQxMDM2RkQxMUUzODM5OERFMEZDMjM2RDhERSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4N0JFNjQxMTM2RkQxMUUzODM5OERFMEZDMjM2RDhERSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk+pOs8AAAKGSURBVHjavFZNTxNRFH3zHO20helgSUUsUCSKRqMsMMGFH3/AhLg3qf+g3fkvytKds3LtTwA2LtwQF34QI9EY4kKggK1Oi9V7Xt5tHhM69Gu8yc3Mm+nc03vfvec8a/31G3GKeeRF8gfkD/XatCr5KvkauX9vabEaFcyKAETgigbrxXzycifgToDL5C/MbKS0tjOu+3Us43rpVDJvWdbI7yAQP2v14MfO3t9Gs+mEsn56/+6dV90AIqsSL87a9saVuYLIjnkLUWntHxyKL9+21dWwFQItRwGaYPuzM1Pr+YsXHvVSz53dqtj8vCWOjv6cCCpDZWyD3b5x7XuvYLDseU/cuj4vbPsMPypRUsthQE/vWRvMHR2ZF31aOp0Kg/oE6pmAFW4QlHEQMBP06uVZXmY0hgLkOVMN0k8Zo8qbcUd5WUSW0pwzdOOwbSY/aS6LUjOImrPTWr8fQ4ZOIqHuk47zRGq6EhhqEZOhtLCg0bjJeyjAIHEBEjOpa6vVOieNh/m4ALmkxwYf3Cj+g7UBQcRxmRlbamZXrB8XYK3+S13BPFKLp4DExAUIQocRgzWlVmoBPQtJy1AMMbmkqWTyg9QKrQx6NmwzY07kxp/zHvr8bzj9YZWSq5YbzzaIaV5yl5a5eSCetVp98EahGIjFzVKYulSh0atK8wyCGyj12/cfBwLFt4jBqj9XmN5ynMSzsOLjwLNigvZTXnxjgk1O5AIq52N+b4d+z2ePEj54t/lJsT0kxtC1rg9RAKPslqiUG90cE32t1G0+BOuDiJkb0e4YamRlsgn2DGVEZiZYLAdhdCMahPesl5P3saM+xBN6BokxXyIbMAiGGnOG1kc3dgr2T4ABAEDBDKcTmtS9AAAAAElFTkSuQmCC');
- }
-}
-
-input[type='radio']:hover + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTBGQ0MyNDMzNzAzMTFFM0FBNjE4MUMzQzhBM0Q1MjAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTBGQ0MyNDQzNzAzMTFFM0FBNjE4MUMzQzhBM0Q1MjAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1MEZDQzI0MTM3MDMxMUUzQUE2MTgxQzNDOEEzRDUyMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1MEZDQzI0MjM3MDMxMUUzQUE2MTgxQzNDOEEzRDUyMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpQLLPoAAAFESURBVHjaYvz//z8DDCxZudYBSOUDcQADKtgAxBNjwoMPwAQYQRoZGRkZFq9YMx/IT2BlYXmjoa76QUJMVAWk4P2HjwzXbtz69e37dzYgd0JsREghXCPQpn4gu0BXW/OOvo6WCgMWcOPWHYYz5y8ysLCwTI8MCchiBNoEct5+fJrQNQOBIxPITyDnEdIEAhpqKgw83FwMvLw8vSCNASA/MRAJNNRUGT5//mIE0sgACwhigKAAP5hmYiATMMGCnFgAUwvSuAEUT8RqvHHrNoOUpMQ3kMaJoMgFBTVhTXcYvnz9xiArLbWaed3qlQ8uXb2u8OzFSwM2NjYGEWEhvHGooqTw2kBX2xqe5Jav2TDtz58/maB4AgU5LPRAfgI5D2QTSJOFqbEaUP0HuEYQAKUiUOSC4gnZNpCfQM5TU1FKgIkBBBgA30mKQOX7OioAAAAASUVORK5CYII=');
- display: inline-block;
- width: 14px;
- height: 14px;
-}
-
-@media (-webkit-min-device-pixel-ratio:2),(min-resolution:144dpi) {
- input[type='radio']:hover + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTZDRTVDM0MzNzAzMTFFM0E0QkJBRDgwNDk0NzVCMjEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTZDRTVDM0QzNzAzMTFFM0E0QkJBRDgwNDk0NzVCMjEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1NkNFNUMzQTM3MDMxMUUzQTRCQkFEODA0OTQ3NUIyMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1NkNFNUMzQjM3MDMxMUUzQTRCQkFEODA0OTQ3NUIyMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuKkd8EAAAKgSURBVHjavFZNaxNRFH3zbBsxk2ZKHQc1akspoVTC0BqsGy2iuBKKCrqwEP9BsvNfpEt3DgjiwoV7QWwRiuCiCGIRQegXfoCJoI1tLO0747vxdmgmn+OBR/KSzD255917zzMePXkqGsBSK6fWJbWm9Z6jrNZLtebV8u7evlkOC2aEECJwUZO1Ak+tQj3ieoQzaj3k2RyScsNx7JXjjmMNWMmUYRjmz1+b4nuptLWytr5bqfw+HMj63uydW8+aIURWedrEYrGlqeyEOHXyhBuW1pev38Tbd+/9V4Y5RVoII+RkPybdzMJYevR6K3qurm+IxddvxHa1eiCpDMhYI7t2Zfpzq2SAUkJcvXxR9PX20kd5ldRMkNDSZ1YjswcH06JNDFhWkNRTpBYnLFKBQMZOyDjphfPnaJvUHD4h9ZlfIO3IGCavc8ymbQ5ZSt5nqMZuIzM+xrc5qSeI32eNSr8dIEMzfsR/n0iYs1KPK4GmFhEhpaQFKpuVs3SGAhMkKkIUEPBnZ6dP/vswmYqKkCTd1/iYjeI/oEaIQRwVeGypJ7s/9aMiLJX/OhUmj9TmKWAxURGuqYEO2PbRqtROLeBnAWvpChCTJLWS/ctSO7QP+Fm3wWOODA89oDP06N+s6vS7AcQi1YbPnN7uT5iPqUoLVDwwTzrkTgsFsahY3Mx4UbVeWfI7CN7AqZ+/WOiIFM8iBrl+dtL9ZMbj94OOjwvPHCdtR148w8nSoyNbSs4b9H1P4Pd098jjgflXi/60h8UwX2v6EgWy7IQ7paRcauaa6Gmnrs1DTH0MYpqNKHfIhz7j0wRnBhmRGSc7KEMu7xC/CCPg8oePDSVFNaJA6MyC6Al5lgoJMudgnvAzWAz/EbLBBEFTo89Q+qjGekH3BBgA+oAQ7g67OpEAAAAASUVORK5CYII=');
- }
-}
-
-input[type='radio']:checked + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUMxOTMzNUIzNzAyMTFFMzlEOEJBOTI5RjBDQUIxNDAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUMxOTMzNUMzNzAyMTFFMzlEOEJBOTI5RjBDQUIxNDAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQzE5MzM1OTM3MDIxMUUzOUQ4QkE5MjlGMENBQjE0MCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQzE5MzM1QTM3MDIxMUUzOUQ4QkE5MjlGMENBQjE0MCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgWYAPEAAAEuSURBVHjaYmRAAqbTbzsAqXwgDmBABRuAeOLpTNUDMAFGGMNpzs35n38zJUjysjJE6vEzqAmzg8Vvvf3JsPzSR4bnn3+DuBOAmguRbeoH4v/LL73/jwuA5EBqQGrBNkKdt7/IWoQhQlcAbNDnX/8Ybr/5CWarirAz8LIxgdkrLn9g6Dv6BsR0ZAH5CeQ8mKZzz74zlO58zvD55z8wn5ediaHbXZLBSIoTrAbq7HyQUQEgP8FsQtYEFvsJFfsFEYOqDQC7ARYQIOcha0LWDHM6TC0TA5mACRbk8IBgxzQLJAaSQ1YLUrVhy83PEAXA0Cu0EkXRDGKDxaAhCwockB5QqE689eZnACioQaHmo87LYK/IjTM6oAlhIiwBzCc5ASCnHiBVQGySYyQ3kQMEGACuVtaOj7FvoAAAAABJRU5ErkJggg==');
- display: inline-block;
- width: 14px;
- height: 14px;
-}
-
-@media (-webkit-min-device-pixel-ratio:2),(min-resolution:144dpi) {
- input[type='radio']:checked + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjgxQUExRDYzNzAyMTFFMzg1RTZDMkYzMEQ0QzNDOTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjgxQUExRDczNzAyMTFFMzg1RTZDMkYzMEQ0QzNDOTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCODFBQTFENDM3MDIxMUUzODVFNkMyRjMwRDRDM0M5MCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCODFBQTFENTM3MDIxMUUzODVFNkMyRjMwRDRDM0M5MCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuFdyXMAAAKkSURBVHjaxFY9aBRBFH47yXlKWFljQC42pjB2Fp42NhuxsRLtLCz2QIt0nmArmlbw0qVQyHVaBCJiYSO5bWw0KbRKLCKIOZQYD5eg55mN8y0zxzCZ2R9P9INl/96+b9+8N997DmXgzNw7b7S8E2x1h3x+O8UPTzPp8KPFbUJu03w1fbyT5s9JI3JLcaMXO8GPHYfyYP/QLpXYbjPqsbqN2LGQXeKneTWailsif2KExt1hmjxcTp6tfenSRvSLwvVtakc9PeoaJ32SSXj+4WrjW4/dkPfV8QN0/fQoneLnNKxsfKcHr7domZ8lDpbi2RfXTtSthCqZW2Z0+9wR8o+NUBGE77dpZukTRd1YPrrLI72zh1As46Ikm7t4tL90RYGlnn76USW9LJfXkQXCT+vI2aBkFlLkdAKFxMT7hiwQLKONLPoZ07PVKMkVDlzjmQnwAV8CnuAgR0T3VRYIojNBkphw5aRHN8+OGd8hSqWQDiHCQN6hGk24uvDBSgY8ftNJbEzQfAYg9OU+M5X+/ZebtLbZzc4Zt4GtDviEbwGfCblKNrUpZ/j7vICtKaeK7ykmi8VUKFCQojB9o/j2ZJUmkqVDk6tcMH2j+mb0j9EnhAjrUJKdG6ZvVN9MqECiDDqqGYJtgqn4FN+J0rRsya7wtcemzgvYuvtYWiG18DaUyV5RWou6cSfHsnUVNibhgE+lkEIQNuXdo7d79xz+GHKXFinewcYUnaZQTdkt5qXE3btQsfbANk/+svLHKJBqoiTD1t5463m7T8a7Re3/tCcx8NQSOeMGM0ufjVVbhAw+lAZck0OVow1P6Fl/e8SY5WR16xClkg46ROlkfzQmIrdSG6EgWL6BxkR1EBZjQVAwhdhmxQZhA3EgGrV11BcCkjnq/xZgAMwXXq4ujgLKAAAAAElFTkSuQmCC');
- }
-}
-
-input[type='radio']:disabled + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RDUyMzI1NjUzNzAyMTFFMzg5MEVGRTQxQUIwMDJEQkQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RDUyMzI1NjYzNzAyMTFFMzg5MEVGRTQxQUIwMDJEQkQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENTIzMjU2MzM3MDIxMUUzODkwRUZFNDFBQjAwMkRCRCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENTIzMjU2NDM3MDIxMUUzODkwRUZFNDFBQjAwMkRCRCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoRapA0AAAE0SURBVHjaYvz//z8DDBw+cUYBSFkAsQYDKrgBxCdsLUwewAQYQRoZGRkZDh0/HQDkGzAzM3+TlhD7IcDPJwRS8OXrN4Ynz1/+/fXrFzNIs52l6Q64RqBNHiCb5KQl38nLSgsxYAFPn79kuPfwMQMzM9NpazPjrYxAm0DOS8CnCV0zECxgAtkEch4hTSAgLSnOwMHOzsDJweEO0qgB8hMDkUBKQozh+48fkiCNDLCAIAbwcHOBaSYGMgETLMiJBTC1II03QPFErMZnL14xCArw/wZpPAGKXFBQEwIgNT9+/mQQERK4ygRNRhdA8YNPMywOJcREvkqKi22AJ7mjp856//37zxQUT6Agh4UeyE8g54FsAmlSVVKYDFT/A64RBECpCBS5oHhCtg3kJ5DzQDbBxAACDABs9IlwG1gmHgAAAABJRU5ErkJggg==');
- display: inline-block;
- width: 14px;
- height: 14px;
-}
-
-@media (-webkit-min-device-pixel-ratio:2),(min-resolution:144dpi) {
- input[type='radio']:disabled + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTJDREYxNDYzNzAyMTFFM0JBQjQ4QzVCRUVBQ0I1NTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTJDREYxNDczNzAyMTFFM0JBQjQ4QzVCRUVBQ0I1NTkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFMkNERjE0NDM3MDIxMUUzQkFCNDhDNUJFRUFDQjU1OSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFMkNERjE0NTM3MDIxMUUzQkFCNDhDNUJFRUFDQjU1OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PtqgBuMAAAJxSURBVHjavFbPTxNBFJ4dVjttZQu2qRVBikSpMYEeIKkHPXPkD/Qf8OaxB09eINFDg4k/iFFJjOEAIkLLtrSN75vM2wwTu9Af65dMdrftvq/vzfe+N96b7bfiCihaVVpls5TzfUjru1mNZ7X1MC6YF0OIwJuGbBg0aNUHEQ8irNDasrOR0jvNBcHJbC5Q2Uw68DzvZthui7Nmq3t4dCw6Fxe+k/Wr5083Pl2HEFnV+OGG7x88XC6L/OxMKS6tkz+nYv/HT321sEOk9ThCmyxcWlzYn797Z2WYeh79+i32vn4T3W7vn6TSKWNEtvakcjYsGZC/PSNWH68I35/ij2qUVMUlVGbPIrJg+lZBjIhsNuOSbhGpsgk3WSAo4zhkNumjB0uu4jUh95kWyChljCtvLpjmxyqylHafQY2TxuL8nP1YlcY9dJ9dJf1RgAxVKqXv00qtRYRoapEQUFqg3ekUeQ8FHCQpQnImfe33+1PS+jBIipBLeqnx4Y3iPyAihBEnBTu2NM6uXT8pwmbrXF/hPNIMToERkxRg6AA5WC8ixDxzRstEgJhc0kw6fSjNhNbAPJs07JilYuEd72GD/w2nP6lSctWKhXyPnOY9q7TO4sHwbDZb4wuFYiAWi6W8cG+bWi+U9hkEN5jUux8/j0WKdxGDp/5y+f6xUqnX7sTHgWfHJh2lvHjHJpsrFbtUzpf8ve/8ns8eNbzwYe+LdnuMGGuuXfsQBTLK7gWV8mDoYyL8EK4PI2ZvhNzR1MjKdhPsGcqIzGyyRA7CUCMEwnvmwo+zQCMklLmK4Yl5hhFzKQBlAwdBU6PPIH2ocVDQvwIMACEDCsK2Sn34AAAAAElFTkSuQmCC');
- }
-}
-
-input[type='checkbox'] + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3MzU1ZDgwZS1jM2JiLTU5NDUtYmM4YS1lYWUxOTEwNzA3ZGIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEZCOUU0NTcwMENGMTFFMzhCQ0Y5ODg0ODYyQUY2QUQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEZCOUU0NTYwMENGMTFFMzhCQ0Y5ODg0ODYyQUY2QUQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmNjYmE0YmRjLWY5ZjktNjI0My1hMTYxLTFjMjcwZmE2MjgwMyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3MzU1ZDgwZS1jM2JiLTU5NDUtYmM4YS1lYWUxOTEwNzA3ZGIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5a7acOAAAAWklEQVR42mI8cPSUJwMDw1wglmQgDJ4DcTIDUNOzN2/f/ycGgNSB1DOBbBAWEmAgBkDVSTIxkAFGNQ2Ipudv338gSjFU3QsWIJFy5fptUNqTIELfUyBOAwgwACnqQ3OQ508hAAAAAElFTkSuQmCC');
- display: inline-block;
- width: 13px;
- height: 13px;
-}
-
-@media (-webkit-min-device-pixel-ratio:2),(min-resolution:144dpi) {
- input[type='checkbox'] + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzM5NzdBMTUzNkZBMTFFM0IwMzc5MzI3QkM2MzIzQjkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzM5NzdBMTYzNkZBMTFFM0IwMzc5MzI3QkM2MzIzQjkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3Mzk3N0ExMzM2RkExMUUzQjAzNzkzMjdCQzYzMjNCOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3Mzk3N0ExNDM2RkExMUUzQjAzNzkzMjdCQzYzMjNCOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pg3POwcAAACqSURBVHjaYmQAggNHTwYAqX4gVmCgLngAxIUO1uYbGKGWrGegLQhkgfqEgYebi0FeVppBREiQKia/efee4eHjpwxfvn4DcfuZYMFFTUtAAGQWyEwoUGBClqA2QDaTiYFOYNSiUYtGLRq1aNSiUYsGlUWgOp7aANlMJmiTCNyQoKZlsMYJrNkFagUVgppboNbK1Ru3aRVyhUygxh2o3QXzGQ0akIEgOwACDADXpDQRgzMqZAAAAABJRU5ErkJggg==');
- }
-}
-
-input[type='checkbox']:hover + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2lpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3MzU1ZDgwZS1jM2JiLTU5NDUtYmM4YS1lYWUxOTEwNzA3ZGIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MjY5RjlBMTUyMTIyMTFFMzgyREVGOEJBQzE1RDE0RTgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MjY5RjlBMTQyMTIyMTFFMzgyREVGOEJBQzE1RDE0RTgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjBGQjlFNDU2MDBDRjExRTM4QkNGOTg4NDg2MkFGNkFEIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjBGQjlFNDU3MDBDRjExRTM4QkNGOTg4NDg2MkFGNkFEIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+uRBmmQAAAGhJREFUeNpiXLxijScDA8NcIJZkIAyeA3EyC0iDi72tJBMTE0Ed//79k9xz8PBckCZJbm4uBhKAJEgTAy8vDymaGJgYyACjmijV9Pzt+w9EKYaqewGK3JTtu/aC0p4EEfqeAnEaQIABAJJDGD/xRTxSAAAAAElFTkSuQmCC');
- display: inline-block;
- width: 13px;
- height: 13px;
-}
-
-@media (-webkit-min-device-pixel-ratio:2),(min-resolution:144dpi) {
- input[type='checkbox']:hover + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MjhCRkMwRUIzNkZDMTFFMzlCQTBGQTA2RTYzNjFDODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MjhCRkMwRUMzNkZDMTFFMzlCQTBGQTA2RTYzNjFDODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyOEJGQzBFOTM2RkMxMUUzOUJBMEZBMDZFNjM2MUM4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyOEJGQzBFQTM2RkMxMUUzOUJBMEZBMDZFNjM2MUM4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqYfTakAAAD0SURBVHjaYly8Yg0DEAQAcT8QKzBQFzwA4sKY8OANjECLQJasZ6AtCGSB+oSBm4uTQVpSnEFIgJ8qJr/78JHh6fOXDF+/fQdx+1lgwaWqrMggJiLMwMjISBWL+Pj4GLi4uBguXL4G4iqwwCQU5eWoHl6K3NwwixjgFrGzs1PNNzDw//9/OBtuEQsLC01TAxMDncCoRaMWjVo0atGoRUPRIngl9ODRYwZZaSmqGv746TMUi0BNIoXLV28w/Pn9m0FSQpwqljx/8ZLh+q27cH+ALCoENbc+fvrEcOLMeVqFXCEojjaA2l1Qn1EbgMwMBDUgAQIMAPA6O5REYElEAAAAAElFTkSuQmCC');
- }
-}
-
-input[type='checkbox']:checked + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2lpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3MzU1ZDgwZS1jM2JiLTU5NDUtYmM4YS1lYWUxOTEwNzA3ZGIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODM0QjdFMTczMEJFMTFFM0JFRkQ4QTVEMDhDRUZDRkYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODM0QjdFMTYzMEJFMTFFM0JFRkQ4QTVEMDhDRUZDRkYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjI5RjE1MTU2MDBDRjExRTNBMTA4QkExODBFOEFCQTk5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjI5RjE1MTU3MDBDRjExRTNBMTA4QkExODBFOEFCQTk5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+4CXZrQAAAStJREFUeNpiNJ1xO5yBgWEqEAszEAZvgTibiQQNDFB1U5mI0WAuw8VQbC3CwMXKBNbIQkiDLD8rQ6ebBFjD4QffGE49/cbAhE8DKxMjQ6szRMO5598Zzjz7BhYHa+JgYWTQEGXH0JRlLgwW//TzL0Pd3pcM//4zIDQVWIowLAqSZaixF2NgAZoOApayXAzRegJgdtOBVwyvvv6BGwbWdPbZd7Apfhp8DP2ekgxyQH80OImDFay68pHh0IOvKC5gBMYT2FJrOW6GdlcJsFP/AE0A2Xj77U+GxPVPGH79/Y+iCR4QRx99ZUjb9ITh7be/YA0//vxnqN7zEkMDCKAE+Y3XPxmSNjxmyDQVZth77wvDgw+/sIYqyHlvSEgR4KQEcl42NE0xEJv2AAIMABKPX8iefR+CAAAAAElFTkSuQmCC');
- display: inline-block;
- width: 13px;
- height: 13px;
-}
-
-@media (-webkit-min-device-pixel-ratio:2),(min-resolution:144dpi) {
- input[type='checkbox']:checked + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjUzRERFNUIzNkZBMTFFM0IzM0Y4ODE2QzNFNzYwNUYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjUzRERFNUMzNkZBMTFFM0IzM0Y4ODE2QzNFNzYwNUYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCNTNEREU1OTM2RkExMUUzQjMzRjg4MTZDM0U3NjA1RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCNTNEREU1QTM2RkExMUUzQjMzRjg4MTZDM0U3NjA1RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Po0EycUAAAHLSURBVHjaYmQAAtPptwOAVD8QKzBQFzwA4sLTmaobGKGWrGegLQhkgvqE1qCfiQbBhQ0oMFHTNEleVgZjKU4wjQ5YqGWJmgg7w3Q/aQZeNojbS3c+Zzh4/ytcnio+4mVnYuh2l4RbAgI+6nwoaqhiUZ2jODC4UAPn889/1LUI5HJ7BW5US379Y+g/9pp6FoHipdBaBEO8bMdz6vqozlEMJV5AYMXlDwxnn33Hn+pASdMIiEFeX3HpA15LioA+URNmRxG79fYnQ9/RN1jVs6AnT0TY8zJkbnqKEQQgYK/IzRChK4ARL6U7XuB0GNzf6BEKci3IYvTMB0rKoFSGDpr2v2R4/vk3YYsOPviKGdlAy5aEyoJ9CwPo+QUEttz8jJI58Vp0681PoKteYWZGoKEgn4GCK9VECByH6PGCnpSxAVA18R89QXR5YLoaF4hZ8xjsSEIAwzRQ0gQngl//CGruO/aGKEtw5iOQ5oClD8DBgguA4pRQFiAqw4KSNchn2BIJyLegVEYKwBsRIMtKgcUJKFURKmJITgy4AKzUOAeMQ2xFDCFAdMV3lkwLkIPuAR3aDA9AFhXSwaJCJlDjDtTuopHPQGYGguwACDAAfSOxl+vjYswAAAAASUVORK5CYII=');
- }
-}
-
-input[type='checkbox']:disabled + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzAwMDZCMDEzMEMwMTFFMzkyMThBOENGRDA3Nzg4MzEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzAwMDZCMDAzMEMwMTFFMzkyMThBOENGRDA3Nzg4MzEiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjZDQzkzNzM4MjQyMzExRTNBNThERTM3MDlFMDIyN0VCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjZDQzkzNzM5MjQyMzExRTNBNThERTM3MDlFMDIyN0VCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+bgUF4AAAAGRJREFUeNpiPHjstC4jI6Pvv3//2BgIACYmpl/////fzMLIyOCrpa7MJiwoQEgPw9v3H9iu3bzry/Tv33+iNIAASB3IRUwMZIBRTfTXBEoawJgmSjFIHUg9CygtgZIGKWkPIMAA7swtf4wqKJsAAAAASUVORK5CYII=');
- display: inline-block;
- width: 13px;
- height: 13px;
-}
-
-@media (-webkit-min-device-pixel-ratio:2),(min-resolution:144dpi) {
- input[type='checkbox']:disabled + em::before {
- content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDUzM0FCMzMzNkZCMTFFM0I5NjJFMjE3Q0VENzFGMjEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDUzM0FCMzQzNkZCMTFFM0I5NjJFMjE3Q0VENzFGMjEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowNTMzQUIzMTM2RkIxMUUzQjk2MkUyMTdDRUQ3MUYyMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowNTMzQUIzMjM2RkIxMUUzQjk2MkUyMTdDRUQ3MUYyMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnZx0G4AAACfSURBVHjaYmQAggNHT2oAKQ8gFmCgLvgAxDscrM1vMEItiWCgLVjBAvUJAw83F4O8rDSDiJAgVUx+8+49w8PHTxm+fP0G4nowwYKLmpaAAMgskJlQIMCELEFtgGwmEwOdwKhFoxaNWjRq0ahFoxYNKotAdTy1AbKZTNAmEbghQU3LYI0TWLML1AraAWpugVorV2/cplXI7WCkVwMSIMAAvE00a22SwYYAAAAASUVORK5CYII=');
- }
-}
-
-/* tables */
-table {
- width: 100%;
- margin: 20px 0;
- text-align: left;
- border-collapse: collapse;
- border-bottom: 2px solid #ecf0f1;
- font: 400 12px "open_sansregular",sans-serif;
- border-left-width: 0;
- border-right-width: 0;
-}
-table tr {
- border-left-width: 0;
- border-right-width: 0;
-}
-table th {
- padding: 6px 15px;
- border-top: 2px solid #ecf0f1;
- border-bottom: 2px solid #ecf0f1;
- color: #969ea7;
- font-family: "open_sanssemibold",sans-serif;
- font-size: 10px;
- text-align: left;
- text-transform: uppercase;
- background: #f5f7f8;
- vertical-align: middle;
- line-height: normal;
- border-left-width: 0;
- border-right-width: 0;
-}
-table td {
- border-top: 2px solid #ecf0f1;
- padding: 10px 15px;
- vertical-align: middle;
- font-size: 1.2rem;
- line-height: normal;
- border-left-width: 0;
- border-right-width: 0;
-}
-table td h2, table td h3, table td h4, table td h5 {
- font-weight: 500;
- margin: 0;
-}
-
-/* code blocks*/
-.prettyprint {
- margin: 20px 0 20px 20px;
- padding: 10px 14px;
- border: 2px dashed #dbe3e4;
- background: #fbfdfe;
-}
-.prettyprint code {
- display: block;
- overflow-x: auto;
- padding: 0;
- line-height: 22px;
-}
-.prettyprint code .hljs {
- background-color: transparent;
-}
-
-pre .nocode { background-color: transparent; color: #000; }
-pre .str, /* string */
-pre .atv { color: #2db245; } /* attribute value */
-pre .kwd { color: #ff3399; } /* keyword */
-pre .com { color: #9933cc; } /* comment */
-pre .typ { color: #000; } /* type */
-pre .lit { color: #0099ff; } /* literal */
-pre .pun { color: #333; } /* punctuation */
-pre .pln { color: #3e526b; } /* plaintext */
-pre .tag { color: #3e526b; } /* html/xml tag */
-pre .atn { color: #3e526b; } /* attribute name */
-pre .dec { color: #3e526b; } /* decimal */
-
-/* Header */
-#page-header {
- height: 40px;
- background: #2d3e50;
- padding: 0 30px;
- -webkit-box-shadow: 0 2px 2px -2px rgba(0,0,0,0.52);
- font-size: 1.2rem;
-}
-
-.main-navigation, .main-navigation h1, .main-navigation ul, .main-navigation li, .main-navigation div, .main-navigation a, .main-navigation span, .main-navigation h1 i {
- float: left;
- line-height: 40px;
- font-family: 'open_sansregular',sans-serif;
- font-size: 14px;
- height: 40px;
-}
-
-.main-navigation li {
- list-style-type: none;
-}
-
-.main-navigation li a {
- color: #fff;
-}
-.main-navigation li:last-child a {
- color: #fff;
-}
-.main-navigation .logo {
- display: block;
- float: left;
- padding: 0;
- color: #ccc;
-}
-.main-navigation .logo em, .main-navigation .logo i {
- background: url('../images/tap-logo.png') 0 center no-repeat;
- background-size: 14px 14px;
- display: inline-block;
- width: 14px;
- height: 13px;
- margin-right: 6px;
- margin-top: 13px;
- margin-bottom: 13px;
- float: left;
-}
-.main-navigation .logo span {
- transition: opacity .25s ease-in-out;
- -moz-transition: opacity .25s ease-in-out;
- -webkit-transition: opacity .25s ease-in-out;
-}
-.main-navigation .logo strong {
- color: #fff;
- font-family: 'open_sansbold',sans-serif;
- font-weight: normal;
-}
-.main-navigation li::before {
- content: "";
- display: block;
- float: left;
- height: 40px;
- width: 12px;
- background: url('../images/nav-arrow.png') no-repeat center center;
- background-size: 12px 40px;
- margin: 0 14px;
- position: relative;
-}
-.main-navigation li a:hover, .main-navigation a.logo:hover {
- color: white;
- text-decoration: none;
-}
-
-/* Footer */
-footer {
- padding: 0 20px 0 0;
- height: 42px;
- line-height: 42px;
- text-align: right;
- background: #f5f7f8;
- border-top: 1px solid #dce4e5;
- font-size: 1.3rem;
-}
-footer > p {
- line-height: 1.2em;
- margin: 1em;
- display: inline;
-}
-
-/* Nav */
-#page-nav {
- background: #f5f7f8;
- border-color: #dce4e5;
-}
-
-#page-nav .k-icon {
- background-image: none;
-}
-
-#page-nav .k-item {
- padding: 6px 0 6px 15px;
- line-height: 20px;
- font-family: "open_sanssemibold",sans-serif;
- -webkit-user-select: none;
- -moz-user-select: none;
- user-select: none;
- cursor: pointer;
- font-size: 1.4rem;
-}
-#page-nav .k-item .k-item {
- padding-top: 2px;
- padding-bottom: 2px;
- font-size: 12px;
-}
-#page-nav .k-item .k-item .k-plus:before,
-#page-nav .k-item .k-item .k-minus:before {
- font-size: 12px;
- left: 3px;
-}
-
-#page-nav .k-in,
-#page-nav .k-in.k-state-hover,
-#page-nav .k-in.k-state-focused,
-#page-nav .k-in.k-state-selected {
- border-color:transparent;
- background-color:transparent;
- cursor: pointer;
-}
-#page-nav .k-in.k-state-hover {
- text-decoration: underline;
- color: #000;
-}
-
-#page-nav .k-in,
-#page-nav .k-in > a {
- font-family: inherit;
- font-size: inherit;
- cursor: inherit;
- border: 0;
- color: #2d3e50;
-}
-
-#page-nav .k-plus,
-#page-nav .k-minus {
- position: relative;
-}
-#page-nav .k-plus:before {
- content: "\F114";
- font-family: "FontAwesome";
- width: 13px;
- display: inline-block;
- font-size: 13px;
- position: absolute;
- top: 8px;
- left: 0;
-}
-#page-nav .k-minus:before {
- content: "\F115";
- font-family: "FontAwesome";
- width: 13px;
- display: inline-block;
- font-size: 13px;
- position: absolute;
- top: 8px;
- left: 0;
-}
-
-#page-nav .k-in a {
- margin: -1px -.3333em -1px -.25em;
- display: inline-block;
- font-size: 12px;
- word-break: break-word;
- color: #2d3e50;
- line-height: 20px;
- padding: 0 12px 0 3px;
-}
-
-#page-nav .k-state-selected {
- background-color: #00b312;
-}
-
-#page-nav .k-state-selected,
-#page-nav .k-state-selected a {
- background-color: #fff;
- color: #28a1e2;
-}
-
-/* Top */
-#page-top {
- width: 100%;
- background: #F5F7F8;
- border-bottom: 1px solid #dce4e5;
- padding: 10px 1em 10px 3em;
- margin: -15px -1em 0 -3em;
- box-sizing: content-box;
- zoom: 1;
-}
-#page-top:before,
-#page-top:after {
- content: "";
- display: table;
-}
-#page-top:after {
- clear: both;
-}
-
-/* Breadcrumb */
-#page-breadcrumb {
- width: 75%;
- margin: 0;
- float: left;
- padding: 5px 0;
-}
-#page-breadcrumb ul {
- list-style: none;
- padding: 0;
- color: #576573;
- overflow: hidden;
- font-size: 13px;
- display: block;
-}
-#page-breadcrumb ul > li {
- float: left;
- margin: 0;
-}
-#page-breadcrumb ul > li:after {
- content: ">";
- margin: 0 8px;
- font-family: 'open_sanssemibold',sans-serif;
-}
-#page-breadcrumb ul > li:last-child {
- font-family: 'open_sanssemibold',sans-serif;
- color: black;
-}
-#page-breadcrumb ul > li:last-child:after {
- content: "";
- margin: 0;
- font-family: 'open_sanssemibold',sans-serif;
-}
-#page-breadcrumb ul > li a {
- color: #576573;
-}
-
-#page-inner-content {
- height: calc(100% - 82px); /* height of header and footer */
-}
-
-#page-top #page-search {
- width: 25%;
- max-width: 400px;
-}
-
-/* article styles */
-article h1 a,
-article h1 a:hover,
-article h2 a,
-article h2 a:hover {
- color: #2d3e50;
-}
-article p, article li {
- color: #666;
-}
-article ul {
- margin: 10px 10px 10px 34px;
- list-style: disc outside;
-}
-
-article img {
- max-width: 100%;
- height: auto;
-}
-
-.k-tabstrip {
- border: 0;
-}
-
-.k-tabstrip .k-item {
- border-width: 0 1px 0;
- border-color: #dce4e5;
- background-color: #F5F7F8;
- padding-bottom: 0;
- margin-right: 2px;
-}
-
-.k-tabstrip .k-content {
- border: 2px dashed #dbe3e4;
- background: #fbfdfe;
-}
-
-.k-tabstrip .k-content pre {
- border: 0
-}
-
-.k-tabstrip .k-tabstrip-items .k-state-active {
- background: #2d3e50;
- border-color: #2d3e50;
- margin-bottom: 0;
-}
-
-.k-tabstrip .k-tabstrip-items .k-state-active .k-link {
- color: #fff;
-}
diff --git a/build/_assets/stylesheets/variables.css b/build/_assets/stylesheets/variables.css
new file mode 100644
index 000000000..0de893718
--- /dev/null
+++ b/build/_assets/stylesheets/variables.css
@@ -0,0 +1,49 @@
+/*noinspection CssInvalidFunction*/
+:root {
+ --light: 255,255,255;
+ --dark: 0,39,52;
+
+ --hs-neutral: 197,11%;
+ --gray: 0,0%;
+
+ --color-light: rgb(var(--light));
+ --color-dark: rgb(var(--dark));
+
+ --color-secondary: #455B66;
+ --color-accent: #3D5AFE;
+ --color-green: #11CC71;
+ --color-source-green: #5DB240;
+ --color-purple: #EBEEFF;
+ --color-error: red;
+
+ --border-purple: #E1E4F8;
+
+ --color-progress-green: #5CE500;
+
+ --background-base: #F8FAFD;
+ --background-special: #F2F4FA;
+
+ --background-light: var(--color-light);
+ --background-accent: var(--color-accent);
+ --background-dark: var(--color-dark);
+ --background-secondary: var(--color-secondary);
+ --background-purple: var(--color-purple);
+ --background-green: var(--color-green);
+
+ --transparent-dark-02: rgba(var(--dark), .02);
+ --transparent-dark-05: rgba(var(--dark), .05);
+ --transparent-dark-10: rgba(var(--dark), .1);
+ --transparent-dark-15: rgba(var(--dark), .15);
+ --transparent-dark-20: rgba(var(--dark), .2);
+ --transparent-dark-50: rgba(var(--dark), .5);
+ --transparent-dark-60: rgba(var(--dark), .6);
+ --transparent-dark-70: rgba(var(--dark), .7);
+ --transparent-dark-90: rgba(var(--dark), .9);
+
+ --transparent-white-10: rgba(var(--light), .1);
+ --transparent-white-20: rgba(var(--light), .2);
+ --transparent-white-50: rgba(var(--light), .5);
+ --transparent-white-70: rgba(var(--light), .7);
+ --transparent-white-80: rgba(var(--light), .8);
+ --transparent-white-90: rgba(var(--light), .9);
+}
diff --git a/build/_includes/feedback-form.html b/build/_includes/feedback-form.html
index e37c1b3ac..eedd7453b 100644
--- a/build/_includes/feedback-form.html
+++ b/build/_includes/feedback-form.html
@@ -1,113 +1,116 @@
-
-
- {% javascript feedback-form %}
-
-
-