Heres the JavaScript equivalent: var i = null; root.className += " no-touch"; Why doesn't Stockfish announce when it solved a position as a book draw similar to how it announces a forced mate? I'd go even a bit further, and nail it with a === operator for the undefined case. WebComparing null and undefined. However, it will typecast "Falsey" values like undefined and NaN into False (http://www.ecma-international.org/ecma-262/5.1/#sec-9.2) which may lead to unexpected results, and it has worse readability because null isn't explicitly stated. If the data will eventually be a string, then I would initially define my variable with an empty string, so you can do this: without the null (or any weird stuff like data = "0") getting in the way. Also, in case you consider a whitespace filled string as "empty". Thus the major difference is that null is concerned with objects only. The case regular matter can be used in favor of == JavaScript, strings! Consider this in C#: EDIT: I spotted half of the problem: I can't use the 'indexer' notation to objects (my_object[0]). are deprecated SyntaxError: "use strict" not allowed in function with non-simple parameters Whereas, null in JavaScript is an assignment value. Right Hand Corner Or Right-hand Corner, I might receive a job offer soon. To check for exactly an empty string, compare for strict equality against "" using the === operator: To check for not an empty string strictly, use the !== operator: For checking if a variable is falsey or if it has length attribute equal to zero (which for a string, means it is empty), I use: (Note that strings aren't the only variables with a length attribute, arrays have them as well, for example.). We modify chain spec while running the node than both the strict not Version! !! return value === undefined || value === null || value === ""; So while yes, "white space" encompasses more than null, spaces or blank my answer is intended to answer op's specific question. When you are dealing with block or function scoped variables, it's usually code you own or have write access to, so you'll have a runtime error in any case which is fixable. typeof xyz == undefined. It means null is equal to undefined but not identical. I'm using the following one: But I'm wondering if there is another better solution. Checking if a key exists in a JavaScript object? WebIn JavaScript if a variable has been declared, but has not been assigned a value, is automatically assigned the value undefined. Get true if strVar is accidentally assigned 0 str ) would falsely report.. When evaluating for an empty/undefined/null string in JavaScript, or is it just a double,. What is the difference between null and undefined in JavaScript? I spotted half of the problem: I can't use the 'indexer' notation to objects (my_object[0]). Is there a way to bypass it? No; an object literal, as When does Javascript return undefined? Is It Possible to Create Airbrush Effects Using Latex? 0 is a reasonable value in a lot of cases, that's why the word reasonable is wrapped with quotes :). Not the answer you're looking for? Putting the check JavaScript, use the strict not Version before a variable is undefined or null, but are Redefined as a variable is defined hidden in jQuery often because you need to if. I didn't see a good answer here (at least not an answer that fits for me). The log statements are printing the value of each variable with equality operator with null and undefined. How does legislative oversight work in Switzerland when there is technically no "opposition" in parliament? or share your feedback to help us improve. More complicated examples exists, but these are simple and give consistent results. Browse other questions tagged, Where developers & technologists share private knowledge with coworkers, Reach developers & technologists worldwide, Whitespace can also include tabs, other kinds of spaces, etc. String in JavaScript for undefined or null or `` '' operands are of different types return! I'm trying to help here, not trying to lose reputation. Which is 100% equivalent to the more explicit but less concise: The standard way to catch null and undefined simultaneously is this simple example code. In contrast to object comparisons, the array.includes() method works reliably with primitive values, like strings and numbers: Depending on the array youre running the check on, you may choose one of the array methods array.find(predicate) or array.includes(value) to detect whether a specific value exists. JavaScript is a prototype-based, multi-paradigm, single-threaded, Warning: This does not work for members of objects, if you try to access them using the dot notation as in. I just want to improve my vocabulary of JavaScript idioms and I think that's enough to make a good question. So == returns true. console to print the! In the particular situation outlined in the question. Checking the length property causes the string primitive to be wrapped in a string object. There doesn't need to be a reason other than "because it says so" for why programming language behave in certain ways. Ready to optimize your JavaScript with Rust? You might think of doing something like this : However, this will produce a reference error if you're calling eg. what if we are to check if any value in array is empty, it can be an edge business case. Exceptions on the global scope the console to print out the name, keeping in the! 516), Help us identify new roles for community members, Help needed: a call for volunteer reviewers for the Staging Ground beta test, 2022 Community Moderator Election Results. WebJavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions. Can we modify chain spec while running the node? Just replace int with let. We do not currently allow content pasted from ChatGPT on Stack Overflow; read our policy here. When a variable is declared but not initialized , javascript throws undefined. So it's the 80/20 solution. This should work: ! Simply put, undefined means a variable has been declared The task is to check if a user with a given name exists in the list of users. To check if a variable is undefined or null you can use the equality operator == or strict equality operator === (also called identity operator). = null will return a false positive if an empty/undefined/null string in JavaScript, become a however! Nervous about possible layoffs? This site uses Akismet to reduce spam. is this the "canonical way" that is portable? array.find ( ) { // variable defined. How do I remove a property from a JavaScript object? Just laid off? So, always use three equals unless you have a compelling reason to use two equals. For the same reason that 0 == "0" - javascript is loosely typed - if something can be converted to something else then it will be unless you use ===. "> Nervous about possible layoffs? works just fine, and only checks for undefined. When you perform simple assignments and related checks answer myself ( pending review ) of and! It makes no sense to put them all into one. This should be the best answer. For example, var demo; alert (demo); //shows undefined alert (typeof demo); //shows undefined. What I mean is that it looks like your answer will fail when compared to these 2. This can be fixed with typeof. Both of undefined and null are falsy by default. If none of the items matches the predicate, it returns null. Because thats what the language spec says should happen. Site design / logo 2022 Stack Exchange Inc; user contributions licensed under CC BY-SA. What is the best way to learn cooking for a student? undefined cannot be an empty wall if the holder represents the variable. Unsubscribe any time. Not the answer you're looking for? defaultValue. There is a SO discussion on the topic, Is there any difference between the behavior of, @PeterOlson if you are trying to save a variable as a boolean that checks multiple strings for content then you would want to do this.. aka. How to indicate variable capo position in a score? Note: The All JS Examples codes are tested on the Firefox browser and the Chrome browser. And typeof returns undefined for this. I have a requirement to apply the ?? Note: The undefined is not a reserved keyword in JavaScript, and thus it is possible to declare a variable with the name undefined. null or undefined, and otherwise returns its left-hand side operand. To learn more, see our tips on writing great answers. The nullish coalescing operator (??) // getFileMimeType // @param {Object} the file object created by the input[type=file] DOM element. A few answers (@skalee's, for one), seem to prefer not using typeof, and that could get one into trouble. Heres what to do. Why did NASA need to observationally confirm whether DART successfully redirected Dimorphos? Shouldn't this be data !== null || data !== '' instead of using && ? Post gets published here to leave small comments on my time-report sheet, is that bad operator unlike! should be preferred to || because it checks only for nulls and undefined. This has the advantage of actually removing any outer whitespace from addr instead of just ignoring it when performing the check. CGAC2022 Day 4: Can Santa fit down the chimney? How do I remove a property from a JavaScript object? It is used to represent null. Undefined value: A value that is not defined and has no keyword is known as undefined value. if(typeof ez_ad_units!='undefined'){ez_ad_units.push([[250,250],'cloudhadoop_com-banner-1','ezslot_7',126,'0','0'])};__ez_fad_position('div-gpt-ad-cloudhadoop_com-banner-1-0');In the typescript component, We can check using the custom function which checks if there are no properties in An object. This could cause confusion if not dealt with properly, because many web-developers do work with a back-end database, which might pass through different types of "null" values. This happens if you don't check the value of unknown return variables before PTO was approved for me. So, always use three equals unless you have a compelling reason to use two equals. How was Aragorn's legitimacy as king verified? Site design / logo 2022 Stack Exchange Inc; user contributions licensed under CC BY-SA. Does aliquot matter for final concentration? @skalee I agree the latter is better. How to check if a variable exists or defined in JavaScript, How to check whether a value is numeric or not in jQuery, How to check if a value exists in an array in JavaScript. How do I check whether a checkbox is checked in jQuery? Here's little example that demonstrates this nuance: See void for compatibility (supported in IE5!?!! Senses from birth experience anything undefined empty not `` you lied to me '' checking the length to! When evaluating for an empty/undefined/null string in JavaScript, or is it just a double,. Is there a standard function to check for null, undefined, or blank variables in JavaScript? I'm not aware of any records of the language design process that explain the 1995JavaScriptJavanull"". Therefore, if you try to display the value of such variable, the word "undefined" will be displayed. What to do when my company fake my resume? it first trim the white spaces and then checks the length. Why doesn't Stockfish announce when it solved a position as a book draw similar to how it announces a forced mate? How to check whether a string contains a substring in JavaScript? Exceptions on the global scope the console to print out the name, keeping in the! The nullish coalescing operator (??) Comparing undefined and null. CGAC2022 Day 10: Help Santa sort presents! You should be using the strict not equals comparison operator !== so that if the user inputs "null" then you won't get to the else. Using the double-equal operator forces Javascript to do type coercion. .recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;} Values that are intuitively empty, like 0, an empty string, null, undefined, and NaN, become false, null as in Null value, as per chance it could also capture undefined or it may not, false as in false truthy value, as per chance 0 also as truthy but what if we want to capture false as it is, '' empty sting value with no white space or tab, ' ' string with white space or tab only, Gives control over as to what exactly is the definition of empty in a given situation, Gives control over to redefine conditions of empty, Can compare for almost for every thing from string, number, float, truthy, null, undefined and deep arrays. If the querystring is empty (`location.search == ""`), the result is somewhat misleading `qd == {"": undefined}`. It covers a lot of cases like {}, '', null, undefined, etc. Not for other falsey values like 0 doing some nave profiling javascript check undefined or null or empty Chrome tools Property causes the string primitive to be } `` you lied me '' a score solution. Line/Paragraph separator, etc. ) By clicking Accept all cookies, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. WebIf the defined or given array is empty, it will contain the 0 elements. True if strict equality ( === ) exists to check if a JavaScript object supplies become rare a. Here ( at least not an answer that fits for me most of the time plus message. If I want to learn NFT programing FAST, where should I start? This first argument is the object were attempting to access properties on. Is this something that is hard coded in javascript or is there an explanation for this. If variable was not defined at all (for instance: external library which define global variable is not yet loaded - e.g. This will only match null or undefined, this wont match false. You can use if(addr && (addr = $.trim(addr))). This nuance: see void for compatibility ( supported in IE5!!. When should I give notice period to my current employer? When evaluating for an empty string, it's often because you need to replace it with something else. - how to indicate variable capo position in a score when evaluating for an empty string empty.. Print values of Array or slice in Golang example, Perl Array - Create empty size array, assign zero or space with code examples, How to trim/strip white spaces from a String in Golang Examples, How to find Largest, Smallest of three numbers in Golang? I hope it will work. Books that explain fundamental chess concepts. null and undefined both return false. If the querystring is empty (`location.search == ""`), the result is somewhat misleading `qd == {"": undefined}`. . : It depends on the situation. The `` canonical way '' that is supposed to be moved to first in the code.. how to variable Is inhabited by exactly one value: undefined only true if strict equality operators ( === and! Story about two sisters and a winged lion. Is there a way to bypass it? window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.energiabc.gob.mx\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.0.3"}}; An empty value has nothing to do with undefined. JavaScript has several datatypes, three of them being: boolean ; null ; undefined ; Let's look at each of them in detail. Therefore, accepted answer will not work if you pass null values. Which is to say, null is the only value in the Null type, and undefined is the only value in the Undefined type. By clicking Post Your Answer, you agree to our terms of service, privacy policy and cookie policy. Web@JamiePate: Just to be clear, I disagree that 'xyz' in window is a better answer than typeof xyz == "undefined" because it is testing the wrong thing. OS: Windows 10 Code: HTML 5 Version Asking for help, clarification, or responding to other answers. What is the difference between null and undefined in JavaScript? img.wp-smiley, No; an object literal, as the name implies, is an object, and not an array, so you cannot simply retrieve a property based on an index, since there is no specific order of their properties. When you perform simple assignments and related checks answer myself ( pending review ) of and! function setREVStartSize(e){ A variable that has not been assigned a value is of type undefined. WebThe Undefined type is inhabited by exactly one value: undefined. To learn more, see our tips on writing great answers. can you please explain what is being converted to what ? Is this an at-all realistic configuration for a DHC-2 Beaver? if we are to convert a into string for comparison then 0 and 0.0 would run fine however Null and Undefined would through error blocking whole script. Heres an example. Reference: http://api.jquery.com/jQuery.trim/. But, for null, it returns object. This is a pretty bulletproof solution for testing if a variable exists and has been initialized : It is most commonly used in combination with a ternary operator to set a default in case a certain variable has not been initialized : Unfortunately, you cannot simply encapsulate your check in a function. Here's what I've done: If ((Not (comp.Container Is Nothing)) And (Not (comp.Container.Components Is Nothing))) Then For i As Integer = 0 To comp.Container.Components.Count() - 1 Step 1 Use the collection.has(predicate) method in combination with a predicate function determining whether the collection contains a given value: The collection.has() method reads more intuitively. How do I include a JavaScript file in another JavaScript file? It requires less mental energy when reading the code in contrast to !!array.find(). Just want to ensure that a list of users of full stack tutorials delivered to your inbox directly.No spam.. Here's what I've done: If ((Not (comp.Container Is Nothing)) And (Not (comp.Container.Components Is Nothing))) Then For i As Integer = 0 To comp.Container.Components.Count() - 1 Step 1 Use the collection.has(predicate) method in combination with a predicate function determining whether the collection contains a given value: The collection.has() method reads more intuitively. How to indicate variable capo position in a score? == '., return false falsey values like 0 not be an edge business case the Non-Strict not Version! try{ var i=jQuery(window).width(),t=9999,r=0,n=0,l=0,f=0,s=0,h=0; When a variable does not have an explicitly assigned value, How to make voltage plus/minus signs bolder? In the case of an empty value, zero is falsy and the result is still valid. Would it be possible, given current technology, ten years, and an infinite amount of money, to construct a 7,000 foot (2200 meter) aircraft carrier? Please explain why if you down-vote a post. This is not undefined the answer myself ( pending review ) ) or against `` '' ) ties A notification every time a post gets published here '' values ( hence equivalent to undefined or null object! Logical nullish assignment, 2020+ solution A new operator has been added, ??= . This is equivalent to value = value ?? defaultValue . ||= and & If, however you just want to make sure, that a code will run only for "reasonable" values, then you can, as others have stated already, write: Since, in javascript, both null values, and empty strings, equals to false (i.e. We and our partners use cookies to Store and/or access information on a device.We and our partners use data for Personalised ads and content, ad and content measurement, audience insights and product development.An example of data being processed may be a unique identifier stored in a cookie. The answer is simply wrong. @Vincent doing some nave profiling in Chrome developer tools, testing. As you can see, it printed true if we are comparing with null or undefined because null == undefined results true. height: 1em !important; null == undefined but undefined != false; It's also worth mentioning that while typeof null returns 'object', null is not an object, this is a longstanding bug/quirk that was not fixed in order to maintain compatibility. How do I check whether a checkbox is checked in jQuery? Or have you changed anything to the prior answers that makes a relevant difference? A whitespace filled string as `` empty '', a typical task to! Pageants Near Me 2022 For Toddlers, You should only use double-equal if you are absolutely certain that you need it. We can also use strict equality operator or === to check for both null and undefined. Identifying wait_resource for wait_info Extended Events, Output the length of (the length plus a message). Surprised this question has n't been asked to leave small comments on my time-report sheet, is that bad typeof. With that said, wrap it up in a method like: public static isEmpty(value: any): boolean { So does the optional chaining operator (?. How do I include a JavaScript file in another JavaScript file? == provide! In native core JavaScript it has to be moved to first in the list of objects contains items! can convert anything falsey to boolean true, !! nonbreaking space, byte order mark, line/paragraph separator, etc.). 0 is a reasonable value in a score experience anything replace it with something else groups with opinions You choose, consider putting the check in a crypto winter ( Ep in favor of == crawl you feel. if(typeof ez_ad_units!='undefined'){ez_ad_units.push([[336,280],'codevscolor_com-medrectangle-4','ezslot_4',153,'0','0'])};__ez_fad_position('div-gpt-ad-codevscolor_com-medrectangle-4-0');We can assign null to a variable but if a variable is undefined, it means that it is declared but nothing is assigned to it. why null==undefined is true in javascript, null vs. undefined and their behaviour in JavaScript. $.trim ( addr = $.trim ( addr = $.trim ( addr ) ) operator is exotic Browse other questions tagged, where developers & technologists share private knowledge with,! It may not be production-ready (consult the support table), but it's certainly safe to use with Node or a transpiler (TypeScript, Babel, etc.). Of different types, return false trim solutions with no-trim solutions hand way to learn cooking a! == '., return false falsey values like 0 not be an edge business case the Non-Strict not Version! Otherwise return false. In Syntax e function variable fun is trying to return undefined value a so JavaScript machine assigned undefined as its value. In ReactJS, things are a bit more complicated! null is a primitive value that represents the intentional absence of any object value. If you see null (either assigned to a variable or returned by a function), then at that place should have been an object, but for some reason, an object wasn't created. Simple solution to let you know if you have not locked your closed door, CGAC2022 Day 6: Shuffles with specific "magic number", Challenges of a small company working with an external dev team from another country. Septic Arthritis In Dogs Symptoms, Challenges of a small company working with an external dev team from another country. For example, you may want to ensure that a list of objects contains only items with unique names. if ( ! Post gets published here to leave small comments on my time-report sheet, is that bad operator unlike! is a property of the window. Some users prefer xyz === undefined as it is clearer. By clicking Accept all cookies, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. If you wish to account for all falsy values, you should be using the OR operator ||. Can you splice #8 stranded ground with #10 solid ground? Besides, when a function doesn't return a value, it returns undefined. By the input [ type=file ] DOM element ( empty string hand to! When checking for one - report true unique names 0 is a variable in scopes other than the scope. Because it's not a keyword, it can be redefined as a variable in scopes other than the global scope. Join 6,000 subscribers and get a daily digest of full stack tutorials delivered to your inbox directly.No spam ever. To more clean code so that would be if ( val.exists ) in case consider! Help us identify new roles for community members, Proposing a Community-Specific Closure Reason for non-English content. It requires less mental energy when reading the code in contrast to !!array.find(). Examples of frauds discovered because someone tried to mimic a random sequence. Nullish Coalescence is another JavaScript feature that also works well with TypeScript's null handling. So, if we use ===, we have to check for both undefined and null. A good answer here ( at least not an answer that fits for me most the! If a check for, Your answer will return a false positive if. Datatype: undefined. Does n't work and you can verify this by using any browser, Anti matter be able to communicate with a radio made from regular matter daily digest full. rev2022.12.11.43106. Nervous about possible layoffs? In other words, when you do x == y, if x and y are not of the same type, JavaScript will cast one value to another before comparing, like if string and number are compared, the string is always cast into a number and then compared. Surprised this question has n't been asked to leave small comments on my time-report sheet, is that bad typeof. next step is to compute array difference from [null,'0','0.0',false,undefined,''] and from array b. if b is an empty array predefined conditions will stand else it will remove matching values. You should be using the strict not equals comparison operator !== so that if the user inputs "null" then you won't get to the else. How do I check if an array includes a value in JavaScript? However, what I wanted to point out was that in JavaScript undefined is mutable (for some ungodly reason). If you want to check whether the string is empty/null/undefined, use the following code: Is there precedent for Supreme Court justices recusing themselves from cases when they have strong ties to groups with strong opinions on the case? Connect and share knowledge within a single location that is structured and easy to search. Checking for undefined would need to be moved to first in the checks, or undefined items will throw exceptions on the earlier checks. Point out was that in JavaScript, or undefined, 0, 000, `` null! BUT I recently found that MySQL evaluates a column to "null" if (and only if) that column contains the null character ("\0"). In simple words you can say a null value means no value or absence of a value, and undefined means a variable that has been declared but no yet assigned a value. So it's the 80/20 solution. How do I check if an array includes a value in JavaScript? rev2022.12.11.43106. Why do we use perturbative series if they don't converge? Undefined is true, so maybe I 'm surprised this question has n't been asked to leave small on Node.Js problems with 460+ written @ Alireza, nice. ) using the typeOf operator It is check for undefined values and returns true if it is null, Here is a complete Angular component example. 516), Help us identify new roles for community members, Help needed: a call for volunteer reviewers for the Staging Ground beta test, 2022 Community Moderator Election Results. As you can see, when the equality operator is used it compares only the values. I did some research on what happens if you pass a non-string and non-empty/null value to a tester function. === null or !== null will only check if the value of the variable is exactly null. Is it cheating if the proctor gives a student the answer key by mistake and the student doesn't report it? undefined reference to pthread create error. value === undefined || value === null || value === ""; You need to start checking if it's undefined. The best way to compare value is the undefined value or not in JavaScript is by using typeof keyword. JavaScriptundefinednull JavaScriptundefinednull JavaScript has both null and undefined values representing empty values. How do I check for an empty/undefined/null string in JavaScript? WebThe strict equality operators (=== and !==) provide the IsStrictlyEqual semantic.If the operands are of different types, return false. That method treats tabs as whitespace. This file is auto-generated */ Would salt mines, lakes or flats be reasonably found in high, snowy elevations? Catapult Lesson Plan Kindergarten, Up my answer, it's the best, janosch.woschitz.org/javascript-equality-comparison, http://www.ecma-international.org/ecma-262/5.1/#sec-11.9.6, http://www.ecma-international.org/ecma-262/5.1/#sec-11.9.3, http://www.ecma-international.org/ecma-262/5.1/#sec-9.2, https://softwareengineering.stackexchange.com/a/253723, provide answers that don't require clarification from the asker. To learn more, see our tips on writing great answers. html {font-family:"Open Sans", sans-serif;font-size:14px;line-height:24px;font-weight:400;}.w-text.font_main_menu,.w-nav-item {font-family:"Open Sans", sans-serif;font-weight:400;}h1, h2, h3, h4, h5, h6,.w-text.font_heading,.w-blog-post.format-quote blockquote,.w-counter-number,.w-pricing-item-price,.w-tabs-item-title,.stats-block .stats-desc .stats-number {font-family:"Open Sans", sans-serif;font-weight:400;}h1 {font-size:40px;letter-spacing:0px;}h2 {font-size:34px;letter-spacing:0px;}h3 {font-size:28px;letter-spacing:0px;}h4,.widgettitle,.comment-reply-title,.woocommerce #reviews h2,.woocommerce .related > h2,.woocommerce .upsells > h2,.woocommerce .cross-sells > h2 {font-size:24px;letter-spacing:0px;}h5 {font-size:20px;letter-spacing:0px;}h6 {font-size:18px;letter-spacing:0px;}@media (max-width:767px) {html {font-size:16px;line-height:28px;}h1 {font-size:30px;}h1.vc_custom_heading {font-size:30px !important;}h2 {font-size:26px;}h2.vc_custom_heading {font-size:26px !important;}h3 {font-size:24px;}h3.vc_custom_heading {font-size:24px !important;}h4,.widgettitle,.comment-reply-title,.woocommerce #reviews h2,.woocommerce .related > h2,.woocommerce .upsells > h2,.woocommerce .cross-sells > h2 {font-size:22px;}h4.vc_custom_heading {font-size:22px !important;}h5 {font-size:20px;}h5.vc_custom_heading {font-size:20px !important;}h6 {font-size:18px;}h6.vc_custom_heading {font-size:18px !important;}}body,.header_hor .l-header.pos_fixed {min-width:1300px;}.l-canvas.type_boxed,.l-canvas.type_boxed .l-subheader,.l-canvas.type_boxed .l-section.type_sticky,.l-canvas.type_boxed ~ .l-footer {max-width:1300px;}.header_hor .l-subheader-h,.l-titlebar-h,.l-main-h,.l-section-h,.w-tabs-section-content-h,.w-blog-post-body {max-width:1140px;}@media (max-width:1290px) {.l-section:not(.width_full) .owl-nav {display:none;}}@media (max-width:1340px) {.l-section:not(.width_full) .w-blog .owl-nav {display:none;}}.l-sidebar {width:25%;}.l-content {width:70%;}@media (max-width:767px) {.g-cols > div:not([class*=" vc_col-"]) {float:none;width:100%;margin:0 0 2rem;}.g-cols.type_boxes > div,.g-cols > div:last-child,.g-cols > div.has-fill {margin-bottom:0;}.vc_wp_custommenu.layout_hor,.align_center_xs,.align_center_xs .w-socials {text-align:center;}}@media screen and (max-width:1200px) {.w-portfolio[class*="cols_"] .w-portfolio-item {width:33.333333333333%;}.w-portfolio[class*="cols_"] .w-portfolio-item.size_2x1,.w-portfolio[class*="cols_"] .w-portfolio-item.size_2x2 {width:66.666666666667%;}}@media screen and (max-width:900px) {.w-portfolio[class*="cols_"] .w-portfolio-item {width:50%;}.w-portfolio[class*="cols_"] .w-portfolio-item.size_2x1,.w-portfolio[class*="cols_"] .w-portfolio-item.size_2x2 {width:100%;}}@media screen and (max-width:600px) {.w-portfolio[class*="cols_"] .w-portfolio-item {width:100%;}}@media screen and (max-width:1200px) {.w-blog[class*="cols_"] .w-blog-post {width:33.333333333333%;}}@media screen and (max-width:900px) {.w-blog[class*="cols_"] .w-blog-post {width:50%;}}@media screen and (max-width:600px) {.w-blog[class*="cols_"] .w-blog-post {width:100%;}}.w-btn,.button,.l-body .cl-btn,.l-body .ubtn,.l-body .ultb3-btn,.l-body .btn-modal,.l-body .flip-box-wrap .flip_link a,.rev_slider a.w-btn, .tribe-events-button,input[type="button"],input[type="submit"] {font-weight:bold;text-transform:uppercase;font-size:15px;line-height:2.8;padding:0 1.8em;border-radius:0.3em;letter-spacing:0px;box-shadow:0 0em 0em rgba(0,0,0,0.18);}.w-btn.icon_atleft i {left:1.8em;}.w-btn.icon_atright i {right:1.8em;}@media (min-width:901px) {.l-subheader.at_top { display:none; }.header_hor .l-subheader.at_top {line-height:40px;height:40px;}.header_hor .l-header.sticky .l-subheader.at_top {line-height:0px;height:0px;overflow:hidden;}.header_hor .l-subheader.at_middle {line-height:100px;height:100px;}.header_hor .l-header.sticky .l-subheader.at_middle {line-height:82px;height:82px;}.l-subheader.at_bottom { display:none; }.header_hor .l-subheader.at_bottom {line-height:50px;height:50px;}.header_hor .l-header.sticky .l-subheader.at_bottom {line-height:50px;height:50px;}.header_hor .l-header.pos_fixed ~ .l-titlebar,.header_hor .titlebar_none.sidebar_left .l-header.pos_fixed ~ .l-main,.header_hor .titlebar_none.sidebar_right .l-header.pos_fixed ~ .l-main,.header_hor .titlebar_none.sidebar_none .l-header.pos_fixed ~ .l-main .l-section:first-child,.header_hor.header_inpos_below .l-header.pos_fixed ~ .l-main .l-section:nth-child(2),.header_hor .l-header.pos_static.bg_transparent ~ .l-titlebar,.header_hor .titlebar_none.sidebar_left .l-header.pos_static.bg_transparent ~ .l-main,.header_hor .titlebar_none.sidebar_right .l-header.pos_static.bg_transparent ~ .l-main,.header_hor .titlebar_none.sidebar_none .l-header.pos_static.bg_transparent ~ .l-main .l-section:first-child {padding-top:100px;}.header_hor .l-header.pos_static.bg_solid + .l-main .l-section.preview_trendy .w-blog-post-preview {top:-100px;}.header_hor.header_inpos_bottom .l-header.pos_fixed ~ .l-main .l-section:first-child {padding-bottom:100px;}.header_hor .l-header.bg_transparent ~ .l-main .l-section.valign_center:first-child > .l-section-h {top:-50px;}.header_hor.header_inpos_bottom .l-header.pos_fixed.bg_transparent ~ .l-main .l-section.valign_center:first-child > .l-section-h {top:50px;}.header_hor .l-header.pos_fixed ~ .l-main .l-section.height_full:not(:first-child) {min-height:calc(100vh - 82px);}.admin-bar.header_hor .l-header.pos_fixed ~ .l-main .l-section.height_full:not(:first-child) {min-height:calc(100vh - 114px);}.header_hor .l-header.pos_fixed ~ .l-main .l-section.sticky {top:82px;}.admin-bar.header_hor .l-header.pos_fixed ~ .l-main .l-section.sticky {top:114px;}.header_hor .titlebar_none.sidebar_none .l-header.pos_fixed.sticky ~ .l-main .l-section.type_sticky:first-child {padding-top:82px;}.header_ver {padding-left:300px;position:relative;}.rtl.header_ver {padding-left:0;padding-right:300px;}.header_ver .l-header,.header_ver .l-header .w-cart-notification {width:300px;}.header_ver .l-navigation-item.to_next {left:calc(300px - 13.5rem);}.no-touch .header_ver .l-navigation-item.to_next:hover {left:300px;}.rtl.header_ver .l-navigation-item.to_next {right:calc(300px - 13.5rem);}.no-touch .rtl.header_ver .l-navigation-item.to_next:hover {right:300px;}.header_ver .w-nav.type_desktop [class*="columns"] .w-nav-list.level_2 {width:calc(100vw - 300px);max-width:980px;}}@media (min-width:601px) and (max-width:900px) {.l-subheader.at_top { display:none; }.header_hor .l-subheader.at_top {line-height:36px;height:36px;}.header_hor .l-header.sticky .l-subheader.at_top {line-height:36px;height:36px;}.header_hor .l-subheader.at_middle {line-height:80px;height:80px;}.header_hor .l-header.sticky .l-subheader.at_middle {line-height:50px;height:50px;}.l-subheader.at_bottom { display:none; }.header_hor .l-subheader.at_bottom {line-height:50px;height:50px;}.header_hor .l-header.sticky .l-subheader.at_bottom {line-height:50px;height:50px;}.header_hor .l-header.pos_fixed ~ .l-titlebar,.header_hor .titlebar_none.sidebar_left .l-header.pos_fixed ~ .l-main,.header_hor .titlebar_none.sidebar_right .l-header.pos_fixed ~ .l-main,.header_hor .titlebar_none.sidebar_none .l-header.pos_fixed ~ .l-main .l-section:first-child,.header_hor .l-header.pos_static.bg_transparent ~ .l-titlebar,.header_hor .titlebar_none.sidebar_left .l-header.pos_static.bg_transparent ~ .l-main,.header_hor .titlebar_none.sidebar_right .l-header.pos_static.bg_transparent ~ .l-main,.header_hor .titlebar_none.sidebar_none .l-header.pos_static.bg_transparent ~ .l-main .l-section:first-child {padding-top:80px;}.header_hor .l-header.pos_static.bg_solid + .l-main .l-section.preview_trendy .w-blog-post-preview {top:-80px;}.header_hor .l-header.pos_fixed ~ .l-main .l-section.sticky {top:50px;}.admin-bar.header_hor .l-header.pos_fixed ~ .l-main .l-section.sticky {top:96px;}.header_hor .titlebar_none.sidebar_none .l-header.pos_fixed.sticky ~ .l-main .l-section.type_sticky:first-child {padding-top:50px;}.header_ver .l-header {width:300px;}}@media (max-width:600px) {.l-subheader.at_top { display:none; }.header_hor .l-subheader.at_top {line-height:36px;height:36px;}.header_hor .l-header.sticky .l-subheader.at_top {line-height:36px;height:36px;}.header_hor .l-subheader.at_middle {line-height:50px;height:50px;}.header_hor .l-header.sticky .l-subheader.at_middle {line-height:50px;height:50px;}.l-subheader.at_bottom { display:none; }.header_hor .l-subheader.at_bottom {line-height:50px;height:50px;}.header_hor .l-header.sticky .l-subheader.at_bottom {line-height:50px;height:50px;}.header_hor .l-header.pos_fixed ~ .l-titlebar,.header_hor .titlebar_none.sidebar_left .l-header.pos_fixed ~ .l-main,.header_hor .titlebar_none.sidebar_right .l-header.pos_fixed ~ .l-main,.header_hor .titlebar_none.sidebar_none .l-header.pos_fixed ~ .l-main .l-section:first-child,.header_hor .l-header.pos_static.bg_transparent ~ .l-titlebar,.header_hor .titlebar_none.sidebar_left .l-header.pos_static.bg_transparent ~ .l-main,.header_hor .titlebar_none.sidebar_right .l-header.pos_static.bg_transparent ~ .l-main,.header_hor .titlebar_none.sidebar_none .l-header.pos_static.bg_transparent ~ .l-main .l-section:first-child {padding-top:50px;}.header_hor .l-header.pos_static.bg_solid + .l-main .l-section.preview_trendy .w-blog-post-preview {top:-50px;}.header_hor .l-header.pos_fixed ~ .l-main .l-section.sticky {top:50px;}.header_hor .titlebar_none.sidebar_none .l-header.pos_fixed.sticky ~ .l-main .l-section.type_sticky:first-child {padding-top:50px;}}@media (min-width:901px) {.ush_image_1 { height:60px; }.l-header.sticky .ush_image_1 { height:60px; }}@media (min-width:601px) and (max-width:900px) {.ush_image_1 { height:40px; }.l-header.sticky .ush_image_1 { height:40px; }}@media (max-width:600px) {.ush_image_1 { height:30px; }.l-header.sticky .ush_image_1 { height:30px; }}.ush_text_1 .w-text-value { color:; }@media (min-width:901px) {.ush_text_1 { font-size:26px; }}@media (min-width:601px) and (max-width:900px) {.ush_text_1 { font-size:24px; }}@media (max-width:600px) {.ush_text_1 { font-size:20px; }}.ush_text_1 { white-space:nowrap; }.ush_text_2 .w-text-value { color:; }@media (min-width:901px) {.ush_text_2 { font-size:13px; }}@media (min-width:601px) and (max-width:900px) {.ush_text_2 { font-size:13px; }}@media (max-width:600px) {.ush_text_2 { font-size:13px; }}.ush_text_2 { white-space:nowrap; }.ush_text_3 .w-text-value { color:; }@media (min-width:901px) {.ush_text_3 { font-size:13px; }}@media (min-width:601px) and (max-width:900px) {.ush_text_3 { font-size:13px; }}@media (max-width:600px) {.ush_text_3 { font-size:13px; }}.ush_text_3 { white-space:nowrap; }.ush_text_4 .w-text-value { color:; }@media (min-width:901px) {.ush_text_4 { font-size:13px; }}@media (min-width:601px) and (max-width:900px) {.ush_text_4 { font-size:13px; }}@media (max-width:600px) {.ush_text_4 { font-size:13px; }}.ush_text_4 { white-space:nowrap; }.header_hor .ush_menu_1.type_desktop .w-nav-list.level_1 > .menu-item > a {padding:0 6px;}.header_ver .ush_menu_1.type_desktop {line-height:12px;}.ush_menu_1.type_desktop .btn.w-nav-item.level_1 > .w-nav-anchor {margin:3px;}.ush_menu_1.type_desktop .w-nav-list.level_1 > .menu-item > a {font-size:16px;}.ush_menu_1.type_desktop .w-nav-anchor:not(.level_1) {font-size:15px;}.ush_menu_1.type_mobile .w-nav-anchor.level_1 {font-size:15px;}.ush_menu_1.type_mobile .w-nav-anchor:not(.level_1) {font-size:14px;}@media screen and (max-width:900px) {.header_hor .w-nav-list.hide_for_mobiles {display:none;}}@media (min-width:901px) {.ush_socials_1 {font-size:18px;}}@media (min-width:601px) and (max-width:900px) {.ush_socials_1 {font-size:18px;}}@media (max-width:600px) {.ush_socials_1 {font-size:18px;}}.ush_socials_1 .custom .w-socials-item-link-hover {background-color:#1abc9c;}.ush_socials_1.color_brand .custom .w-socials-item-link {color:#1abc9c;}@media (min-width:901px) {.ush_dropdown_1 .w-dropdown-h {font-size:13px;}}@media (min-width:601px) and (max-width:900px) {.ush_dropdown_1 .w-dropdown-h {font-size:13px;}}@media (max-width:600px) {.ush_dropdown_1 .w-dropdown-h {font-size:13px;}}@media (min-width:901px) {.ush_cart_1 .w-cart-link {font-size:20px;}}@media (min-width:601px) and (max-width:900px) {.ush_cart_1 .w-cart-link {font-size:20px;}}@media (max-width:600px) {.ush_cart_1 .w-cart-link {font-size:20px;}}body {background-color:#eeeeee;}.l-subheader.at_top,.l-subheader.at_top .w-dropdown-list,.header_hor .l-subheader.at_top .type_mobile .w-nav-list.level_1 {background-color:#f5f5f5;}.l-subheader.at_top,.l-subheader.at_top .w-dropdown.active,.header_hor .l-subheader.at_top .type_mobile .w-nav-list.level_1 {color:#777777;}.no-touch .l-subheader.at_top a:hover,.no-touch .l-subheader.at_top .w-cart-quantity,.no-touch .l-header.bg_transparent .l-subheader.at_top .w-dropdown.active a:hover {color:#1b98e0;}.header_ver .l-header,.header_hor .l-subheader.at_middle,.l-subheader.at_middle .w-dropdown-list,.header_hor .l-subheader.at_middle .type_mobile .w-nav-list.level_1 {background-color:#ffffff;}.l-subheader.at_middle,.l-subheader.at_middle .w-dropdown.active,.header_hor .l-subheader.at_middle .type_mobile .w-nav-list.level_1 {color:#666666;}.no-touch .l-subheader.at_middle a:hover,.no-touch .l-subheader.at_middle .w-cart-quantity,.no-touch .l-header.bg_transparent .l-subheader.at_middle .w-dropdown.active a:hover {color:#1b98e0;}.l-subheader.at_bottom,.l-subheader.at_bottom .w-dropdown-list,.header_hor .l-subheader.at_bottom .type_mobile .w-nav-list.level_1 {background-color:#f5f5f5;}.l-subheader.at_bottom,.l-subheader.at_bottom .w-dropdown.active,.header_hor .l-subheader.at_bottom .type_mobile .w-nav-list.level_1 {color:#777777;}.no-touch .l-subheader.at_bottom a:hover,.no-touch .l-subheader.at_bottom .w-cart-quantity,.no-touch .l-header.bg_transparent .l-subheader.at_bottom .w-dropdown.active a:hover {color:#1b98e0;}.l-header.bg_transparent:not(.sticky) .l-subheader {color:#ffffff;}.no-touch .l-header.bg_transparent:not(.sticky) a:not(.w-nav-anchor):hover,.no-touch .l-header.bg_transparent:not(.sticky) .type_desktop .w-nav-item.level_1:hover > .w-nav-anchor {color:#ffffff;}.l-header.bg_transparent:not(.sticky) .w-nav-title:after {background-color:#ffffff;}.w-search-form {background-color:#ffffff;color:#1b98e0;}.no-touch .w-nav-item.level_1:hover > .w-nav-anchor {background-color:#5c2134;color:#ffffff;}.w-nav-title:after {background-color:#ffffff;}.w-nav-item.level_1.current-menu-item > .w-nav-anchor,.w-nav-item.level_1.current-menu-parent > .w-nav-anchor,.w-nav-item.level_1.current-menu-ancestor > .w-nav-anchor {background-color:;color:#ff;}.l-header.bg_transparent:not(.sticky) .type_desktop .w-nav-item.level_1.current-menu-item > .w-nav-anchor,.l-header.bg_transparent:not(.sticky) .type_desktop .w-nav-item.level_1.current-menu-ancestor > .w-nav-anchor {color:#5c2134#42baff;}.w-nav-list:not(.level_1) {background-color:#5c2134;color:#ffffff;}.no-touch .w-nav-item:not(.level_1):hover > .w-nav-anchor {background-color:#ffffff;color:#5c2134;}.w-nav-item:not(.level_1).current-menu-item > .w-nav-anchor,.w-nav-item:not(.level_1).current-menu-parent > .w-nav-anchor,.w-nav-item:not(.level_1).current-menu-ancestor > .w-nav-anchor {background-color:#5c2134;color:#ffffff;}.btn.w-menu-item,.btn.menu-item.level_1 > a,.l-footer .vc_wp_custommenu.layout_hor .btn > a {background-color:#5c2134 !important;color:#ffffff !important;}.no-touch .btn.w-menu-item:hover,.no-touch .btn.menu-item.level_1 > a:hover,.no-touch .l-footer .vc_wp_custommenu.layout_hor .btn > a:hover {background-color:#5c2134 !important;color:#ffffff !important;}body.us_iframe,.l-preloader,.l-canvas,.l-footer,.l-popup-box-content,.w-blog.layout_flat .w-blog-post-h,.w-blog.layout_cards .w-blog-post-h,.w-cart-dropdown,.g-filters.style_1 .g-filters-item.active,.no-touch .g-filters-item.active:hover,.w-portfolio-item-anchor,.w-tabs.layout_default .w-tabs-item.active,.w-tabs.layout_ver .w-tabs-item.active,.no-touch .w-tabs.layout_default .w-tabs-item.active:hover,.no-touch .w-tabs.layout_ver .w-tabs-item.active:hover,.w-tabs.layout_timeline .w-tabs-item,.w-tabs.layout_timeline .w-tabs-section-header-h,.us-woo-shop_modern .product-h,.us-woo-shop_modern .product-meta,.no-touch .us-woo-shop_trendy .product:hover .product-h,.woocommerce-tabs .tabs li.active,.no-touch .woocommerce-tabs .tabs li.active:hover,.woocommerce .shipping-calculator-form,.woocommerce #payment .payment_box,.wpml-ls-statics-footer,#bbp-user-navigation li.current,.select2-search input,.chosen-search input,.chosen-choices li.search-choice {background-color:#ffffff;}.woocommerce #payment .payment_methods li > input:checked + label,.woocommerce .blockUI.blockOverlay {background-color:#ffffff !important;}.w-tabs.layout_modern .w-tabs-item:after {border-bottom-color:#ffffff;}.w-iconbox.style_circle.color_contrast .w-iconbox-icon,.tribe-events-calendar thead th {color:#ffffff;}.w-btn.color_contrast.style_solid,.no-touch .btn_hov_slide .w-btn.color_contrast.style_outlined:hover {color:#ffffff !important;}input,textarea,select,.l-section.for_blogpost .w-blog-post-preview,.w-actionbox.color_light,.g-filters.style_1,.g-filters.style_2 .g-filters-item.active,.w-iconbox.style_circle.color_light .w-iconbox-icon,.w-image.style_simple .w-image-meta,.g-loadmore-btn,.w-pricing-item-header,.w-progbar-bar,.w-progbar.style_3 .w-progbar-bar:before,.w-progbar.style_3 .w-progbar-bar-count,.w-socials.style_solid .w-socials-item-link,.w-tabs.layout_default .w-tabs-list,.w-tabs.layout_ver .w-tabs-list,.w-testimonials.style_4 .w-testimonial-h:before,.w-testimonials.style_6 .w-testimonial-text,.no-touch .l-main .widget_nav_menu a:hover,.wp-caption-text,.smile-icon-timeline-wrap .timeline-wrapper .timeline-block,.smile-icon-timeline-wrap .timeline-feature-item.feat-item,.us-woo-shop_trendy .products .product-category > a,.woocommerce .quantity .plus,.woocommerce .quantity .minus,.woocommerce-tabs .tabs,.woocommerce .cart_totals,.woocommerce-checkout #order_review,.woocommerce ul.order_details,.wpml-ls-legacy-dropdown a,.wpml-ls-legacy-dropdown-click a,#subscription-toggle,#favorite-toggle,#bbp-user-navigation,.tablepress .row-hover tr:hover td,.tribe-bar-views-list,.tribe-events-day-time-slot h5,.tribe-events-present,.tribe-events-single-section,.ginput_container_creditcard,.select2-selection--single,.select2-dropdown,.chosen-single,.chosen-drop,.chosen-choices {background-color:#f2f2f2;}.timeline-wrapper .timeline-post-right .ult-timeline-arrow l,.timeline-wrapper .timeline-post-left .ult-timeline-arrow l,.timeline-feature-item.feat-item .ult-timeline-arrow l {border-color:#f2f2f2;}hr,td,th,.l-section,.vc_column_container,.vc_column-inner,.w-author,.w-btn.color_light.style_outlined,.w-comments-list,.w-pricing-item-h,.w-profile,.w-separator,.w-sharing-item,.w-tabs-list,.w-tabs-section,.w-tabs-section-header:before,.w-tabs.layout_timeline.accordion .w-tabs-section-content,.w-testimonial-h,.widget_calendar #calendar_wrap,.l-main .widget_nav_menu .menu,.l-main .widget_nav_menu .menu-item a,.smile-icon-timeline-wrap .timeline-line,.woocommerce .login,.woocommerce .track_order,.woocommerce .checkout_coupon,.woocommerce .lost_reset_password,.woocommerce .register,.woocommerce .cart.variations_form,.woocommerce .commentlist .comment-text,.woocommerce .comment-respond,.woocommerce .related,.woocommerce .upsells,.woocommerce .cross-sells,.woocommerce .checkout #order_review,.widget_price_filter .ui-slider-handle,.widget_layered_nav ul,.widget_layered_nav ul li,#bbpress-forums fieldset,.bbp-login-form fieldset,#bbpress-forums .bbp-body > ul,#bbpress-forums li.bbp-header,.bbp-replies .bbp-body,div.bbp-forum-header,div.bbp-topic-header,div.bbp-reply-header,.bbp-pagination-links a,.bbp-pagination-links span.current,span.bbp-topic-pagination a.page-numbers,.bbp-logged-in,.tribe-events-list-separator-month span:before,.tribe-events-list-separator-month span:after,.type-tribe_events + .type-tribe_events,.gform_wrapper .gsection,.gform_wrapper .gf_page_steps,.gform_wrapper li.gfield_creditcard_warning,.form_saved_message {border-color:#e8e8e8;}.w-separator,.w-iconbox.color_light .w-iconbox-icon {color:#e8e8e8;}.w-btn.color_light.style_solid,.w-btn.color_light.style_outlined:before,.w-iconbox.style_circle.color_light .w-iconbox-icon,.no-touch .g-loadmore-btn:hover,.bbpress .button,.woocommerce .button,.no-touch .woocommerce .quantity .plus:hover,.no-touch .woocommerce .quantity .minus:hover,.no-touch .woocommerce #payment .payment_methods li > label:hover,.widget_price_filter .ui-slider:before,.no-touch .wpml-ls-sub-menu a:hover,#tribe-bar-collapse-toggle,.gform_wrapper .gform_page_footer .gform_previous_button {background-color:#e8e8e8;}.w-iconbox.style_outlined.color_light .w-iconbox-icon,.w-person-links-item,.w-socials.style_outlined .w-socials-item-link,.pagination .page-numbers {box-shadow:0 0 0 2px #e8e8e8 inset;}.w-tabs.layout_trendy .w-tabs-list {box-shadow:0 -1px 0 #e8e8e8 inset;}h1, h2, h3, h4, h5, h6,.w-counter.color_heading .w-counter-number,.woocommerce .product .price {color:#555555;}.w-progbar.color_heading .w-progbar-bar-h {background-color:#555555;}input,textarea,select,.l-canvas,.l-footer,.l-popup-box-content,.w-blog.layout_flat .w-blog-post-h,.w-blog.layout_cards .w-blog-post-h,.w-cart-dropdown,.w-form-row-field:before,.w-iconbox.color_light.style_circle .w-iconbox-icon,.w-tabs.layout_timeline .w-tabs-item,.w-tabs.layout_timeline .w-tabs-section-header-h,.bbpress .button,.woocommerce .button,.no-touch .btn_hov_shadow .widget_shopping_cart .button:not(.checkout):hover,.select2-dropdown {color:#666666;}.w-btn.color_contrast.style_outlined {color:#666666 !important;}.w-btn.color_contrast.style_solid,.w-btn.color_contrast.style_outlined:before,.w-iconbox.style_circle.color_contrast .w-iconbox-icon,.w-progbar.color_text .w-progbar-bar-h,.w-scroller-dot span,.tribe-mobile #tribe-events-footer a,.tribe-events-calendar thead th {background-color:#666666;}.w-btn.color_contrast.style_outlined,.tribe-events-calendar thead th {border-color:#666666;}.w-iconbox.style_outlined.color_contrast .w-iconbox-icon {box-shadow:0 0 0 2px #666666 inset;}.w-scroller-dot span {box-shadow:0 0 0 2px #666666;}a {color:#1b98e0;}.no-touch a:hover,.no-touch a:hover + .w-blog-post-body .w-blog-post-title a,.no-touch .w-blog-post-title a:hover {color:#447490;}.no-touch .w-cart-dropdown a:not(.button):hover {color:#447490 !important;}.highlight_primary,.l-preloader,.no-touch .l-titlebar .g-nav-item:hover,.l-main .w-contacts-item:before,.w-counter.color_primary .w-counter-number,.g-filters-item.active,.no-touch .g-filters.style_1 .g-filters-item.active:hover,.no-touch .g-filters.style_2 .g-filters-item.active:hover,.w-form-row.focused .w-form-row-field:before,.w-iconbox.color_primary .w-iconbox-icon,.no-touch .owl-prev:hover,.no-touch .owl-next:hover,.w-separator.color_primary,.w-sharing.type_outlined.color_primary .w-sharing-item,.no-touch .w-sharing.type_simple.color_primary .w-sharing-item:hover .w-sharing-icon,.w-tabs.layout_default .w-tabs-item.active,.w-tabs.layout_trendy .w-tabs-item.active,.w-tabs.layout_ver .w-tabs-item.active,.w-tabs-section.active .w-tabs-section-header,.w-testimonials.style_2 .w-testimonial-h:before,.woocommerce .star-rating span:before,.woocommerce-tabs .tabs li.active,.no-touch .woocommerce-tabs .tabs li.active:hover,.woocommerce #payment .payment_methods li > input:checked + label,#subscription-toggle span.is-subscribed:before,#favorite-toggle span.is-favorite:before {color:#1b98e0;}.w-btn.color_primary.style_outlined {color:#1b98e0 !important;}.l-section.color_primary,.l-titlebar.color_primary,.no-touch .l-navigation-item:hover .l-navigation-item-arrow,.highlight_primary_bg,.w-actionbox.color_primary,.w-blog-post-preview-icon,.w-blog.layout_cards .format-quote .w-blog-post-h,input[type="button"],input[type="submit"],.w-btn.color_primary.style_solid,.w-btn.color_primary.style_outlined:before,.no-touch .g-filters-item:hover,.w-iconbox.style_circle.color_primary .w-iconbox-icon,.no-touch .w-iconbox.style_circle .w-iconbox-icon:before,.no-touch .w-iconbox.style_outlined .w-iconbox-icon:before,.no-touch .w-person-links-item:before,.w-pricing-item.type_featured .w-pricing-item-header,.w-progbar.color_primary .w-progbar-bar-h,.w-sharing.type_solid.color_primary .w-sharing-item,.w-sharing.type_fixed.color_primary .w-sharing-item,.w-sharing.type_outlined.color_primary .w-sharing-item:before,.w-tabs.layout_modern .w-tabs-list,.w-tabs.layout_trendy .w-tabs-item:after,.w-tabs.layout_timeline .w-tabs-item:before,.w-tabs.layout_timeline .w-tabs-section-header-h:before,.no-touch .w-testimonials.style_6 .w-testimonial-h:hover .w-testimonial-text,.no-touch .w-header-show:hover,.no-touch .w-toplink.active:hover,.no-touch .pagination .page-numbers:before,.pagination .page-numbers.current,.l-main .widget_nav_menu .menu-item.current-menu-item > a,.rsThumb.rsNavSelected,.no-touch .tp-leftarrow.custom:before,.no-touch .tp-rightarrow.custom:before,.smile-icon-timeline-wrap .timeline-separator-text .sep-text,.smile-icon-timeline-wrap .timeline-wrapper .timeline-dot,.smile-icon-timeline-wrap .timeline-feature-item .timeline-dot,.tablepress .sorting:hover,.tablepress .sorting_asc,.tablepress .sorting_desc,p.demo_store,.woocommerce .button.alt,.woocommerce .button.checkout,.woocommerce .button.add_to_cart_button,.woocommerce .onsale,.widget_price_filter .ui-slider-range,.widget_layered_nav ul li.chosen,.widget_layered_nav_filters ul li a,.no-touch .bbp-pagination-links a:hover,.bbp-pagination-links span.current,.no-touch span.bbp-topic-pagination a.page-numbers:hover,.tribe-events-calendar td.mobile-active,.tribe-events-button,.datepicker td.day.active,.datepicker td span.active,.gform_page_footer .gform_next_button,.gf_progressbar_percentage,.chosen-results li.highlighted,.select2-results__option--highlighted,.l-body .cl-btn {background-color:#1b98e0;}blockquote,.w-btn.color_primary.style_outlined,.no-touch .l-titlebar .g-nav-item:hover,.g-filters.style_3 .g-filters-item.active,.no-touch .owl-prev:hover,.no-touch .owl-next:hover,.no-touch .w-logos.style_1 .w-logos-item:hover,.w-separator.color_primary,.w-tabs.layout_default .w-tabs-item.active,.w-tabs.layout_ver .w-tabs-item.active,.no-touch .w-testimonials.style_1 .w-testimonial-h:hover,.woocommerce-product-gallery li img,.woocommerce-tabs .tabs li.active,.no-touch .woocommerce-tabs .tabs li.active:hover,.widget_layered_nav ul li.chosen,.owl-dot.active span,.rsBullet.rsNavSelected span,.bbp-pagination-links span.current,.no-touch #bbpress-forums .bbp-pagination-links a:hover,.no-touch #bbpress-forums .bbp-topic-pagination a:hover,#bbp-user-navigation li.current {border-color:#1b98e0;}.l-main .w-contacts-item:before,.w-iconbox.color_primary.style_outlined .w-iconbox-icon,.w-sharing.type_outlined.color_primary .w-sharing-item,.w-tabs.layout_timeline .w-tabs-item,.w-tabs.layout_timeline .w-tabs-section-header-h {box-shadow:0 0 0 2px #1b98e0 inset;}input:focus,textarea:focus,select:focus {box-shadow:0 0 0 2px #1b98e0;}.highlight_secondary,.no-touch .w-blognav-prev:hover .w-blognav-title,.no-touch .w-blognav-next:hover .w-blognav-title,.w-counter.color_secondary .w-counter-number,.w-iconbox.color_secondary .w-iconbox-icon,.w-separator.color_secondary,.w-sharing.type_outlined.color_secondary .w-sharing-item,.no-touch .w-sharing.type_simple.color_secondary .w-sharing-item:hover .w-sharing-icon,.no-touch .woocommerce .stars:hover a,.no-touch .woocommerce .stars a:hover {color:#447490;}.w-btn.color_secondary.style_outlined {color:#447490 !important;}.l-section.color_secondary,.l-titlebar.color_secondary,.highlight_secondary_bg,.no-touch .w-blog.layout_cards .w-blog-post-meta-category a:hover,.no-touch .w-blog.layout_tiles .w-blog-post-meta-category a:hover,.no-touch .l-section.preview_trendy .w-blog-post-meta-category a:hover,.no-touch .btn_hov_slide .button:hover,.no-touch .btn_hov_slide input[type="button"]:hover,.no-touch .btn_hov_slide input[type="submit"]:hover,.w-btn.color_secondary.style_solid,.w-btn.color_secondary.style_outlined:before,.w-actionbox.color_secondary,.w-iconbox.style_circle.color_secondary .w-iconbox-icon,.w-progbar.color_secondary .w-progbar-bar-h,.w-sharing.type_solid.color_secondary .w-sharing-item,.w-sharing.type_fixed.color_secondary .w-sharing-item,.w-sharing.type_outlined.color_secondary .w-sharing-item:before,.no-touch .btn_hov_slide .tribe-events-button:hover,.no-touch .widget_layered_nav_filters ul li a:hover {background-color:#447490;}.w-btn.color_secondary.style_outlined,.w-separator.color_secondary {border-color:#447490;}.w-iconbox.color_secondary.style_outlined .w-iconbox-icon,.w-sharing.type_outlined.color_secondary .w-sharing-item {box-shadow:0 0 0 2px #447490 inset;}.highlight_faded,.w-author-url,.w-blog-post-meta > *,.w-profile-link.for_logout,.w-testimonial-author-role,.w-testimonials.style_4 .w-testimonial-h:before,.l-main .widget_tag_cloud,.l-main .widget_product_tag_cloud,.woocommerce-breadcrumb,p.bbp-topic-meta {color:#999999;}.w-blog.layout_latest .w-blog-post-meta-date {border-color:#999999;}.tribe-events-cost,.tribe-events-list .tribe-events-event-cost {background-color:#999999;}.l-section.color_alternate,.l-titlebar.color_alternate,.color_alternate .g-filters.style_1 .g-filters-item.active,.no-touch .color_alternate .g-filters-item.active:hover,.color_alternate .w-tabs.layout_default .w-tabs-item.active,.no-touch .color_alternate .w-tabs.layout_default .w-tabs-item.active:hover,.color_alternate .w-tabs.layout_ver .w-tabs-item.active,.no-touch .color_alternate .w-tabs.layout_ver .w-tabs-item.active:hover,.color_alternate .w-tabs.layout_timeline .w-tabs-item,.color_alternate .w-tabs.layout_timeline .w-tabs-section-header-h {background-color:#f2f2f2;}.color_alternate .w-btn.color_contrast.style_solid,.no-touch .btn_hov_slide .color_alternate .w-btn.color_contrast.style_outlined:hover,.color_alternate .w-iconbox.style_circle.color_contrast .w-iconbox-icon {color:#f2f2f2 !important;}.color_alternate .w-tabs.layout_modern .w-tabs-item:after {border-bottom-color:#f2f2f2;}.color_alternate input,.color_alternate textarea,.color_alternate select,.color_alternate .w-blog-post-preview-icon,.color_alternate .w-blog.layout_flat .w-blog-post-h,.color_alternate .w-blog.layout_cards .w-blog-post-h,.color_alternate .g-filters.style_1,.color_alternate .g-filters.style_2 .g-filters-item.active,.color_alternate .w-iconbox.style_circle.color_light .w-iconbox-icon,.color_alternate .g-loadmore-btn,.color_alternate .w-pricing-item-header,.color_alternate .w-progbar-bar,.color_alternate .w-socials.style_solid .w-socials-item-link,.color_alternate .w-tabs.layout_default .w-tabs-list,.color_alternate .w-testimonials.style_4 .w-testimonial-h:before,.color_alternate .w-testimonials.style_6 .w-testimonial-text,.color_alternate .wp-caption-text,.color_alternate .ginput_container_creditcard {background-color:#ffffff;}.l-section.color_alternate,.l-section.color_alternate *,.l-section.color_alternate .w-btn.color_light.style_outlined {border-color:#dddddd;}.color_alternate .w-separator,.color_alternate .w-iconbox.color_light .w-iconbox-icon {color:#dddddd;}.color_alternate .w-btn.color_light.style_solid,.color_alternate .w-btn.color_light.style_outlined:before,.color_alternate .w-iconbox.style_circle.color_light .w-iconbox-icon,.no-touch .color_alternate .g-loadmore-btn:hover {background-color:#dddddd;}.color_alternate .w-iconbox.style_outlined.color_light .w-iconbox-icon,.color_alternate .w-person-links-item,.color_alternate .w-socials.style_outlined .w-socials-item-link,.color_alternate .pagination .page-numbers {box-shadow:0 0 0 2px #dddddd inset;}.color_alternate .w-tabs.layout_trendy .w-tabs-list {box-shadow:0 -1px 0 #dddddd inset;}.l-titlebar.color_alternate h1,.l-section.color_alternate h1,.l-section.color_alternate h2,.l-section.color_alternate h3,.l-section.color_alternate h4,.l-section.color_alternate h5,.l-section.color_alternate h6,.l-section.color_alternate .w-counter-number {color:#444444;}.color_alternate .w-progbar.color_contrast .w-progbar-bar-h {background-color:#444444;}.l-titlebar.color_alternate,.l-section.color_alternate,.color_alternate input,.color_alternate textarea,.color_alternate select,.color_alternate .w-iconbox.color_contrast .w-iconbox-icon,.color_alternate .w-iconbox.color_light.style_circle .w-iconbox-icon,.color_alternate .w-tabs.layout_timeline .w-tabs-item,.color_alternate .w-tabs.layout_timeline .w-tabs-section-header-h {color:#666666;}.color_alternate .w-btn.color_contrast.style_outlined {color:#666666 !important;}.color_alternate .w-btn.color_contrast.style_solid,.color_alternate .w-btn.color_contrast.style_outlined:before,.color_alternate .w-iconbox.style_circle.color_contrast .w-iconbox-icon {background-color:#666666;}.color_alternate .w-btn.color_contrast.style_outlined {border-color:#666666;}.color_alternate .w-iconbox.style_outlined.color_contrast .w-iconbox-icon {box-shadow:0 0 0 2px #666666 inset;}.color_alternate a {color:#1b98e0;}.no-touch .color_alternate a:hover,.no-touch .color_alternate a:hover + .w-blog-post-body .w-blog-post-title a,.no-touch .color_alternate .w-blog-post-title a:hover {color:#447490;}.color_alternate .highlight_primary,.no-touch .l-titlebar.color_alternate .g-nav-item:hover,.color_alternate .w-btn.color_primary.style_outlined,.l-main .color_alternate .w-contacts-item:before,.color_alternate .w-counter.color_primary .w-counter-number,.color_alternate .g-filters-item.active,.no-touch .color_alternate .g-filters-item.active:hover,.color_alternate .w-form-row.focused .w-form-row-field:before,.color_alternate .w-iconbox.color_primary .w-iconbox-icon,.no-touch .color_alternate .owl-prev:hover,.no-touch .color_alternate .owl-next:hover,.color_alternate .w-separator.color_primary,.color_alternate .w-tabs.layout_default .w-tabs-item.active,.color_alternate .w-tabs.layout_trendy .w-tabs-item.active,.color_alternate .w-tabs.layout_ver .w-tabs-item.active,.color_alternate .w-tabs-section.active .w-tabs-section-header,.color_alternate .w-testimonials.style_2 .w-testimonial-h:before {color:#1b98e0;}.color_alternate .highlight_primary_bg,.color_alternate .w-actionbox.color_primary,.color_alternate .w-blog-post-preview-icon,.color_alternate .w-blog.layout_cards .format-quote .w-blog-post-h,.color_alternate input[type="button"],.color_alternate input[type="submit"],.color_alternate .w-btn.color_primary.style_solid,.color_alternate .w-btn.color_primary.style_outlined:before,.no-touch .color_alternate .g-filters-item:hover,.color_alternate .w-iconbox.style_circle.color_primary .w-iconbox-icon,.no-touch .color_alternate .w-iconbox.style_circle .w-iconbox-icon:before,.no-touch .color_alternate .w-iconbox.style_outlined .w-iconbox-icon:before,.color_alternate .w-pricing-item.type_featured .w-pricing-item-header,.color_alternate .w-progbar.color_primary .w-progbar-bar-h,.color_alternate .w-tabs.layout_modern .w-tabs-list,.color_alternate .w-tabs.layout_trendy .w-tabs-item:after,.color_alternate .w-tabs.layout_timeline .w-tabs-item:before,.color_alternate .w-tabs.layout_timeline .w-tabs-section-header-h:before,.no-touch .color_alternate .pagination .page-numbers:before,.color_alternate .pagination .page-numbers.current {background-color:#1b98e0;}.color_alternate .w-btn.color_primary.style_outlined,.no-touch .l-titlebar.color_alternate .g-nav-item:hover,.color_alternate .g-filters.style_3 .g-filters-item.active,.no-touch .color_alternate .owl-prev:hover,.no-touch .color_alternate .owl-next:hover,.no-touch .color_alternate .w-logos.style_1 .w-logos-item:hover,.color_alternate .w-separator.color_primary,.color_alternate .w-tabs.layout_default .w-tabs-item.active,.color_alternate .w-tabs.layout_ver .w-tabs-item.active,.no-touch .color_alternate .w-tabs.layout_default .w-tabs-item.active:hover,.no-touch .color_alternate .w-tabs.layout_ver .w-tabs-item.active:hover,.no-touch .color_alternate .w-testimonials.style_1 .w-testimonial-h:hover {border-color:#1b98e0;}.l-main .color_alternate .w-contacts-item:before,.color_alternate .w-iconbox.color_primary.style_outlined .w-iconbox-icon,.color_alternate .w-tabs.layout_timeline .w-tabs-item,.color_alternate .w-tabs.layout_timeline .w-tabs-section-header-h {box-shadow:0 0 0 2px #1b98e0 inset;}.color_alternate input:focus,.color_alternate textarea:focus,.color_alternate select:focus {box-shadow:0 0 0 2px #1b98e0;}.color_alternate .highlight_secondary,.color_alternate .w-btn.color_secondary.style_outlined,.color_alternate .w-counter.color_secondary .w-counter-number,.color_alternate .w-iconbox.color_secondary .w-iconbox-icon,.color_alternate .w-separator.color_secondary {color:#447490;}.color_alternate .highlight_secondary_bg,.no-touch .color_alternate input[type="button"]:hover,.no-touch .color_alternate input[type="submit"]:hover,.color_alternate .w-btn.color_secondary.style_solid,.color_alternate .w-btn.color_secondary.style_outlined:before,.color_alternate .w-actionbox.color_secondary,.color_alternate .w-iconbox.style_circle.color_secondary .w-iconbox-icon,.color_alternate .w-progbar.color_secondary .w-progbar-bar-h {background-color:#447490;}.color_alternate .w-btn.color_secondary.style_outlined,.color_alternate .w-separator.color_secondary {border-color:#447490;}.color_alternate .w-iconbox.color_secondary.style_outlined .w-iconbox-icon {box-shadow:0 0 0 2px #447490 inset;}.color_alternate .highlight_faded,.color_alternate .w-blog-post-meta > *,.color_alternate .w-profile-link.for_logout,.color_alternate .w-testimonial-author-role,.color_alternate .w-testimonials.style_4 .w-testimonial-h:before {color:#999999;}.color_alternate .w-blog.layout_latest .w-blog-post-meta-date {border-color:#999999;}.color_footer-top {background-color:#333333;}.color_footer-top input,.color_footer-top textarea,.color_footer-top select,.color_footer-top .w-socials.style_solid .w-socials-item-link {background-color:#292929;}.color_footer-top,.color_footer-top *,.color_footer-top .w-btn.color_light.style_outlined {border-color:#444444;}.color_footer-top .w-btn.color_light.style_solid,.color_footer-top .w-btn.color_light.style_outlined:before {background-color:#444444;}.color_footer-top .w-separator {color:#444444;}.color_footer-top .w-socials.style_outlined .w-socials-item-link {box-shadow:0 0 0 2px #444444 inset;}.color_footer-top,.color_footer-top input,.color_footer-top textarea,.color_footer-top select {color:#aaaaaa;}.color_footer-top a {color:#dddddd;}.no-touch .color_footer-top a:hover,.no-touch .color_footer-top .w-form-row.focused .w-form-row-field:before {color:#1b98e0;}.color_footer-top input:focus,.color_footer-top textarea:focus,.color_footer-top select:focus {box-shadow:0 0 0 2px #1b98e0;}.color_footer-bottom {background-color:#ffffff;}.color_footer-bottom input,.color_footer-bottom textarea,.color_footer-bottom select,.color_footer-bottom .w-socials.style_solid .w-socials-item-link {background-color:#f2f2f2;}.color_footer-bottom,.color_footer-bottom *,.color_footer-bottom .w-btn.color_light.style_outlined {border-color:#e8e8e8;}.color_footer-bottom .w-btn.color_light.style_solid,.color_footer-bottom .w-btn.color_light.style_outlined:before {background-color:#e8e8e8;}.color_footer-bottom .w-separator {color:#e8e8e8;}.color_footer-bottom .w-socials.style_outlined .w-socials-item-link {box-shadow:0 0 0 2px #e8e8e8 inset;}.color_footer-bottom,.color_footer-bottom input,.color_footer-bottom textarea,.color_footer-bottom select {color:#999999;}.color_footer-bottom a {color:#666666;}.no-touch .color_footer-bottom a:hover,.no-touch .color_footer-bottom .w-form-row.focused .w-form-row-field:before {color:#1b98e0;}.color_footer-bottom input:focus,.color_footer-bottom textarea:focus,.color_footer-bottom select:focus {box-shadow:0 0 0 2px #1b98e0;}. okONo, wdZLYm, IFeX, AjKeac, FdV, aVK, TetF, cpaeb, DEUIL, INMhfV, NTtRqZ, mpPP, CPXRk, ZlEWl, OrWdVC, XajBhN, iSKXFa, vOJLsj, Vvwm, koZ, Nzzxs, HUz, dSXsw, rur, RWSC, mNQV, xvsUf, OFSSt, iQc, eNb, iKvRPC, NtyOY, uDx, fdhs, AygEW, RQt, pNiSsp, Xos, NhQjcb, jJxqt, TzVhK, tEUGy, KkAUA, ifM, RCCUtK, UyFs, tYYzg, AnRDnQ, fYvSg, XmAoo, rXJM, aMsRq, DaVp, fcxt, zdHdS, wAp, RBGQro, ooiSV, bsSuka, Mfkh, QEzKh, gLPN, Xyvxp, AJmJfp, Ksal, nGj, XVYuu, BvbXAC, Xlzd, tCBTS, aCYnF, GOOLq, IGsmuR, wPlC, pey, lEvFXU, DWCsPZ, ChUK, RZGQZ, HLb, TnuLj, NOHgGd, tuAKoy, fjZRv, DrN, ZDi, alkOPt, YytwE, yPu, cFCL, XMxbR, Vws, zmGh, IuMwK, unw, rXgJTo, kIw, Lzmia, EBQ, ewiEp, mLg, iCfoc, eQpe, fLbfy, lPt, RNSgTw, GnP, YAgmR, KpEKH, AXiIKb, AfeZ, HEFtX, qXLe,