

Phạm Thanh Phong
Giới thiệu về bản thân



































What's the difference if one web page starts with
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
and If page starts with
<!DOCTYPE html>
<html>
<head>
<!-- without X-UA-Compatible meta -->
If there is no difference, I suppose I can just ignore the X-UA-Compatible
meta header, since I just want it to be rendered in most standard mode in all IE versions.

12 Answers
Sorted by: Highest score (default) Trending (recent votes count more) Date modified (newest first) Date created (oldest first) 1964November 2021 Update
As this answer is now 10+ years old my recommendation would be to leave this tag out altogether, unless you must support old legacy browsers.
October 2015 Update
This answer was posted several years ago and now the question really should be should you even consider using the X-UA-Compatible
tag on your site? with the changes Microsoft has made to its browsers (more on those below).
Depending upon what Microsoft browsers you support you may not need to continue using the X-UA-Compatible
tag. If you need to support IE9 or IE8, then I would recommend using the tag. If you only support the latest browsers (IE11 and/or Edge) then I would consider dropping this tag altogether. If you use Twitter Bootstrap and need to eliminate validation warnings, this tag must appear in its specified order. Additional info below:
The X-UA-Compatible
meta tag allows web authors to choose what version of Internet Explorer the page should be rendered as. IE11 has made changes to these modes; see the IE11 note below. Microsoft Edge, the browser that replaced IE11, only honors the X-UA-Compatible
meta tag in certain circumstances. See the Microsoft Edge note below.
According to Microsoft, when using the X-UA-Compatible
tag, it should be as high as possible in your document head
:
If you are using the X-UA-Compatible META tag you want to place it as close to the top of the page's HEAD as possible. Internet Explorer begins interpreting markup using the latest version. When Internet Explorer encounters the X-UA-Compatible META tag it starts over using the designated version's engine. This is a performance hit because the browser must stop and restart analyzing the content.
Here are your options:
- "IE=edge"
- "IE=11"
- "IE=EmulateIE11"
- "IE=10"
- "IE=EmulateIE10"
- "IE=9"
- "IE=EmulateIE9
- "IE=8"
- "IE=EmulateIE8"
- "IE=7"
- "IE=EmulateIE7"
- "IE=5"
To attempt to understand what each means, here are definitions provided by Microsoft:
Internet Explorer supports a number of document compatibility modes that enable different features and can affect the way content is displayed:
- Edge mode tells Internet Explorer to display content in the highest mode available. With Internet Explorer 9, this is equivalent to IE9 mode. If a future release of Internet Explorer supported a higher compatibility mode, pages set to edge mode would appear in the highest mode supported by that version. Those same pages would still appear in IE9 mode when viewed with Internet Explorer 9. Internet Explorer supports a number of document compatibility modes that enable different features and can affect the way content is displayed:
- IE11 mode provides the highest support available for established and emerging industry standards, including the HTML5, CSS3 and others.
- IE10 mode provides the highest support available for established and emerging industry standards, including the HTML5, CSS3 and others.
- IE9 mode provides the highest support available for established and emerging industry standards, including the HTML5 (Working Draft), W3C Cascading Style Sheets Level 3 Specification (Working Draft), Scalable Vector Graphics (SVG) 1.0 Specification, and others. [Editor Note: IE 9 does not support CSS3 animations].
- IE8 mode supports many established standards, including the W3C Cascading Style Sheets Level 2.1 Specification and the W3C Selectors API; it also provides limited support for the W3C Cascading Style Sheets Level 3 Specification (Working Draft) and other emerging standards.
- IE7 mode renders content as if it were displayed in standards mode by Internet Explorer 7, whether or not the page contains a <!DOCTYPE> directive.
- Emulate IE9 mode tells Internet Explorer to use the <!DOCTYPE> directive to determine how to render content. Standards mode directives are displayed in IE9 mode and quirks mode directives are displayed in IE5 mode. Unlike IE9 mode, Emulate IE9 mode respects the <!DOCTYPE> directive.
- Emulate IE8 mode tells Internet Explorer to use the <!DOCTYPE> directive to determine how to render content. Standards mode directives are displayed in IE8 mode and quirks mode directives are displayed in IE5 mode. Unlike IE8 mode, Emulate IE8 mode respects the <!DOCTYPE> directive.
- Emulate IE7 mode tells Internet Explorer to use the <!DOCTYPE> directive to determine how to render content. Standards mode directives are displayed in Internet Explorer 7 standards mode and quirks mode directives are displayed in IE5 mode. Unlike IE7 mode, Emulate IE7 mode respects the <!DOCTYPE> directive. For many web sites, this is the preferred compatibility mode.
- IE5 mode renders content as if it were displayed in quirks mode by Internet Explorer 7, which is very similar to the way content was displayed in Microsoft Internet Explorer 5.
IE10 NOTE: As of IE10, quirks mode behaves differently than it did in earlier versions of the browser. In IE9 and earlier versions, quirks mode restricted the webpage to the features supported by IE5.5. In IE10, quirks mode conforms to the differences specified in the HTML5 specification.
Personally, I always choose the http-equiv="X-UA-Compatible" content="IE=edge"
meta tag, as older versions have plenty of bugs, and I do not want IE to decide to go into "Compatibility mode" and show my site as IE7 vs IE8 or 9. I always prefer the latest version of IE.
IE11
From Microsoft:
Starting with IE11, edge mode is the preferred document mode; it represents the highest support for modern standards available to the browser.
Use the HTML5 document type declaration to enable edge mode:
<!doctype html>
Edge mode was introduced in Internet Explorer 8 and has been available in each subsequent release. Note that the features supported by edge mode are limited to those supported by the specific version of the browser rendering the content.
Starting with IE11, document modes are deprecated and should no longer be used, except on a temporary basis. Make sure to update sites that rely on legacy features and document modes to reflect modern standards.
If you must target a specific document mode so that your site functions while you rework it to support modern standards and features, be aware that you're using a transitional feature, one that may not be available in future versions.
If you currently use the x-ua-compatible header to target a legacy document mode, it's possible your site won't reflect the best experience available with IE11.
Microsoft Edge (Replacement for Internet Explorer that comes bundled with Windows 10)
Information on X-UA-Compatible
meta tag for the "Edge" version of IE. From Microsoft:
Introducing the “living” Edge document mode
As we announced in August 2013, we are deprecating document modes as of IE11. With our latest platform updates, the need for legacy document modes is primarily limited to Enterprise legacy web apps. With new architectural changes, these legacy document modes will be isolated from changes in the “living” Edge mode, which will help to guarantee a much higher level of compatibility for customers who depend on those modes and help us move even faster on improvements in Edge. IE will still honor document modes served by intranet sites, sites on the Compatibility View list, and when used with Enterprise Mode only.
Public Internet sites will be rendered with the new Edge mode platform (ignoring X-UA-Compatible). It is our goal that Edge is the "living" document mode from here out and no further document modes will be introduced going forward.
With the changes in Microsoft Edge to no longer support document modes in most cases, Microsoft has a tool to scan your site to check and see if it has code that is not compatible with Edge.
Chrome=1 Info for IE
There is also chrome=1
that you can use or use together with one of the above options like: <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
. chrome=1
is for Google's Chrome Frame which is defined as:
Google Chrome Frame is an open source browser plug-in. Users who have the plug-in installed have access to Google Chrome's open web technologies and speedy JavaScript engine when they open pages in the browser.
Google Chrome Frame seamlessly enhances your browsing experience in Internet Explorer. It displays Google Chrome Frame enabled sites using Google Chrome’s rendering technology, giving you access to the latest HTML5 features as well as Google Chrome’s performance and security features without in any way interrupting your usual browser usage.
When Google Chrome Frame is installed, the web just gets better without you having to think about it.
But for that plug-in to work you must use chrome=1
in the X-UA-Compatible
meta tag.
More info on Chrome Frame can be found here.
Note: Google Chrome Frame only works for IE6 through IE9, and was retired on February 25, 2014. More info can be found here. Thanks to @mck for the link.
Validation:
HTML5:
The page will validate using the W3 Validator only when using <meta http-equiv="X-UA-Compatible" content="IE=Edge">
. For other values it will throw the error: A meta element with an http-equiv attribute whose value is X-UA-Compatible must have a content attribute with the value IE=edge.
In other words, if you have IE=edge,chrome=1
it will not validate. I ignore this error completely as modern browsers simply ignore this line of code.
If you must have completely valid code then consider doing this on the server level by setting HTTP header. As a note, Microsoft says, If both of these instructions are sent (meta and HTTP), the developer's preference (meta element) takes precedence over the web server setting (HTTP header).
See olibre's answer or bitinn's answer for more details on how to set an HTTP header.
XHTML
There isn't an issue with validation when using <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
as long as the tag is properly closed (i.e. />
vs >
).
Twitter Bootstrap (V3 and below)
This tag has been strongly recommended by the Bootstrap team since at least 2014, and Bootlint, the linter authored by the twbs team continues to throw a warning when the tag is omitted. The linter distinguishes between warnings and errors, and as such the severity of omitting this tag may be considered minor.
For more information on X-UA-Compatible
see Microsoft's Website Defining Document Compatibility.
For more information on what IE supports see caniuse.com.
For more information on Twitter Bootstrap requirements, see the bootlint project wiki page.
Share Improve this answer Follow edited Nov 16, 2021 at 18:44 answered Jul 21, 2011 at 5:22
- 49 If I don't have "X-UA-Compatible" in headers, what would happen? – Morgan Cheng CommentedJul 21, 2011 at 7:12
- 53 Basically what happens is when you have the X-UA-Compatible it tells IE how to behave in regards to the value you set (IE=edge etc) if it is not there IE will show the site how it thinks best it should be shown. That could be compatibility mode or that could be the latest version of IE. Whatever Microsoft/IE thinks is best. Make sense? – L84 CommentedJul 21, 2011 at 18:09
- 2 @TravisJ - From my understanding the highest mode available basically means IE 8 can support up to IE8 modes, IE9 can support IE9 modes and so on. I added some definitions for each mode provided by Microsoft. – L84 CommentedSep 24, 2012 at 23:59
- 11 @AdrienBe - I completely agree! So far IE 10 has been the best for me but I despise any other version. One time I had a page setup with some effects around 200-300 lines of HTML and about 20 minutes of coding. To get IE to work I had to add another 1,000 lines of code (mostly 3rd party javascript)and 2-3 hours of work! I really hate IE => – L84 CommentedMar 28, 2013 at 2:02
- 9 Google Chrome Frame will be retired in January 2014: blog.chromium.org/2013/06/retiring-chrome-frame.html – mck CommentedJun 15, 2013 at 17:46
Use content=
"IE=edge,chrome=1"
Skip other X-UA-Compatible
modes
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
--------------------------
- No compatibility icon
The IE9 Address bar does not show up the Compatibility View button
and the page does not also show up a jumble of out-of-place menus, images, and text boxes. - Features
This meta tag is required to enablejavascript::JSON.parse()
on IE8
(even when<!DOCTYPE html>
is present) - Correctness
Rendering/Execution of modern HTML/CSS/JavaScript is more valid (nicer). - Performance
The Trident rendering engine should run faster in its edge mode.
Usage
In your HTML
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
IE=edge
means IE should use the latest (edge) version of its rendering enginechrome=1
means IE should use the Chrome rendering engine if installed
Or better in the configuration of your web server:
(see also the RiaD's answer)
- Apache as proposed by pixeline
<IfModule mod_setenvif.c> <IfModule mod_headers.c> BrowserMatch MSIE ie Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie </IfModule> </IfModule> <IfModule mod_headers.c> Header append Vary User-Agent </IfModule>
- Nginx as proposed by Stef Pause
server { #... add_header X-UA-Compatible "IE=Edge,chrome=1"; }
- Varnish proxy as proposed by Lucas Riutzel
sub vcl_deliver { if( resp.http.Content-Type ~ "text/html" ) { set resp.http.X-UA-Compatible = "IE=edge,chrome=1"; } }
- IIS (since v7)
<configuration> <system.webServer> <httpProtocol> <customHeaders> <add name="X-UA-Compatible" value="IE=edge,chrome=1" /> </customHeaders> </httpProtocol> </system.webServer> </configuration>
Microsoft recommends Edge mode since IE11
As noticed by Lynda (see comments), the Compatibility changes in IE11 recommends Edge mode:
Starting with IE11, edge mode is the preferred document mode; it represents the highest support for modern standards available to the browser.
But the position of Microsoft was not clear. Another MSDN page did not recommend Edge mode:
Because Edge mode forces all pages to be opened in standards mode, regardless of the version of Internet Explorer, you might be tempted to use this for all pages viewed with Internet Explorer. Don't do this, as the
X-UA-Compatible
header is only supported starting with Windows Internet Explorer 8.
Instead, Microsoft recommended using <!DOCTYPE html>
:
If you want all supported versions of Internet Explorer to open your pages in standards mode, use the HTML5 document type declaration [...]
As Ricardo explains (in the comments below) any DOCTYPE (HTML4, XHTML1...) can be used to trigger Standards Mode, not only HTML5's DOCTYPE. The important thing is to always have a DOCTYPE in the page.
Clara Onager has even noticed in an older version of Specifying legacy document modes:
Edge mode is intended for testing purposes only; do not use it in a production environment.
It is so confusing that Usman Y thought Clara Onager was speaking about:
The [...] example is provided for illustrative purposes only; don't use it in a production environment.
<meta http-equiv="X-UA-Compatible" content="IE=7,9,10" >
Well... In the rest of this answer I give more explanations why using content="IE=edge,chrome=1"
is a good practice in production.
History
For many years (2000 to 2008), IE market share was more than 80%. And IE v6 was considered as a de facto standard (80% to 97% market share in 2003, 2004, 2005 and 2006 for IE6 only, more market share with all IE versions).
As IE6 was not respecting Web standards, developers had to test their website using IE6. That situation was great for Microsoft (MS) as web developers had to buy MS products (e.g. IE cannot be used without buying Windows), and it was more profit-making to stay non-compliant (i.e. Microsoft wanted to become the standard excluding other companies).
Therefore many many sites were IE6 compliant only, and as IE was not compliant with web standard, all these web sites was not well rendered on standards compliant browsers. Even worse, many sites required only IE.
However, at this time, Mozilla started Firefox development respecting as much as possible all the web standards (other browser were implemented to render pages as done by IE6). As more and more web developers wanted to use the new web standards features, more and more websites were more supported by Firefox than IE.
When IE market sharing was decreasing, MS realized staying standard incompatible was not a good idea. Therefore MS started to release new IE version (IE8/IE9/IE10) respecting more and more the web standards.
The web-incompatible issue
But the issue is all the websites designed for IE6: Microsoft could not release new IE versions incompatible with these old IE6-designed websites. Instead of deducing the IE version a website has been designed, MS requested developers to add extra data (X-UA-Compatible
) in their pages.
IE6 is still used in 2016
Nowadays, IE6 is still used (0.7% in 2016) (4.5% in January 2014), and some internet websites are still IE6-only-compliant. Some intranet website/applications are tested using IE6. Some intranet website are 100% functional only on IE6. These companies/departments prefer to postpone the migration cost: other priorities, nobody no longer knows how the website/application has been implemented, the owner of the legacy website/application went bankrupt...
China represents 50% of IE6 usage in 2013, but it may change in the next years as Chinese Linux distribution is being broadcast.
Be confident with your web skills
If you (try to) respect web standard, you can simply always use http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"
. To keep compatibility with old browsers, just avoid using latest web features: use the subset supported by the oldest browser you want to support. Or If you want to go further, you may adopt concepts as Graceful degradation, Progressive enhancement and Unobtrusive JavaScript. (You may also be pleased to read What should a web developer consider?.)
Do do not care about the best IE version rendering: this is not your job as browsers have to be compliant with web standards. If your site is standard compliant and use moderately latest features, therefore browsers have to be compliant with your website.
Moreover, as there are many campaigns to kill IE6 (IE6 no more, MS campaign), nowadays you may avoid wasting time with IE testing!
Personal IE6 experience
In 2009-2012, I worked for a company using IE6 as the official single browser allowed. I had to implement an intranet website for IE6 only. I decided to respect web standard but using the IE6-capable subset (HTML/CSS/JS).
It was hard, but when the company switched to IE8, the website was still well rendered because I had used Firefox and firebug to check the web-standard compatibility ;)
Share Improve this answer Follow edited May 23, 2017 at 11:55
- 2 'Edge mode is intended for testing purposes only; do not use it in a production environment.' See msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx – Carl Onager CommentedApr 22, 2013 at 14:54
- 5 Please @ClaraOnager take some time to explain what is wrong in my answer (from your point of view). Even if MS does not recommend use of Edge mode in production environment, there are good reasons to use it in production environment. It is important to technically clarify our best practices. I like to share my knowledge and experiences. I hope you too. We can improve together ;) Cheers – oHo CommentedApr 23, 2013 at 9:55
- 2 Hi @Ricardo, I agree with you. Microsoft says "If you want all supported versions of Internet Explorer to open your pages in standards mode, use the HTML5 [...]" in the section Understanding legacy document modes (see the Tip). Maybe my explanation is unclear... Maybe I have misunderstood something... I have changed my text... What do you think about my changes? is it OK for you? What do you advice to change/improve within my answer? Thanks for your feedback. Cheers ;-) – oHo CommentedJun 18, 2013 at 5:12
- 5 @ClaraOnager ...in your first answer you are pointing incorrectly, in the reference page.. MS says not to use in production environment for : <meta http-equiv="X-UA-Compatible" content="IE=7,9,10" > not the other Edge things . – Usman Younas CommentedOct 9, 2013 at 16:25
- 3 About Edge Mode being used in production environment. From Microsoft:
Starting with IE11, edge mode is the preferred document mode; it represents the highest support for modern standards available to the browser.
– L84 CommentedOct 21, 2013 at 4:16
The difference is that if you only specify the DOCTYPE
, IE’s Compatibility View Settings take precedence. By default these settings force all intranet sites into Compatibility View regardless of DOCTYPE
. There’s also a checkbox to use Compatibility View for all websites, regardless of DOCTYPE
.
X-UA-Compatible
overrides the Compatibility View Settings, so the page will render in standards mode regardless of the browser settings. This forces standards mode for:
- intranet pages
- external web pages when the computer administrator has chosen “Display all websites in Compatibility View” as the default—think big companies, governments, universities
- when you unintentionally end up on the Microsoft Compatibility View List
- cases where users have manually added your website to the list in Compatibility View Settings
DOCTYPE
alone cannot do that; you will end up in one of the Compatibility View modes in these cases regardless of DOCTYPE
.
If both the meta
tag and the HTTP header are specified, the meta
tag takes precedence.
This answer is based on examining the complete rules for deciding document mode in IE8, IE9, and IE10. Note that looking at the DOCTYPE
is the very last fallback for deciding the document mode.
- 1 In intranet scenario, by default IE10 renders in compatibility mode. See stackoverflow.com/questions/13284083/… . This tag is not required by default for internet, but is required (by default) when using myintenralserver/myapp . I wanted to add this comment, because the internet vs. intranet difference was only clear from the text in the screenshot, not in the text of any answers on the page. – yzorg CommentedApr 23, 2013 at 13:08
- You’re right, I should have been clearer about that. I rewrote the post; let me know if there’s anything else I should address. Thanks! – andrewdotn CommentedApr 23, 2013 at 16:32
- Thanks! this answer is lot more clearer than other answers regarding intranet sites. Other answers go into technical details as to why and how. I hate MS IE. Also good writing: one paragraph makes it clear as to why we need the meta tag. Bravo – Aniket Inge CommentedMay 4, 2016 at 10:42
- 3 I wish I could upvote this answer a hundred times. Life-saving screen grab right there. Blood pressure lowering as I type this... – EvilDr CommentedMar 17, 2017 at 7:07
- Awesome awesome awesome! Thank you very much for this answer. – Seanosapien CommentedMay 16, 2018 at 9:28
Use this to force IE to hide that annoying browser compatibility button in the address bar:
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
Share Improve this answer Follow answered Feb 13, 2012 at 9:25 
- 1 'Edge mode is intended for testing purposes only; do not use it in a production environment.' See msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx – Carl Onager CommentedApr 22, 2013 at 14:54
- 4 For good measure I use
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
with thechrome=1
directive so it prompts IE6, 7, 8 users to install/use Chrome Frame. Even HTML5 Boilerplate uses it. – Ricardo Zea CommentedJun 18, 2013 at 21:49 - 10 @ClaraOnager Although Microsoft says it, it doesn't necessarily mean they're right. I've used
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
since the day it came out without a problem at all. Actually, I've saved my team and myself hundreds of headaches already by making users' IE use its latest engine to render the pages we build. Contrary to you and Microsoft, I do recommend everyone to use the above meta tag every time. As long as IE is still around, we'll be "forced" to use this meta tag :p – Ricardo Zea CommentedJun 18, 2013 at 21:56 - This has changed with IE11. This version has taken a dramatic move to the world of browsers following official standards. It has gone to the extremes as to not even identifying itself as Internet Explorer! Now it says it's "Netscape" and not including anything in the browser info to give away it's true identity. If you still encounter any quirks in the IE browser from this version on, you need to force it into IE10 by setting
<meta http-equiv="X-UA-Compatible" content="IE=10">
. Then it reports itself as Microsoft Internet Explorer. – awe CommentedNov 28, 2013 at 7:47 - facing same related issue, if any one can help me out : stackoverflow.com/questions/22013880/… – dsi CommentedFeb 26, 2014 at 5:28
Since I can not add a comment to the marked answer I will just post this here.
In addition to the correct answer you can indeed have this validated. Since this meta tag is only directed for IE all you need to do is add a IE conditional.
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<![endif]-->
Doing this is just like adding any other IE conditional statement and only works for IE and no other browsers will be affected.
Share Improve this answer Follow answered Jun 15, 2014 at 14:38- 5 Conditional comments should not be used EXCEPT to target HTML for <=IE9. (This was true even when this answer was written) – EKW CommentedJun 26, 2016 at 3:43
I think this diagram from Microsoft explains all. In order to tell IE how to render the content, !DOCTYPE has to work with X-UA-Compatible meta tag. !DOCTYPE by itself has no affect on changing IE Document Mode.
http://ie.microsoft.com/testdrive/ieblog/2010/Mar/02_HowIE8DeterminesDocumentMode_3.png
Share Improve this answer Follow edited Dec 14, 2017 at 14:55
- 3 Here is an updated version that includes IE9. OMG... ie.microsoft.com/testdrive/ieblog/2010/Jun/… – Spiralis CommentedDec 20, 2012 at 12:55
- 3 And this one includes IE10: msdn.microsoft.com/en-us/library/ff406036%28v=vs.85%29.aspx The different chapters have their own separate flowcharts... – Spiralis CommentedDec 20, 2012 at 13:02
- You've misread that flow diagram. In the absense of X-UA-Compatible the browser will look for <!DOCTYPE>. If it finds one, it renders in standards mode (aka "EmulateIE8"). If it doesn't, it reverts to "Quirks Mode". – Chuck Le Butt CommentedOct 13, 2014 at 20:14
- 1 Thanks for uploading the image to Stackoverflow. The original links to Microsoft are all dead. – Elmue CommentedMay 13, 2020 at 21:18
Just one sentence to say Instruct Internet Explorer to use its latest rendering engine
<meta http-equiv="x-ua-compatible" content="ie=edge">
Share Improve this answer Follow answered Nov 8, 2017 at 18:53 
Just for completeness, you don't actually have to add it to your HTML (which is unknown http-equiv in HTML5)
Do this and never look back (first example for apache, second for nginx)
Header set X-UA-Compatible "IE=Edge,chrome=1"
add_header X-UA-Compatible "IE=Edge,chrome=1";
Share Improve this answer Follow edited May 18, 2013 at 10:04 
- 2 @HueiTan - I think the poster is saying that when you try to validate the page using the W3 Validator it will throw an error:
Bad value X-UA-Compatible for attribute http-equiv on element meta.
- This doesn't mean it won't work. It just is not valid code. – L84 CommentedJun 7, 2014 at 1:50
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
To make this line work as expected, make sure that:
- It is the first element right after
<head>
- No conditional comments are used before the meta tag, e. g. on the
<html>
element
Otherwise some IE versions simply ignore it.
UPDATE
These two rules are simplified but they are easy to remember and to verify. Despite MSDN docs stating you can put title and other meta tags before this one, I would not recommend to do so.
How make it work with conditional comments.
Interesting article about the order of elements in the head. (blogs.msdn.com, for IE)
REFERENCE
From the MSDN documentation:
Share Improve this answer Follow edited May 23, 2017 at 11:55The
X-UA-Compatible
[...] must appear in the header of the webpage (the HEAD section) before all other elements except for the title element and other meta elements.

if you use your website in the same network as the server IE likes to switch to compability mode despite DOCTYPE.
Adding meta http-equiv="X-UA-Compatible" content="IE=Edge"
disables this unwanted behaviour.

- Another word for 'same network as the server' is intranet ... so basically IE10 is broken by default for all intranet sites. See screenshot in @AndrewNeitsch answer. – yzorg CommentedApr 23, 2013 at 13:10
This is LITERALLY 1 google query away, but here goes:
http://msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx
Understanding legacy document modes
Use the following value to display the webpage in edge mode, which is the highest standards mode supported by Internet Explorer, from Internet Explorer 6 through IE11.
<meta http-equiv="x-ua-compatible" content="IE=edge"
Note that this is functionally equivalent to using the HTML5 doctype. It places Internet Explorer into the highest supported document mode. Edge most is most useful for regularly maintained websites that are routinely tested for interoperability between multiple browsers, including Internet Explorer.
Note Starting with IE11, edge mode is considered the preferred document mode. (In earlier versions, it was considered experimental.) To learn more, see Document modes are deprecated. Starting with Windows Internet Explorer 8, some web developers used the edge mode meta element to hide the Compatibility View button on the address bar. As of IE11, this is no longer necessary as the button has been removed from the address bar. Because it forces all pages to be opened in standards mode, regardless of the version of Internet Explorer, you might be tempted to use edge mode for all pages viewed with Internet Explorer. Don't do this, as the X-UA-Compatible header is only supported starting with Internet Explorer 8.
Tip If you want all supported versions of Internet Explorer to open your pages in standards mode, use the HTML5 document type declaration, as shown in the earlier example.
Also among the search results is:
Share Improve this answer Follow edited May 23, 2017 at 12:262.1.3.5 X-UA-Compatibility Meta Tag and HTTP Response Header
This functionality will not be implemented in any version of Microsoft Edge.
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" />
See https://msdn.microsoft.com/en-us/library/ff955275(v=vs.85).aspx
Yes, I know that I'm late to the party, but I just had some issues and discussions, and in the end my boss had me remove the X-UA-Compatible
tag remove from all documents I've been working on.
If this information is out-of-date or no longer relevant, please correct me.
Share Improve this answer Follow answered Dec 19, 2017 at 18:56Start asking to get answers
Find the answer to your question by asking.
Ask questionExplore related questions
See similar questions with these tags.
- The Overflow Blog
- Next-level observability: live breakpoint debugging
- Is the enterprise (actually) ready for AI?
- Featured on Meta
- After 16 years, we’re renewing the Brand
- Inviting more thoughts: Do these challenges resonate beyond Stack Overflow?...
- Policy: Generative AI (e.g., ChatGPT) is banned
- Discussions learnings and potential next steps
Linked
17What will this do: <meta http-equiv="X-UA-Compatible" content="IE=edge">? 7What is IE=Edge in GCF used for? 2Want to run my website in IE11, but in edge document mode 1Avoid http-equiv <meta> tags 383Force IE compatibility mode off using tags 229IE8 issue with Twitter Bootstrap 3 200Override intranet compatibility mode IE8 234"X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" 77How to disable Compatibility View in IE 40How do I fix twitter-bootstrap on IE? See more linked questionsRelated
10What is the point of X-UA-Compatible? 3any side effect if I add ' <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">' on my page? 2How does IE8 handle this tag <meta http-equiv=“X-UA-Compatible” content=“IE=9” /> 57What is X-UA-Compatible when it references IE=edge,chrome=1? 3Misunderstand of <meta http-equiv=”X-UA-Compatible“ content=”IE=edge“> 1Does <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> disables conditionals? 12Does meta http-equiv="X-UA-Compatible" content="IE=edge" impact on non-IE explorer? 0meta tag X-UA-Compatible IE-edge causes problems 0In the X-UA-Compatible tag, what do the "X" and "UA" actually stand for? 0Would rendering problems occur on Microsoft edge browser if I use '<meta http-equiv="X-UA-Compatible" content="IE=7" />'?Hot Network Questions
- Using ST_Distance with serialized Geography Points vs ST_MakePoint in query
- Postgres index not used when select includes timestamp::text conversion
- What is the best interpretation of Psalm 7:2? Does "dragging" or "rending" capture the intended meaning?
- What are the lights on this older instrument cluster?
- Why do airlines include dependent territories when they ask for Nationality?
- How to strum guitar chords; Em and E sound the same
- Do the effects of Enlarge/Reduce continue to apply after using Wild Shape?
- Earliest mention or portrayal of an orbital computing/data centre
- Meaning of the word "natural" in math phrases (eg, natural mapping, natural bijection, natural transformation, natural space, natural functor, etc.)
- Are the dark spots on this frozen beef safe to eat or a sign of spoil?
- Question Regarding Use of Open Data in a Publication
- Is this root dangerous and should be cut away (field maple)?
- How to identify the root cause of drive corruption?
- Is the scene in Superman III where Gus Gorman wears a blanket as a cape and skis down a makeshift slope a reference to DC Comics' Black Racer?
- `.initial:n` leads to an error when after `.inherit:n`?
- Filtering layer based on proximity to another layer in QGIS
- Does a cat have the same IQ as a two year old child?
- Trilogy(?) about time/dimension travel, not high tech, (spoiler) MC dies halfway through
- Prove that it's always possible to remove one rook so that the remaining rooks still satisfy the same property of no empty ranks or files.
- FPGA metastability when going from a slow clock to faster clock?
- Bringing less than $800 of items with me to USA for selling
- When does the trace element of a finite group algebra have a square root?
- Build a `tabularray` content with LaTeX3
- Bardic Performance Rules Question - Lingering Performance and Moving in the Turn Order Without Skipping Your Turn
Stack Overflow
Products
Company
Stack Exchange Network
Site design / logo © 2025 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 202
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<meta name="csrf-token" content="HZgiGRcLtEyJgVuqfhUuaDNrNjyddU3AOAlk0vaR"> | |
<link rel="icon" type="image/png" href="https://rs.olm.vn/images/icon.png?v=1747219608" /> | |
<link rel="preload" as="style" href="https://rs.olm.vn/css/font-awesome/fontawesome.css" /> | |
<link rel="preload" as="style" href="https://rs.olm.vn/css/font-awesome/regular.css" /> | |
<link rel="preload" as="style" href="https://rs.olm.vn/css/font-awesome/brands.css" /> | |
<link rel="preload" as="style" href="https://rs.olm.vn/css/font-awesome/solid.css"> | |
<link href="https://fonts.googleapis.com/css?family=Baloo%7cOpen+Sans:400,700%7cMuli:400,500,700&display=swap" rel="stylesheet" /> | |
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet" /> | |
<style> | |
:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--olm: #cef79f;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:0.9rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover:not(.not-hover){color:#0056b3;text-decoration:none}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover:not(.not-hover){color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.25rem}h2,.h2{font-size:1.8rem}h3,.h3{font-size:1.575rem}h4,.h4{font-size:1.35rem}h5,.h5{font-size:1.125rem}h6,.h6{font-size:0.9rem}.lead{font-size:1.125rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}small,.small{font-size:80%;font-weight:400}mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.125rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1250px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col-xl,.col-xl-auto,.col-xl-12,.col-xl-11,.col-xl-10,.col-xl-9,.col-xl-8,.col-xl-7,.col-xl-6,.col-xl-5,.col-xl-4,.col-xl-3,.col-xl-2,.col-xl-1,.col-lg,.col-lg-auto,.col-lg-12,.col-lg-11,.col-lg-10,.col-lg-9,.col-lg-8,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-lg-2,.col-lg-1,.col-md,.col-md-auto,.col-md-12,.col-md-11,.col-md-10,.col-md-9,.col-md-8,.col-md-7,.col-md-6,.col-md-5,.col-md-4,.col-md-3,.col-md-2,.col-md-1,.col-sm,.col-sm-auto,.col-sm-12,.col-sm-11,.col-sm-10,.col-sm-9,.col-sm-8,.col-sm-7,.col-sm-6,.col-sm-5,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-1,.col,.col-auto,.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media(min-width: 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media(min-width: 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media(min-width: 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media(min-width: 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover:not(.not-hover){color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8daff}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7abaff}.table-hover .table-primary:hover:not(.not-hover){background-color:#9fcdff}.table-hover .table-primary:hover:not(.not-hover)>td,.table-hover .table-primary:hover:not(.not-hover)>th{background-color:#9fcdff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d6d8db}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#b3b7bb}.table-hover .table-secondary:hover:not(.not-hover){background-color:#c8cbcf}.table-hover .table-secondary:hover:not(.not-hover)>td,.table-hover .table-secondary:hover:not(.not-hover)>th{background-color:#c8cbcf}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover:not(.not-hover){background-color:#b1dfbb}.table-hover .table-success:hover:not(.not-hover)>td,.table-hover .table-success:hover:not(.not-hover)>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover:not(.not-hover){background-color:#abdde5}.table-hover .table-info:hover:not(.not-hover)>td,.table-hover .table-info:hover:not(.not-hover)>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover:not(.not-hover){background-color:#ffe8a1}.table-hover .table-warning:hover:not(.not-hover)>td,.table-hover .table-warning:hover:not(.not-hover)>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover:not(.not-hover){background-color:#f1b0b7}.table-hover .table-danger:hover:not(.not-hover)>td,.table-hover .table-danger:hover:not(.not-hover)>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover:not(.not-hover){background-color:#ececf6}.table-hover .table-light:hover:not(.not-hover)>td,.table-hover .table-light:hover:not(.not-hover)>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover:not(.not-hover){background-color:#b9bbbe}.table-hover .table-dark:hover:not(.not-hover)>td,.table-hover .table-dark:hover:not(.not-hover)>th{background-color:#b9bbbe}.table-olm,.table-olm>th,.table-olm>td{background-color:#f1fde4}.table-olm th,.table-olm td,.table-olm thead th,.table-olm tbody+tbody{border-color:#e6fbcd}.table-hover .table-olm:hover:not(.not-hover){background-color:#e5fbcc}.table-hover .table-olm:hover:not(.not-hover)>td,.table-hover .table-olm:hover:not(.not-hover)>th{background-color:#e5fbcc}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover:not(.not-hover){background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover:not(.not-hover)>td,.table-hover .table-active:hover:not(.not-hover)>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover:not(.not-hover){color:#fff;background-color:rgba(255,255,255,.075)}@media(max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media(max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media(max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media(max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:.375rem .75rem;font-size:0.9rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus:not(.not-hover){color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.125rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.7875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:0.9rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.7875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.125rem;line-height:1.5;border-radius:.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.7875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc(0.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#28a745}.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-control-input:valid~.custom-control-label,.custom-control-input.is-valid~.custom-control-label{color:#28a745}.was-validated .custom-control-input:valid~.custom-control-label::before,.custom-control-input.is-valid~.custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid:checked~.custom-control-label::before,.custom-control-input.is-valid:checked~.custom-control-label::before{border-color:#34ce57;background:#34ce57 linear-gradient(180deg, #52d570, #34ce57) repeat-x}.was-validated .custom-control-input:valid:focus~.custom-control-label::before,.custom-control-input.is-valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid~.custom-file-label,.custom-file-input.is-valid~.custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid:focus~.custom-file-label,.custom-file-input.is-valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.7875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc(0.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc3545}.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-control-input:invalid~.custom-control-label,.custom-control-input.is-invalid~.custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid~.custom-control-label::before,.custom-control-input.is-invalid~.custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,.custom-control-input.is-invalid:checked~.custom-control-label::before{border-color:#e4606d;background:#e4606d linear-gradient(180deg, #e87883, #e4606d) repeat-x}.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,.custom-control-input.is-invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid~.custom-file-label,.custom-file-input.is-invalid~.custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid:focus~.custom-file-label,.custom-file-input.is-invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media(min-width: 576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:0.9rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover:not(.not-hover){color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background:#007bff linear-gradient(180deg, #268fff, #007bff) repeat-x;border-color:#007bff}.btn-primary:hover:not(.not-hover){color:#fff;background:#0069d9 linear-gradient(180deg, #2680df, #0069d9) repeat-x;border-color:#0062cc}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff;background-image:none}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;background-image:none;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background:#6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x;border-color:#6c757d}.btn-secondary:hover:not(.not-hover){color:#fff;background:#5a6268 linear-gradient(180deg, #737a7f, #5a6268) repeat-x;border-color:#545b62}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d;background-image:none}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;background-image:none;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background:#28a745 linear-gradient(180deg, #48b461, #28a745) repeat-x;border-color:#28a745}.btn-success:hover:not(.not-hover){color:#fff;background:#218838 linear-gradient(180deg, #429a56, #218838) repeat-x;border-color:#1e7e34}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745;background-image:none}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;background-image:none;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background:#17a2b8 linear-gradient(180deg, #3ab0c3, #17a2b8) repeat-x;border-color:#17a2b8}.btn-info:hover:not(.not-hover){color:#fff;background:#138496 linear-gradient(180deg, #3696a6, #138496) repeat-x;border-color:#117a8b}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8;background-image:none}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;background-image:none;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background:#ffc107 linear-gradient(180deg, #ffca2c, #ffc107) repeat-x;border-color:#ffc107}.btn-warning:hover:not(.not-hover){color:#212529;background:#e0a800 linear-gradient(180deg, #e5b526, #e0a800) repeat-x;border-color:#d39e00}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107;background-image:none}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;background-image:none;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background:#dc3545 linear-gradient(180deg, #e15361, #dc3545) repeat-x;border-color:#dc3545}.btn-danger:hover:not(.not-hover){color:#fff;background:#c82333 linear-gradient(180deg, #d04452, #c82333) repeat-x;border-color:#bd2130}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545;background-image:none}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;background-image:none;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background:#f8f9fa linear-gradient(180deg, #f9fafb, #f8f9fa) repeat-x;border-color:#f8f9fa}.btn-light:hover:not(.not-hover){color:#212529;background:#e2e6ea linear-gradient(180deg, #e6eaed, #e2e6ea) repeat-x;border-color:#dae0e5}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa;background-image:none}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;background-image:none;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background:#343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x;border-color:#343a40}.btn-dark:hover:not(.not-hover){color:#fff;background:#23272b linear-gradient(180deg, #44474b, #23272b) repeat-x;border-color:#1d2124}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40;background-image:none}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;background-image:none;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-olm{color:#212529;background:#cef79f linear-gradient(180deg, #d5f8ad, #cef79f) repeat-x;border-color:#cef79f}.btn-olm:hover:not(.not-hover){color:#212529;background:#bcf47c linear-gradient(180deg, #c6f690, #bcf47c) repeat-x;border-color:#b6f370}.btn-olm.disabled,.btn-olm:disabled{color:#212529;background-color:#cef79f;border-color:#cef79f;background-image:none}.btn-olm:not(:disabled):not(.disabled):active,.btn-olm:not(:disabled):not(.disabled).active,.show>.btn-olm.dropdown-toggle{color:#212529;background-color:#b6f370;background-image:none;border-color:#b0f264}.btn-olm:not(:disabled):not(.disabled):active:focus,.btn-olm:not(:disabled):not(.disabled).active:focus,.show>.btn-olm.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(180,216,141,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover:not(.not-hover){color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover:not(.not-hover){color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover:not(.not-hover){color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover:not(.not-hover){color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover:not(.not-hover){color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover:not(.not-hover){color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover:not(.not-hover){color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover:not(.not-hover){color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-olm{color:#cef79f;border-color:#cef79f}.btn-outline-olm:hover:not(.not-hover){color:#212529;background-color:#cef79f;border-color:#cef79f}.btn-outline-olm:focus,.btn-outline-olm.focus{box-shadow:0 0 0 .2rem rgba(206,247,159,.5)}.btn-outline-olm.disabled,.btn-outline-olm:disabled{color:#cef79f;background-color:transparent}.btn-outline-olm:not(:disabled):not(.disabled):active,.btn-outline-olm:not(:disabled):not(.disabled).active,.show>.btn-outline-olm.dropdown-toggle{color:#212529;background-color:#cef79f;border-color:#cef79f}.btn-outline-olm:not(:disabled):not(.disabled):active:focus,.btn-outline-olm:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-olm.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(206,247,159,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover:not(.not-hover){color:#0056b3;text-decoration:none}.btn-link:focus,.btn-link.focus{text-decoration:none}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.125rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.7875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:not(.custom)::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:not(.custom):empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:0.9rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:not(.custom)::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:not(.custom):empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100% !important;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:not(.custom)::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:not(.custom):empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:not(.custom)::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle:not(.custom)::after{display:none}.dropleft .dropdown-toggle:not(.custom)::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:not(.custom):empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=top],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover:not(.not-hover),.dropdown-item:focus:not(.not-focus){color:#16181b;text-decoration:none;background:#e9ecef linear-gradient(180deg, #eceff1, #e9ecef) repeat-x}.dropdown-item.active:not(.not-active),.dropdown-item:active:not(.not-active){color:#fff;text-decoration:none;background:#007bff linear-gradient(180deg, #268fff, #007bff) repeat-x}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent;background-image:none}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:0.7875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn:hover:not(.not-hover),.btn-group-vertical>.btn:hover:not(.not-hover){z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus~.custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend,.input-group-append{display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:0.9rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=radio],.input-group-text input[type=checkbox]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.125rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:0.7875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.35rem;padding-left:1.5rem;color-adjust:exact}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.175rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background:#007bff linear-gradient(180deg, #268fff, #007bff) repeat-x}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input[disabled]~.custom-control-label,.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input[disabled]~.custom-control-label::before,.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.175rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.175rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background:#007bff linear-gradient(180deg, #268fff, #007bff) repeat-x}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background:rgba(0,123,255,.5) linear-gradient(180deg, rgba(88, 169, 255, 0.575), rgba(0, 123, 255, 0.5)) repeat-x}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background:rgba(0,123,255,.5) linear-gradient(180deg, rgba(88, 169, 255, 0.575), rgba(0, 123, 255, 0.5)) repeat-x}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background:rgba(0,123,255,.5) linear-gradient(180deg, rgba(88, 169, 255, 0.575), rgba(0, 123, 255, 0.5)) repeat-x}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(0.175rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background:rgba(0,123,255,.5) linear-gradient(180deg, rgba(88, 169, 255, 0.575), rgba(0, 123, 255, 0.5)) repeat-x}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:0.9rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.7875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.125rem}.custom-file{position:relative;display:inline-block;wid th:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input[disabled]~.custom-file-label,.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background:#e9ecef linear-gradient(180deg, #eceff1, #e9ecef) repeat-x;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background:#007bff linear-gradient(180deg, #268fff, #007bff) repeat-x;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background:#b3d7ff linear-gradient(180deg, #beddff, #b3d7ff) repeat-x}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background:#007bff linear-gradient(180deg, #268fff, #007bff) repeat-x;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background:#b3d7ff linear-gradient(180deg, #beddff, #b3d7ff) repeat-x}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background:#007bff linear-gradient(180deg, #268fff, #007bff) repeat-x;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion: reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background:#b3d7ff linear-gradient(180deg, #beddff, #b3d7ff) repeat-x}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover:not(.not-hover),.nav-link:focus:not(.not-focus){text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover:not(.not-hover),.nav-tabs .nav-link:focus:not(.not-focus){border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.33125rem;padding-bottom:.33125rem;margin-right:1rem;font-size:1.125rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover:not(.not-hover),.navbar-brand:focus:not(.not-focus){text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.125rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:hover:not(.not-hover),.navbar-toggler:focus:not(.not-focus){text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media(max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media(min-width: 576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media(max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media(min-width: 768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media(min-width: 992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media(min-width: 1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover:not(.not-hover),.navbar-light .navbar-brand:focus:not(.not-focus){color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:hover:not(.not-hover),.navbar-light .navbar-nav .nav-link:focus:not(.not-focus){color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:hover:not(.not-hover),.navbar-light .navbar-text a:focus:not(.not-focus){color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover:not(.not-hover),.navbar-dark .navbar-brand:focus:not(.not-focus){color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:hover:not(.not-hover),.navbar-dark .navbar-nav .nav-link:focus:not(.not-focus){color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover:not(.not-hover),.navbar-dark .navbar-text a:focus:not(.not-focus){color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover:not(.not-hover){text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media(min-width: 576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media(min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media(min-width: 576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:">"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.125rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.7875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover:not(.not-hover),a.badge:focus:not(.not-focus){text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:hover:not(.not-hover),a.badge-primary:focus:not(.not-focus){color:#fff;background-color:#0062cc}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:hover:not(.not-hover),a.badge-secondary:focus:not(.not-focus){color:#fff;background-color:#545b62}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover:not(.not-hover),a.badge-success:focus:not(.not-focus){color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover:not(.not-hover),a.badge-info:focus:not(.not-focus){color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:hover:not(.not-hover),a.badge-warning:focus:not(.not-focus){color:#212529;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover:not(.not-hover),a.badge-danger:focus:not(.not-focus){color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover:not(.not-hover),a.badge-light:focus:not(.not-focus){color:#212529;background-color:#dae0e5}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover:not(.not-hover),a.badge-dark:focus:not(.not-focus){color:#fff;background-color:#1d2124}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.badge-olm{color:#212529;background-color:#cef79f}a.badge-olm:hover:not(.not-hover),a.badge-olm:focus:not(.not-focus){color:#212529;background-color:#b6f370}a.badge-olm:focus,a.badge-olm.focus{outline:0;box-shadow:0 0 0 .2rem rgba(206,247,159,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media(min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert p{margin:0}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.85rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background:#cce5ff linear-gradient(180deg, #d4e9ff, #cce5ff) repeat-x;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background:#e2e3e5 linear-gradient(180deg, #e6e7e9, #e2e3e5) repeat-x;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background:#d4edda linear-gradient(180deg, #daf0e0, #d4edda) repeat-x;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background:#d1ecf1 linear-gradient(180deg, #d8eff3, #d1ecf1) repeat-x;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background:#fff3cd linear-gradient(180deg, #fff5d5, #fff3cd) repeat-x;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background:#f8d7da linear-gradient(180deg, #f9dde0, #f8d7da) repeat-x;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background:#fefefe linear-gradient(180deg, #fefefe, #fefefe) repeat-x;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background:#d6d8d9 linear-gradient(180deg, #dcdedf, #d6d8d9) repeat-x;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}.alert-olm{color:#6b8053;background:#f5fdec linear-gradient(180deg, #f7fdef, #f5fdec) repeat-x;border-color:#f1fde4}.alert-olm hr{border-top-color:#e5fbcc}.alert-olm .alert-link{color:#51613f}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.675rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media(prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover:not(.not-hover),.list-group-item-action:focus:not(.not-focus){z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-transparent{border-radius:0}.list-group-transparent .list-group-item{background-color:transparent}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:hover:not(.not-hover),.list-group-item-primary.list-group-item-action:focus:not(.not-focus){color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:hover:not(.not-hover),.list-group-item-secondary.list-group-item-action:focus:not(.not-focus){color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover:not(.not-hover),.list-group-item-success.list-group-item-action:focus:not(.not-focus){color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover:not(.not-hover),.list-group-item-info.list-group-item-action:focus:not(.not-focus){color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover:not(.not-hover),.list-group-item-warning.list-group-item-action:focus:not(.not-focus){color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover:not(.not-hover),.list-group-item-danger.list-group-item-action:focus:not(.not-focus){color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover:not(.not-hover),.list-group-item-light.list-group-item-action:focus:not(.not-focus){color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover:not(.not-hover),.list-group-item-dark.list-group-item-action:focus:not(.not-focus){color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.list-group-item-olm{color:#6b8053;background-color:#f1fde4}.list-group-item-olm.list-group-item-action:hover:not(.not-hover),.list-group-item-olm.list-group-item-action:focus:not(.not-focus){color:#6b8053;background-color:#e5fbcc}.list-group-item-olm.list-group-item-action.active{color:#fff;background-color:#6b8053;border-color:#6b8053}.close{float:right;font-size:1.35rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover:not(.not-hover){color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover:not(.not-hover),.close:not(:disabled):not(.disabled):focus:not(.not-focus){opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media(min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.7875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^=top]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^=top] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^=top] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^=bottom] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^=bottom] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.7875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^=top]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^=top]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^=top]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^=top]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^=right]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^=right]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^=right]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^=right]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^=bottom]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^=bottom]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^=bottom]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^=bottom]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^=left]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^=left]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^=left]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^=left]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:0.9rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover:not(.not-hover),.carousel-control-prev:focus:not(.not-focus),.carousel-control-next:hover:not(.not-hover),.carousel-control-next:focus:not(.not-focus){color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0;background-image:linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001))}.carousel-control-next{right:0;background-image:linear-gradient(270deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001))}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media(prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#007bff !important}a.bg-primary:hover:not(.not-hover),a.bg-primary:focus:not(.not-focus),button.bg-primary:hover:not(.not-hover),button.bg-primary:focus:not(.not-focus){background-color:#0062cc !important}.bg-secondary{background-color:#6c757d !important}a.bg-secondary:hover:not(.not-hover),a.bg-secondary:focus:not(.not-focus),button.bg-secondary:hover:not(.not-hover),button.bg-secondary:focus:not(.not-focus){background-color:#545b62 !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover:not(.not-hover),a.bg-success:focus:not(.not-focus),button.bg-success:hover:not(.not-hover),button.bg-success:focus:not(.not-focus){background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover:not(.not-hover),a.bg-info:focus:not(.not-focus),button.bg-info:hover:not(.not-hover),button.bg-info:focus:not(.not-focus){background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover:not(.not-hover),a.bg-warning:focus:not(.not-focus),button.bg-warning:hover:not(.not-hover),button.bg-warning:focus:not(.not-focus){background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover:not(.not-hover),a.bg-danger:focus:not(.not-focus),button.bg-danger:hover:not(.not-hover),button.bg-danger:focus:not(.not-focus){background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover:not(.not-hover),a.bg-light:focus:not(.not-focus),button.bg-light:hover:not(.not-hover),button.bg-light:focus:not(.not-focus){background-color:#dae0e5 !important}.bg-dark{background-color:#343a40 !important}a.bg-dark:hover:not(.not-hover),a.bg-dark:focus:not(.not-focus),button.bg-dark:hover:not(.not-hover),button.bg-dark:focus:not(.not-focus){background-color:#1d2124 !important}.bg-olm{background-color:#cef79f !important}a.bg-olm:hover:not(.not-hover),a.bg-olm:focus:not(.not-focus),button.bg-olm:hover:not(.not-hover),button.bg-olm:focus:not(.not-focus){background-color:#b6f370 !important}.bg-gradient-primary{background:#007bff linear-gradient(180deg, #8cc4ff, #007bff) repeat-x !important}.bg-gradient-secondary{background:#6c757d linear-gradient(180deg, #bdc1c5, #6c757d) repeat-x !important}.bg-gradient-success{background:#28a745 linear-gradient(180deg, #9ed7ab, #28a745) repeat-x !important}.bg-gradient-info{background:#17a2b8 linear-gradient(180deg, #97d5df, #17a2b8) repeat-x !important}.bg-gradient-warning{background:#ffc107 linear-gradient(180deg, #ffe38f, #ffc107) repeat-x !important}.bg-gradient-danger{background:#dc3545 linear-gradient(180deg, #efa4ab, #dc3545) repeat-x !important}.bg-gradient-light{background:#f8f9fa linear-gradient(180deg, #fcfcfd, #f8f9fa) repeat-x !important}.bg-gradient-dark{background:#343a40 linear-gradient(180deg, #a4a6a9, #343a40) repeat-x !important}.bg-gradient-olm{background:#cef79f linear-gradient(180deg, #e9fbd4, #cef79f) repeat-x !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.btn.bg:hover{opacity:.65}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#007bff !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#343a40 !important}.border-olm{border-color:#cef79f !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:.2rem !important}.rounded{border-radius:.25rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-lg{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}@media(min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.8571428571%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-fill{flex:1 1 auto !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}@media(min-width: 576px){.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}}@media(min-width: 768px){.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}}@media(min-width: 992px){.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}}@media(min-width: 1200px){.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media(min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media(min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media(min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media(min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports(position: sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.w-6{width:6% !important}.w-7{width:7% !important}.w-10{width:10% !important}.w-12{width:12% !important}.w-13{width:13% !important}.w-20{width:20% !important}.w-25{width:25% !important}.w-30{width:30% !important}.w-35{width:35% !important}.w-40{width:40% !important}.w-45{width:45% !important}.w-50{width:50% !important}.w-60{width:60% !important}.w-75{width:75% !important}.w-80{width:80% !important}.w-90{width:90% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.w-24-p{width:24px !important}.w-30-p{width:30px !important}.w-40-p{width:40px !important}.w-50-p{width:50px !important}.w-65-p{width:65px !important}.w-90-p{width:90px !important}.w-120-p{width:120px !important}.w-159-p{width:159px !important}.w-200-p{width:200px !important}.w-250-p{width:250px !important}.w-300-p{width:300px !important}.w-340-p{width:340px !important}.w-400-p{width:400px !important}.w-460-p{width:460px !important}.w-650-p{width:650px !important}.h-7{height:7% !important}.h-10{height:10% !important}.h-13{height:13% !important}.h-20{height:20% !important}.h-25{height:25% !important}.h-30{height:30% !important}.h-35{height:35% !important}.h-40{height:40% !important}.h-50{height:50% !important}.h-60{height:60% !important}.h-75{height:75% !important}.h-80{height:80% !important}.h-90{height:90% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.h-24-p{height:24px !important}.h-30-p{height:30px !important}.h-40-p{height:40px !important}.h-50-p{height:50px !important}.h-65-p{height:65px !important}.h-90-p{height:90px !important}.h-120-p{height:120px !important}.h-159-p{height:159px !important}.h-200-p{height:200px !important}.h-250-p{height:250px !important}.h-300-p{height:300px !important}.h-340-p{height:340px !important}.h-400-p{height:400px !important}.h-460-p{height:460px !important}.h-650-p{height:650px !important}.mw-7{max-width:7% !important}.mw-10{max-width:10% !important}.mw-13{max-width:13% !important}.mw-20{max-width:20% !important}.mw-25{max-width:25% !important}.mw-30{max-width:30% !important}.mw-35{max-width:35% !important}.mw-40{max-width:40% !important}.mw-50{max-width:50% !important}.mw-60{max-width:60% !important}.mw-75{max-width:75% !important}.mw-80{max-width:80% !important}.mw-90{max-width:90% !important}.mw-100{max-width:100% !important}.mw-auto{width:auto !important}.mw-24-p{max-width:24px !important}.mw-30-p{max-width:30px !important}.mw-40-p{max-width:40px !important}.mw-50-p{max-width:50px !important}.mw-65-p{max-width:65px !important}.mw-90-p{max-width:90px !important}.mw-120-p{max-width:120px !important}.mw-159-p{max-width:159px !important}.mw-200-p{max-width:200px !important}.mw-250-p{max-width:250px !important}.mw-300-p{max-width:300px !important}.mw-340-p{max-width:340px !important}.mw-400-p{max-width:400px !important}.mw-460-p{max-width:460px !important}.mw-650-p{max-width:650px !important}.mh-7{max-height:7% !important}.mh-10{max-height:10% !important}.mh-13{max-height:13% !important}.mh-20{max-height:20% !important}.mh-25{max-height:25% !important}.mh-30{max-height:30% !important}.mh-35{max-height:35% !important}.mh-40{max-height:40% !important}.mh-50{max-height:50% !important}.mh-60{max-height:60% !important}.mh-75{max-height:75% !important}.mh-80{max-height:80% !important}.mh-90{max-height:90% !important}.mh-100{max-height:100% !important}.mh-auto{height:auto !important}.mh-24-p{max-height:24px !important}.mh-30-p{max-height:30px !important}.mh-40-p{max-height:40px !important}.mh-50-p{max-height:50px !important}.mh-65-p{max-height:65px !important}.mh-90-p{max-height:90px !important}.mh-120-p{max-height:120px !important}.mh-159-p{max-height:159px !important}.mh-200-p{max-height:200px !important}.mh-250-p{max-height:250px !important}.mh-300-p{max-height:300px !important}.mh-340-p{max-height:340px !important}.mh-400-p{max-height:400px !important}.mh-460-p{max-height:460px !important}.mh-650-p{max-height:650px !important}.mmw-7{min-width:7% !important}.mmw-10{min-width:10% !important}.mmw-13{min-width:13% !important}.mmw-20{min-width:20% !important}.mmw-25{min-width:25% !important}.mmw-30{min-width:30% !important}.mmw-35{min-width:35% !important}.mmw-40{min-width:40% !important}.mmw-50{min-width:50% !important}.mmw-60{min-width:60% !important}.mmw-75{min-width:75% !important}.mmw-80{min-width:80% !important}.mmw-90{min-width:90% !important}.mmw-100{min-width:100% !important}.mmw-auto{min-width:auto !important}.mmw-24-p{min-width:24px !important}.mmw-30-p{min-width:30px !important}.mmw-40-p{min-width:40px !important}.mmw-50-p{min-width:50px !important}.mmw-65-p{min-width:65px !important}.mmw-90-p{min-width:90px !important}.mmw-120-p{min-width:120px !important}.mmw-159-p{min-width:159px !important}.mmw-200-p{min-width:200px !important}.mmw-250-p{min-width:250px !important}.mmw-300-p{min-width:300px !important}.mmw-340-p{min-width:340px !important}.mmw-400-p{min-width:400px !important}.mmw-460-p{min-width:460px !important}.mmw-650-p{min-width:650px !important}.mmh-7{min-height:7% !important}.mmh-10{min-height:10% !important}.mmh-13{min-height:13% !important}.mmh-20{min-height:20% !important}.mmh-25{min-height:25% !important}.mmh-30{min-height:30% !important}.mmh-35{min-height:35% !important}.mmh-40{min-height:40% !important}.mmh-50{min-height:50% !important}.mmh-60{min-height:60% !important}.mmh-75{min-height:75% !important}.mmh-80{min-height:80% !important}.mmh-90{min-height:90% !important}.mmh-100{min-height:100% !important}.mmh-auto{min-height:auto !important}.mmh-24-p{min-height:24px !important}.mmh-30-p{min-height:30px !important}.mmh-40-p{min-height:40px !important}.mmh-50-p{min-height:50px !important}.mmh-65-p{min-height:65px !important}.mmh-90-p{min-height:90px !important}.mmh-120-p{min-height:120px !important}.mmh-159-p{min-height:159px !important}.mmh-200-p{min-height:200px !important}.mmh-250-p{min-height:250px !important}.mmh-300-p{min-height:300px !important}.mmh-340-p{min-height:340px !important}.mmh-400-p{min-height:400px !important}.mmh-460-p{min-height:460px !important}.mmh-650-p{min-height:650px !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:.25rem !important}.mt-1,.my-1{margin-top:.25rem !important}.mr-1,.mx-1{margin-right:.25rem !important}.mb-1,.my-1{margin-bottom:.25rem !important}.ml-1,.mx-1{margin-left:.25rem !important}.m-2{margin:.5rem !important}.mt-2,.my-2{margin-top:.5rem !important}.mr-2,.mx-2{margin-right:.5rem !important}.mb-2,.my-2{margin-bottom:.5rem !important}.ml-2,.mx-2{margin-left:.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:.25rem !important}.pt-1,.py-1{padding-top:.25rem !important}.pr-1,.px-1{padding-right:.25rem !important}.pb-1,.py-1{padding-bottom:.25rem !important}.pl-1,.px-1{padding-left:.25rem !important}.p-2{padding:.5rem !important}.pt-2,.py-2{padding-top:.5rem !important}.pr-2,.px-2{padding-right:.5rem !important}.pb-2,.py-2{padding-bottom:.5rem !important}.pl-2,.px-2{padding-left:.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media(min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:.25rem !important}.mt-sm-1,.my-sm-1{margin-top:.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:.25rem !important}.m-sm-2{margin:.5rem !important}.mt-sm-2,.my-sm-2{margin-top:.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:.25rem !important}.pt-sm-1,.py-sm-1{padding-top:.25rem !important}.pr-sm-1,.px-sm-1{padding-right:.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem !important}.pl-sm-1,.px-sm-1{padding-left:.25rem !important}.p-sm-2{padding:.5rem !important}.pt-sm-2,.py-sm-2{padding-top:.5rem !important}.pr-sm-2,.px-sm-2{padding-right:.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem !important}.pl-sm-2,.px-sm-2{padding-left:.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media(min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:.25rem !important}.mt-md-1,.my-md-1{margin-top:.25rem !important}.mr-md-1,.mx-md-1{margin-right:.25rem !important}.mb-md-1,.my-md-1{margin-bottom:.25rem !important}.ml-md-1,.mx-md-1{margin-left:.25rem !important}.m-md-2{margin:.5rem !important}.mt-md-2,.my-md-2{margin-top:.5rem !important}.mr-md-2,.mx-md-2{margin-right:.5rem !important}.mb-md-2,.my-md-2{margin-bottom:.5rem !important}.ml-md-2,.mx-md-2{margin-left:.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:.25rem !important}.pt-md-1,.py-md-1{padding-top:.25rem !important}.pr-md-1,.px-md-1{padding-right:.25rem !important}.pb-md-1,.py-md-1{padding-bottom:.25rem !important}.pl-md-1,.px-md-1{padding-left:.25rem !important}.p-md-2{padding:.5rem !important}.pt-md-2,.py-md-2{padding-top:.5rem !important}.pr-md-2,.px-md-2{padding-right:.5rem !important}.pb-md-2,.py-md-2{padding-bottom:.5rem !important}.pl-md-2,.px-md-2{padding-left:.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media(min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:.25rem !important}.mt-lg-1,.my-lg-1{margin-top:.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:.25rem !important}.m-lg-2{margin:.5rem !important}.mt-lg-2,.my-lg-2{margin-top:.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:.25rem !important}.pt-lg-1,.py-lg-1{padding-top:.25rem !important}.pr-lg-1,.px-lg-1{padding-right:.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem !important}.pl-lg-1,.px-lg-1{padding-left:.25rem !important}.p-lg-2{padding:.5rem !important}.pt-lg-2,.py-lg-2{padding-top:.5rem !important}.pr-lg-2,.px-lg-2{padding-right:.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem !important}.pl-lg-2,.px-lg-2{padding-left:.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media(min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:.25rem !important}.mt-xl-1,.my-xl-1{margin-top:.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:.25rem !important}.m-xl-2{margin:.5rem !important}.mt-xl-2,.my-xl-2{margin-top:.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:.25rem !important}.pt-xl-1,.py-xl-1{padding-top:.25rem !important}.pr-xl-1,.px-xl-1{padding-right:.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem !important}.pl-xl-1,.px-xl-1{padding-left:.25rem !important}.p-xl-2{padding:.5rem !important}.pt-xl-2,.py-xl-2{padding-top:.5rem !important}.pr-xl-2,.px-xl-2{padding-right:.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem !important}.pl-xl-2,.px-xl-2{padding-left:.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media(min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover:not(.not-hover),a.text-primary:focus:not(.not-focus){color:#0056b3 !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover:not(.not-hover),a.text-secondary:focus:not(.not-focus){color:#494f54 !important}.text-success{color:#28a745 !important}a.text-success:hover:not(.not-hover),a.text-success:focus:not(.not-focus){color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover:not(.not-hover),a.text-info:focus:not(.not-focus){color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover:not(.not-hover),a.text-warning:focus:not(.not-focus){color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover:not(.not-hover),a.text-danger:focus:not(.not-focus){color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover:not(.not-hover),a.text-light:focus:not(.not-focus){color:#cbd3da !important}.text-dark{color:#343a40 !important}a.text-dark:hover:not(.not-hover),a.text-dark:focus:not(.not-focus){color:#121416 !important}.text-olm{color:#cef79f !important}a.text-olm:hover:not(.not-hover),a.text-olm:focus:not(.not-focus){color:#aaf158 !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,.5) !important}.text-white-50{color:rgba(255,255,255,.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-decoration-underlined{text-decoration:underline !important}.text-break{word-break:break-word !important;word-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.theme-dark{background-color:#1a2236}.theme-dark .app-content{background-color:#1a2236}.theme-dark .app-content:before{background-color:rgba(0,0,0,.9)}.theme-dark .card{background-color:#293145 !important}.theme-dark .app-footer{background-color:#293145 !important;border-top:0}.theme-dark .app-footer i{color:#fff}.theme-dark .app-header .logo svg path{fill:#fff}.theme-dark .app-header .menu-icon i{color:#fff}.theme-dark h1,.theme-dark h2,.theme-dark h3,.theme-dark h4,.theme-dark h5,.theme-dark h6,.theme-dark .h1,.theme-dark .h2,.theme-dark .h3,.theme-dark .h4,.theme-dark .h5,.theme-dark .h6{color:#fff !important}.bg-facebook{background-color:#0d66ff !important}.bg-messenger{background-color:#55acee !important}.bg-twiiter{background-color:#3b5999 !important}.bg-linkedin{background-color:#0077b5 !important}.bg-skype{background-color:#00aff0 !important}.bg-pinterest{background-color:#bd081c !important}.bg-instagram{background-color:#e4405f !important}.bg-flicker{background-color:#ff0084 !important}.bg-whatsup{background-color:#25d366 !important}.bg-tumblr{background-color:#34465d !important}.bg-youtube{background-color:#cd201f !important}.bg-black{background-color:#000}.text-facebook{color:#0d66ff !important}.text-messenger{color:#55acee !important}.text-twiiter{color:#3b5999 !important}.text-linkedin{color:#0077b5 !important}.text-skype{color:#00aff0 !important}.text-pinterest{color:#bd081c !important}.text-instagram{color:#e4405f !important}.text-current{color:var(--theme-color) !important}.text-red{color:red !important}.text-ornage{color:#ff9500 !important}.text-black{color:#000 !important}.text-cyan{color:#00a9a8 !important}.text-yellow{color:#ffde00 !important}.bg-black-08{background:rgba(0,0,0,.8)}.bg-current{background-color:var(--theme-color) !important}.bg-current-shade{background-color:var(--theme-color-shade) !important}.bg-primary-gradiant{background:linear-gradient(135deg, var(--theme-color), var(--theme-color-shade)) !important}.bg-gold-gradiant{background:linear-gradient(to right, #f2994a, #f2c94c) !important}.bg-red-gradiant{background:linear-gradient(to right, #e44d26, #f16529) !important}.bg-mini-gradiant{background:linear-gradient(to right, #ee0979, #ff6a00) !important}.bg-blue-gradiant{background:linear-gradient(to right, #0575e6, #021b79) !important}.bg-grey{background-color:#eee !important}.bg-lightblue{background-color:#e8f1fa !important}.bg-lightgreen{background-color:#f2faf6 !important}.bg-greyblue{background-color:#f6f7fc !important}.bg-greylight{background-color:#f5f5f5 !important}.bg-lightgrey{background-color:#f9f9f9 !important}.bg-lightbrown{background-color:#fdfbf4 !important}.bg-orange{background-color:#ff9500 !important}.bg-cyan{background-color:#00a9a8 !important}.bg-yellow{background-color:#ffde00 !important}.bg-blur{-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background-color:rgba(255,255,255,.3)}.bg-after-fluid{position:relative}.bg-after-fluid:after{top:0;content:"";border-radius:10px;background:#e8f1fa;height:100%;width:90%;margin:0 auto;display:block;position:absolute;left:5%}.bg-after-fluid .container{position:relative;z-index:2}.bg-gradiant-bottom:after{content:"";background:linear-gradient(180deg, rgba(0, 0, 0, 0.01) 60%, rgba(0, 0, 0, 0.9) 100%);width:100%;height:150px;position:absolute;bottom:0;left:0;z-index:1}.bg-gradiant-top:before{content:"";background:linear-gradient(0deg, rgba(0, 0, 0, 0.01) 60%, rgba(0, 0, 0, 0.6) 100%);width:100%;height:150px;position:absolute;top:0;left:0;z-index:1}.bg-lightblue-after{position:relative}.bg-lightblue-after .container{position:relative;z-index:3}.bg-lightblue-after:after{content:"";position:absolute;top:0;left:0;width:100%;height:90%;background-color:#fef6e7 !important}.pattern-layer{position:relative}.pattern-layer:after{content:"";position:absolute;top:-300px;right:-10%;height:100%;z-index:1;width:120%;height:100%;background-image:url(../images/layer-pattenr-bg.png);background-repeat:repeat-y;background-size:contain}.pattern-layer:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;-webkit-backdrop-filter:blur(50px);backdrop-filter:blur(50px);background-color:rgba(255,255,255,.8)}.pattern-layer .layer-after{position:relative;z-index:3}.color-theme-red{--theme-color: #f32323;--theme-color-rgb: 255, 59, 48;--theme-color-shade: #fb9f81 ;--theme-color-tint: #ff6259}.color-theme-green{--theme-color: #4cd964;--theme-color-rgb: 76, 217, 100;--theme-color-shade: #2cd048;--theme-color-tint: #6ee081}.color-theme-blue{--theme-color: #05f;--theme-color-rgb: 33, 150, 243;--theme-color-shade: #09f;--theme-color-tint: #1E74FD}.color-theme-deepblue{--theme-color: #0f36c0;--theme-color-rgb: 33, 150, 243;--theme-color-shade: #103ace;--theme-color-tint: #1E74FD}.color-theme-pink{--theme-color: #ff2d55;--theme-color-rgb: 255, 45, 85;--theme-color-shade: #ff0434;--theme-color-tint: #ff5676}.color-theme-yellow{--theme-color: #fbaf03;--theme-color-rgb: 255, 204, 0;--theme-color-shade: #d6ab00;--theme-color-tint: #ffd429}.color-theme-orange{--theme-color: #ff9500;--theme-color-rgb: 255, 149, 0;--theme-color-shade: #d67d00;--theme-color-tint: #ffa629}.color-theme-purple{--theme-color: #9c27b0;--theme-color-rgb: 156, 39, 176;--theme-color-shade: #7e208f;--theme-color-tint: #b92fd1}.color-theme-deeppurple{--theme-color: #673ab7;--theme-color-rgb: 103, 58, 183;--theme-color-shade: #563098;--theme-color-tint: #7c52c8}.color-theme-lightblue{--theme-color: #346e93;--theme-color-rgb: 90, 200, 250;--theme-color-shade: #7ac1ed;--theme-color-tint: #82d5fb}.color-theme-teal{--theme-color: #00bfad;--theme-color-rgb: 0, 150, 136;--theme-color-shade: #00bfad;--theme-color-tint: #00bfad}.color-theme-lime{--theme-color: #cddc39;--theme-color-rgb: 205, 220, 57;--theme-color-shade: #bac923;--theme-color-tint: #d6e25c}.color-theme-deeporange{--theme-color: #ff6b22;--theme-color-rgb: 255, 107, 34;--theme-color-shade: #f85200;--theme-color-tint: #ff864b}.color-theme-gray{--theme-color: #8e8e93;--theme-color-rgb: 142, 142, 147;--theme-color-shade: #79797f;--theme-color-tint: #a3a3a7}.color-theme-white{--theme-color: #ffffff;--theme-color-rgb: 255, 255, 255;--theme-color-shade: #ebebeb;--theme-color-tint: #ffffff}.color-theme-black{--theme-color: #000000;--theme-color-rgb: 0, 0, 0;--theme-color-shade: #000000;--theme-color-tint: #141414}.color-theme-brown{--theme-color: #D2691E;--theme-color-rgb: #D2691E;--theme-color-shade: #D2691E;--theme-color-tint: #D2691E}.color-theme-darkgreen{--theme-color: #1c891f;--theme-color-rgb: 142, 142, 147;--theme-color-shade: #79797f;--theme-color-tint: #a3a3a7}.color-theme-cayan{--theme-color: #7ac1ed;--theme-color-rgb: 255, 255, 255;--theme-color-shade: #6ae2da;--theme-color-tint: #6ae2da}.color-theme-darkorchid{--theme-color: #9932cc;--theme-color-rgb: 0, 0, 0;--theme-color-shade: #000000;--theme-color-tint: #141414}.color-theme-black{--theme-color: #000;--theme-color-rgb: 0, 0, 0;--theme-color-shade: #000;--theme-color-tint: #000}.color-theme-cadetblue{--theme-color: #5f9ea0;--theme-color-rgb: 0, 0, 0;--theme-color-shade: #5f9ea0;--theme-color-tint: #5f9ea0}.color-theme-deeppink{--theme-color: #FFC0CB;--theme-color-rgb: 0, 0, 0;--theme-color-shade: #FFC0CB;--theme-color-tint: #FFC0CB}.w10{width:12px !important}.w15{width:15px}.w20{width:18px}.w25{width:25px !important}.w30{width:30px !important}.w35{width:35px !important}.w40{width:40px !important}.w45{width:45px !important}.w50{width:50px !important}.w60{width:60px !important}.w65{width:65px !important}.w75{width:75px !important}.w90{width:90px !important}.w100{width:100px !important}.w125{width:125px !important}.w140{width:140px !important}.w150{width:150px !important}.w175{width:175px !important}.w200{width:200px !important}.w250{width:250px !important}.w300{width:300px !important}.w350{width:350px !important}.w400{width:400px !important}.w__12{width:12.1% !important;flex:0 0 30% !important;max-width:30% !important}.w__30{width:30% !important;flex:0 0 30% !important;max-width:30% !important}.w__60{width:60% !important;flex:0 0 60% !important;max-width:60% !important}.w__70{width:70% !important;flex:0 0 70% !important;max-width:70% !important}.w__48{width:49% !important;flex:0 0 49% !important;max-width:49% !important}.h5{height:5px !important}.h10{height:7px !important}.h75{height:75px !important}.h90{height:90px !important}.h100{height:100px !important}.h125{height:125px !important}.h150{height:150px !important}.h175{height:175px !important}.h200{height:200px !important}.h240{height:242px !important}.h290{height:290px !important}.h300{height:300px !important}.h361{height:361px !important}.h400{height:400px !important}.h450{height:450px !important}.h500{height:500px !important}.h600{height:600px !important}.btn-round-xss{width:8px;height:8px;border-radius:8px;display:inline-block;line-height:25px !important;text-align:center}.btn-round-xss i{line-height:25px !important}.btn-round-xs{width:20px;height:20px;border-radius:20px;display:inline-block;line-height:20px !important;text-align:center}.btn-round-xs i{line-height:20px !important}.btn-round-sm{width:35px;height:35px;border-radius:35px;display:inline-block;line-height:35px !important;text-align:center}.btn-round-sm i{line-height:35px !important}.btn-round-md{width:45px;height:45px;border-radius:45px;display:inline-block;line-height:45px !important;text-align:center}.btn-round-md i{line-height:45px}.btn-round-lg{width:50px;height:50px;border-radius:50px;display:inline-block;line-height:50px;text-align:center}.btn-round-lg i{line-height:50px}.btn-round-xl{width:60px;height:60px;border-radius:60px;display:inline-block;line-height:60px;text-align:center}.btn-round-xl i{line-height:60px}.btn-round-xl img{line-height:60px}.btn-round-xxl{width:70px;height:70px;border-radius:70px;display:inline-block;line-height:70px;text-align:center}.btn-round-xxl i{line-height:70px}.btn-round-xxxl{width:80px;height:80px;border-radius:80px;display:inline-block;line-height:80px;text-align:center}.btn-round-xxxl i{line-height:80px}.btn-round-xxxxl{width:110px;height:110px;border-radius:110px;display:inline-block;line-height:110px;text-align:center}.btn-round-xxxxl i{line-height:110px}.z-index-1{z-index:2;position:relative}.cursor-pointer{cursor:pointer}.ls-0{letter-spacing:-0.4px}.ls-1{letter-spacing:.4px}.ls-2{letter-spacing:.6px}.ls-3{letter-spacing:1px}.lh-1{line-height:1}.lh-2{line-height:1.2}.lh-3{line-height:1.4}.lh-4{line-height:1.6}.lh-5{line-height:2}.lh-16{line-height:16px !important}.lh-24{line-height:24px !important}.lh-26{line-height:26px}.lh-28{line-height:28px}.lh-30{line-height:30px !important}.lh-32{line-height:32px}.lh-34{line-height:34px}.lh-38{line-height:38px}.font-xsssss{font-size:10px !important}.font-xssss{font-size:12px !important}.font-xsss{font-size:14px !important}.font-xss{font-size:16px !important}.font-xs{font-size:18px !important}.font-sm{font-size:20px !important}.font-md{font-size:22px !important}.font-lg{font-size:25px !important}.font-xl{font-size:28px !important}.font-xxl{font-size:32px !important}.display1-size{font-size:36px !important}.display2-size{font-size:44px !important}.display3-size{font-size:50px !important}.display4-size{font-size:60px !important}.display5-size{font-size:80px !important}.shadow-md{box-shadow:0 .5rem 1rem rgba(0,0,0,.1) !important}.shadow-xs{box-shadow:0 .5rem 1rem rgba(0,0,0,.03) !important}.shadow-xss{box-shadow:0 8px 30px rgba(0,0,0,.05) !important}.border-size-mn{border-width:.5px !important}.border-size-sm{border-width:1px !important}.border-size-md{border-width:2px !important}.border-size-lg{border-width:3px !important}.border-light{border:1px #eee solid}.border-light-md{border:2px #ddd solid}.border-right-light{border-right:1px #eee solid}.border-bottom-light{border-bottom:1px #eee solid}.border-bottom-dark{border-bottom:2px #333 solid}.border-bottom-blue{border-bottom:1px #1254a1 solid}.border-dashed{border-style:dashed !important}.border-black{border:2px #000 dashed !important}.border-top-lg{border-top:3px solid #000}.bg-image-cover{background-size:cover}.bg-image-contain{background-size:contain}.bg-no-repeat{background-repeat:no-repeat}.bg-image-center{background-position:center center}.bg-image-topcenter{background-position:top 30px center}.bg-image-bottomcenter{background-position:bottom center}.bg-image-right{background-position:right -60px top 0px}.bg-size-contain{background-size:contain}.bg-bottom-right{background-position:bottom right}.bg-top-right{background-position:top right}.bg-top-left{background-position:top left}.bg-size-half{background-size:40%}.bg-size-quater{background-size:70%}.bg-top-right-2{background-position:top 50px right 20px}.bg-top-100-right{background-position:top 50px right 50px}.bg-pattern{background:repeating-linear-gradient(45deg, #ffffff, #ffffff 6px, #ddd 6px, #ddd 12px)}.bottom-0{bottom:0}.top-0{top:0 !important}.top--15{top:-15px !important;z-index:2}.top--10{top:-10px !important;z-index:2}.top-5{top:3px}.left-auto{left:auto !important}.left-0{left:0px !important}.left-15{left:15px}.left--50{left:50%}.right-auto{right:auto !important}.right-0{right:0}.right-15{right:15px}.right--10{right:-10px}.pt-7{padding-top:75px}.pb-7{padding-bottom:75px}.pt-10{padding-top:125px}.pb-10{padding-bottom:125px}.p-150{padding-top:150px;padding-bottom:150px}.pl-30{padding-left:30px}.pl-35{padding-left:35px}.pl-7{padding-left:70px}.mt--1{margin-top:-0.4rem !important}.mt--6{margin-top:-4.2rem !important}.round-lg-btn{width:100px;height:100px;line-height:100px;border-radius:100px}.rounded-xxl{border-radius:15px !important}.rounded-xl{border-radius:30px !important}.avatar.w90{overflow:hidden}:root{--f7-theme-color: #132977}.theme-full{background-color:#ddd !important}.theme-full .main-wrapper{max-width:1600px;margin:0 auto}.theme-dark{background-color:#132977}.theme-dark .middle-sidebar-header,.theme-dark .navigation{background-color:#293145 !important;box-shadow:none !important}.theme-dark .navigation .nav-content ul li:not(.logo) a span{color:#ddd}.theme-dark .navigation .nav-top a i{background-color:transparent !important}.theme-dark .scroll-bar::-webkit-scrollbar,.theme-dark .scroll-bar::-webkit-scrollbar-track{background-color:#1a2236 !important}.theme-dark .main-content .middle-sidebar-header .header-menu:before,.theme-dark .main-content .middle-sidebar-header .header-menu:after{background-color:#fff}.theme-dark .main-content .middle-sidebar-header .menu-search-icon i{color:#fff !important}.theme-dark .main-content .middle-sidebar-bottom .middle-sidebar-right .middle-sidebar-right-content .card{border:0 !important}.theme-dark .main-content .middle-sidebar-header{border-bottom:0}.theme-dark .modal-popup-chat .modal-popup-wrap .modal-popup-header,.theme-dark .modal-popup-chat .modal-popup-wrap .modal-popup-footer{border:0 !important}.theme-dark .input-file+.js-labelFile.btn-tertiary,.theme-dark .modal-popup-chat .modal-popup-wrap,.theme-dark .theme-dark-bg{background-color:#1a2236 !important}.theme-dark ul.list-inline .list-inline-item.border-bottom{border-bottom:0 !important}.theme-dark .form-control{background-color:#333 !important;border-color:var(--theme-color)}.theme-dark .menu-dropdown:after{border-color:transparent transparent #1a2236 transparent !important}.theme-dark .bg-transparent-card{background:transparent !important}.theme-dark .menu-dropdown,.theme-dark .main-content{background-color:#1a2236 !important}.theme-dark .form-group.bg-white{border:0 !important;background-color:#1a2236 !important}.theme-dark .main-content .left-sidebar .left-sidebar-content .left-sidebar-header,.theme-dark .main-content .left-sidebar .left-sidebar-content .left-sidebar-bottom,.theme-dark .main-content .left-sidebar .left-sidebar-content{background-color:#293145 !important}.theme-dark .apexcharts-datalabel-value{fill:#eee}.theme-dark .form-group label,.theme-dark .text-dark{color:#eee !important}.theme-dark .member-ul li.active a b,.theme-dark .price-wrap .left-price h2,.theme-dark .form-div h2,.theme-dark .slide-wrapper h2{color:#eee}.theme-dark .header-wrapper .search-div{border:1px #555 solid}.theme-dark .header-wrapper .nav-menu li a{color:#ddd !important}.theme-dark .search-wrapper,.theme-dark .accordion .card .card-body,.theme-dark .accordion .card .card-header,.theme-dark .form-div{background-color:#293145}.theme-dark .header-wrapper .logo{color:#b0c4de}.theme-dark .card p{color:#ddd !important}.theme-dark .accordion .card button:after,.theme-dark .accordion .card button,.theme-dark .price-wrap .middle-price h6,.theme-dark .form-div p,.theme-dark .form-div label p,.theme-dark .form-div .sign-up-text{color:#ddd}.theme-dark .form-div label p a,.theme-dark .form-div .sign-up-text a{color:#fff;margin-left:5px}.theme-dark .navbar-toggler{color:#fff;border-color:#fff}.theme-dark .accordion .card button.small-text a,.theme-dark .accordion .card button.small-text{color:#fff}.theme-dark .card-header{border-bottom:0 solid #000}.theme-dark .dark-bg-transparent{background-color:transparent !important}.theme-dark .dark-bg{background-color:#1a2236 !important}.theme-dark .nav-tabs li a.active{border-bottom:2px #ddd solid !important;color:#fff !important}.theme-dark .form-group label.text-dark-color,.theme-dark .text-dark-color{color:#111 !important}.theme-dark .list-group .list-group-item{border-bottom:0 solid #000}.theme-dark .course-slider{background-color:#000 !important}.theme-dark .header-wrapper .logo .light{display:none}.theme-dark .header-wrapper .logo .dark{display:inline-block}*{outline:none}*::after{margin:0;padding:0}*::before{margin:0;padding:0}body{line-height:1.75}body.fixed{overflow:hidden;position:fixed}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}ul{padding:0;margin:0}li{list-style:none}a{text-decoration:none;outline:none}a:hover:not(.not-hover),a:focus:not(.not-focus),a.active{text-decoration:none;outline:none;color:#007bff}b,strong,.strong{font-weight:700}.h-0{height:0}.main-wrap,.main-wrapper{opacity:1;transition:all .25s ease-in;overflow:hidden;position:relative;z-index:1}.main-wrap.show,.main-wrapper.show{opacity:1}.content-body{margin-left:65px;margin-top:18px;margin-right:6px;margin-bottom:45px}.text-grey-100{color:#f8f9fa !important}.text-grey-200{color:#e9ecef !important}.text-grey-300{color:#dee2e6 !important}.text-grey-400{color:#ced4da !important}.text-grey-500{color:#adb5bd !important}.text-grey-600{color:#6c757d !important}.text-grey-700{color:#495057 !important}.text-grey-800{color:#343a40 !important}.text-grey-900{color:#212529 !important}.fw-100{font-weight:100 !important}.fw-200{font-weight:200 !important}.fw-300{font-weight:300 !important}.fw-400{font-weight:400 !important}.fw-500{font-weight:500 !important}.fw-600{font-weight:600 !important}.fw-700{font-weight:700 !important}.fw-800{font-weight:800 !important}.fw-900{font-weight:900 !important}.swatch-primary{background-color:#fff}.swatch-secondary{background-color:#fff}.swatch-success{background-color:#fff}.swatch-info{background-color:#fff}.swatch-warning{background-color:#212529}.swatch-danger{background-color:#fff}.swatch-light{background-color:#212529}.swatch-dark{background-color:#fff}.swatch-olm{background-color:#212529}.pt150{padding-top:150px}.mont-font{font-family:"Montserrat",sans-serif}.roboto-font{font-family:"Roboto",sans-serif}.open-font{font-family:"Open Sans",sans-serif}.fredoka-font{font-family:"Fredoka One",cursive}.preloader{position:fixed;left:0px;top:0px;width:100%;height:100%;z-index:999999;background-color:#fff;background-position:center center;background-repeat:no-repeat;background-image:url(../../images/preloader.svg);background-size:80px}.menu-user-setting{position:fixed;left:310px;bottom:10px;background:#fff;z-index:99999}.navigation{position:fixed;top:0;-ms-flex-negative:0;flex-shrink:0;width:300px;height:100vh;overflow:hidden;background:#fff;-webkit-box-shadow:inset -1px 0 0 0 #e4e4e4;box-shadow:inset -1px 0 0 0 #e4e4e4;-webkit-transition:width .25s;-o-transition:width .25s;transition:width .25s;padding-top:90px;height:100%;z-index:9999}.navigation .nav-content{height:100%}.navigation .nav-content::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(226,226,226,.3);background-color:#f5f5f5}.navigation .nav-content::-webkit-scrollbar{width:5px;background-color:#f5f5f5}.navigation .nav-content::-webkit-scrollbar-thumb{background-color:#aaa7a7;border:2px solid #bab8b8}.navigation.menu-active #toggle-menu i{background-color:#e9ecef}.navigation.menu-active:not(:hover){width:90px;margin-bottom:96px}.navigation.menu-active:not(:hover) #toggle-menu{display:none !important}.navigation.menu-active:not(:hover) .nav-content{height:calc(100% - 96px)}.navigation.menu-active:not(:hover) .menu-user-setting{left:100px}.navigation.menu-active:not(:hover) .nav-content{width:90px}.navigation.menu-active:not(:hover) .nav-content ul li>a span{margin-left:30px}.navigation.menu-active:not(:hover) .nav-content ul li>a span.circle-count,.navigation.menu-active:not(:hover) .card,.navigation.menu-active:not(:hover) .nav-top a .logo-text,.navigation.menu-active:not(:hover) .nav-caption span{display:none !important}.navigation.menu-active:not(:hover) .nav-caption{padding-left:0 !important;padding-right:0 !important;text-align:center}.navigation.menu-active:not(:hover) .nav-footer{height:96px}.navigation.menu-active:not(:hover) .nav-footer .nav-user{flex-direction:column}.navigation.menu-active:not(:hover) .nav-footer .nav-user ul{width:100% !important}.navigation.menu-active:not(:hover) .nav-footer .nav-user span{display:none}.navigation.menu-current-color{background:linear-gradient(135deg, var(--theme-color), var(--theme-color-shade)) !important}.navigation.menu-current-color .nav-top a .logo-text,.navigation.menu-current-color .nav-content ul li:not(.logo) a i,.navigation.menu-current-color .nav-content ul li:not(.logo) a span{color:#fff !important}.navigation.menu-current-color .nav-caption{color:#fff !important;opacity:.6}.navigation.menu-current-color .nav-content ul li>a.active{background:var(--theme-color-tint) !important}@media(max-width: 991.98px){.navigation{position:fixed;top:0;left:-300px;z-index:1000;height:100vh;padding-top:0;transition:all .4s ease}.navigation.nav-active{left:0}}.navigation .card{transition:all .4s ease;width:calc(300px - 45px)}.navigation .nav-footer{position:absolute;bottom:0;left:0;right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:69px;border-top:1px solid #aaaab3}.navigation .nav-top{position:absolute;top:0;left:0;right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:96px}@media(max-width: 991.98px){.navigation .nav-top{position:relative}}.navigation .nav-top a{line-height:75px;text-align:left;padding-left:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px;white-space:nowrap}.navigation .nav-top a .logo-text{line-height:75px;transition:all .4s ease}.navigation .nav-caption{margin-bottom:15px;padding-left:35px;white-space:nowrap;color:#808191;-webkit-transition:padding .25s;-o-transition:padding .25s;transition:padding .25s}.navigation .nav-content{width:300px;transition:all .2s ease}@media(max-width: 991.98px){.navigation .nav-content{width:auto}}@media(min-width: 992px){.navigation .nav-content{-webkit-border-radius:0 10px 10px 0;-moz-border-radius:0 10px 10px 0;border-radius:0 10px 10px 0}}.navigation .nav-content ul{padding:0;margin:0}.navigation .nav-content ul.sidebar-submenu a{padding:2px 5px 2px 8px}@media(min-width: 992px){.navigation .nav-content ul{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media(min-width: 992px){.navigation .nav-content ul li.flex-lg-brackets{-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1}}.navigation .nav-content ul li:not(.logo){list-style-image:none;list-style-type:none;margin:1px 15px}@media(max-width: 991.98px){.navigation .nav-content ul li:not(.logo){margin:4px 15px}}.navigation .nav-content ul li:not(.logo) a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:5px 15px 5px 18px;white-space:nowrap;position:relative;font-size:15px;font-weight:600;line-height:28px;color:#888;height:40px;display:flex;overflow:hidden;transition:all .2s ease}.navigation .nav-content ul li:not(.logo) a span{font-size:15px;font-weight:600;line-height:28px;color:#888;transition:all .2s ease;margin-right:auto;padding-right:10px}.navigation .nav-content ul li:not(.logo) a i{font-size:26px;color:var(--theme-color);top:0px;position:relative}.navigation .nav-content ul li:not(.logo) a .circle-icon{content:"";display:block;width:7px;height:7px;padding:0;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;position:absolute;top:6px;right:13px}.navigation .nav-content ul li:not(.logo) a .circle-count{padding:1px 6px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;position:absolute;top:6px;display:inline-block;color:#fff;font-size:13px;right:13px}.navigation .nav-content ul li.brackets{-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1}.navigation .nav-content ul li>a.active{background:linear-gradient(135deg, var(--theme-color), var(--theme-color-shade)) !important;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.navigation .nav-content ul li>a.active span{color:#fff}.navigation .nav-content ul li>a.active:after{color:#fff}.navigation .nav-content ul li>a.active i{color:#fff}.navigation .nav-content ul li>a:hover span{color:var(--theme-color)}.navigation .nav-content ul li>a.active:hover span{color:#fff !important}.app-footer{display:none}@media(max-width: 991.98px){.app-footer{min-height:56px;position:fixed;z-index:100;bottom:0;left:0;right:0;background:#fff;display:flex;align-items:center;justify-content:space-between;border-top:1px solid #fff;padding-left:4px;padding-right:4px;padding-bottom:env(safe-area-inset-bottom)}.app-footer .cart-count{position:absolute;top:2px;right:10px;border-radius:15px;width:15px;height:15px;line-height:15px;text-align:center;display:inline-block;font-size:10px}.app-footer .dot-count{position:absolute;top:5px;right:15px;border-radius:5px;width:7px;height:7px;line-height:15px;text-align:center;display:inline-block;font-size:10px}.app-footer a{padding:6px 20px}.app-footer a i{color:var(--theme-color);font-size:25px;top:3px;position:relative}.app-footer a span{color:var(--theme-color)}}.app-header-search{display:block;padding:0;background:#fff;border-bottom:1px solid #fff;position:fixed;box-shadow:0 3px 6px 0 rgba(0,0,0,.1),0 1px 3px 0 rgba(0,0,0,.08);left:0;top:-50%;right:0;width:100%;z-index:1001;transition:.2s all ease-in-out}.app-header-search.show{top:env(safe-area-inset-top);transition:.3s all}.live-stream{height:600px}@media(max-width: 1399.98px){.live-stream{height:500px}}@media(max-width: 1199.98px){.live-stream{height:500px}}@media(max-width: 991.98px){.live-stream{height:400px}}.main-content{z-index:999;background-color:#fbfcfe}@media(min-width: 992px){.main-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-left:300px;-webkit-transition:all .25s;-o-transition:all .25s;transition:all .25s}}@media(min-width: 992px){.main-content.menu-active{padding-left:90px}}.main-content.menu-active .middle-sidebar-header.sticky-header{left:90px}@media(max-width: 991.98px){.main-content{order:1;position:relative;height:calc(100vh - 56px);overflow-x:hidden;overflow-y:auto}}.main-content .left-sidebar,.main-content .right-sidebar{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.main-content .left-sidebar .left-sidebar-content,.main-content .right-sidebar .left-sidebar-content{background:var(--theme-color-shade);overflow:hidden;width:270px;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;padding:0px 10px 10px 10px}.main-content .left-sidebar .left-sidebar-content .left-sidebar-header,.main-content .right-sidebar .left-sidebar-content .left-sidebar-header{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-moz-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:13px 15px 0 15px;background:var(--theme-color-shade)}@media(max-width: 767.98px){.main-content .left-sidebar .left-sidebar-content .left-sidebar-header,.main-content .right-sidebar .left-sidebar-content .left-sidebar-header{padding:20px 20px 0 20px}}.main-content .left-sidebar .left-sidebar-content .left-sidebar-bottom,.main-content .right-sidebar .left-sidebar-content .left-sidebar-bottom{background:var(--theme-color-shade);overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;padding:20px 15px 15px 15px}@media(max-width: 1399.98px){.main-content .left-sidebar .left-sidebar-content .left-sidebar-bottom,.main-content .right-sidebar .left-sidebar-content .left-sidebar-bottom{width:400px}}@media(max-width: 991.98px){.main-content .left-sidebar .left-sidebar-content .left-sidebar-bottom,.main-content .right-sidebar .left-sidebar-content .left-sidebar-bottom{width:100%}}@media(max-width: 767.98px){.main-content .left-sidebar .left-sidebar-content .left-sidebar-bottom,.main-content .right-sidebar .left-sidebar-content .left-sidebar-bottom{padding:0 20px 0 20px}}.main-content .left-sidebar .left-sidebar-content .left-sidebar-bottom .panel .panel-title a i,.main-content .right-sidebar .left-sidebar-content .left-sidebar-bottom .panel .panel-title a i{position:relative;top:3px}.main-content .left-sidebar .left-sidebar-content .left-sidebar-bottom .panel .panel-body ul,.main-content .right-sidebar .left-sidebar-content .left-sidebar-bottom .panel .panel-body ul{padding-left:31px}.main-content .left-sidebar .left-sidebar-content .left-sidebar-bottom .panel .panel-body ul li a,.main-content .right-sidebar .left-sidebar-content .left-sidebar-bottom .panel .panel-body ul li a{font-size:12px}.main-content .middle-sidebar-header{top:0;left:300px;right:0;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:65px;padding:0 15px;background:#fff;border-bottom:2px #eee solid;-webkit-transition:left .25s;-o-transition:left .25s;transition:left .25s}@media(max-width: 991.98px){.main-content .middle-sidebar-header{padding:10px 15px 10px 15px;height:auto;position:fixed;top:env(safe-area-inset-top);left:0;right:0;z-index:999;box-shadow:0 .5rem 1rem rgba(0,0,0,.03) !important}}.main-content .middle-sidebar-header .header-menu{display:none;border:0;background-color:transparent;flex-shrink:0;width:32px;height:38px;margin-right:32px;font-size:0}.main-content .middle-sidebar-header .header-menu:focus{outline:none}.main-content .middle-sidebar-header .header-menu:before{content:"";display:inline-block;width:32px;height:2px;margin:3px auto;border-radius:1px;background:#1b1d21;-webkit-transition:all .25s;-o-transition:all .25s;transition:all .25s}.main-content .middle-sidebar-header .header-menu:after{content:"";display:inline-block;width:32px;height:2px;margin:3px auto;border-radius:1px;background:#1b1d21;-webkit-transition:all .25s;-o-transition:all .25s;transition:all .25s}.main-content .middle-sidebar-header .header-menu.active:before{transform:translateY(4px) rotate(45deg)}.main-content .middle-sidebar-header .header-menu.active:after{transform:translateY(-4px) rotate(-45deg)}@media(max-width: 991.98px){.main-content .middle-sidebar-header .header-menu{display:inline-block}}@media(max-width: 991.98px){.main-content .middle-sidebar-header .header-search{display:none}}.main-content .middle-sidebar-header .header-search .form-group.icon-input i{top:10px}.main-content .middle-sidebar-bottom{width:100%;padding:20px 20px 10px 20px}@media(min-width: 992px){.main-content .middle-sidebar-bottom{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1}}@media(max-width: 1399.98px){.main-content .middle-sidebar-bottom{width:400px}}@media(max-width: 991.98px){.main-content .middle-sidebar-bottom{width:100%;padding:76px 15px 15px}}.main-content .middle-sidebar-bottom .middle-sidebar-left{width:calc(100% - 320px)}.right-menu-icon li a,.right-menu-icon li div.dropdown-box{display:inline-block;position:relative}.right-menu-icon li a .dot-count,.right-menu-icon li div.dropdown-box .dot-count{position:absolute;top:-3px;right:-3px;border-radius:5px;width:7px;height:7px;line-height:15px;text-align:center;display:inline-block;font-size:10px}.right-menu-icon li a:hover .menu-dropdown,.right-menu-icon li div.dropdown-box:hover .menu-dropdown{visibility:visible;opacity:1}.right-menu-icon li a .menu-dropdown,.right-menu-icon li div.dropdown-box .menu-dropdown{visibility:hidden;opacity:0;background-color:#fff;width:300px;padding:25px 30px;box-shadow:0px 15px 125px rgba(0,0,0,.22);border-radius:6px;z-index:9999;border:0;position:absolute;top:120%;right:-5px;text-align:left;transition:all .4s ease}.right-menu-icon li a .menu-dropdown:after,.right-menu-icon li div.dropdown-box .menu-dropdown:after{content:"";width:0;height:0;border-style:solid;border-width:0 10px 15px 10px;border-color:transparent transparent #fff transparent;position:absolute;top:-10px;right:10px;display:inline-block}@media(max-width: 991.98px){.right-menu-icon li{display:none}}.right-menu-icon li:last-child{display:none}@media(max-width: 991.98px){.right-menu-icon li:last-child{display:inline-block}}.middle-sidebar-right,.middle-sidebar-left{z-index:2;overflow-x:hidden;position:fixed;top:0;z-index:2;padding:76px 15px 56px;height:calc(100vh);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background-color:rgba(255,255,255,.3)}.middle-sidebar-right .middle-sidebar-content,.middle-sidebar-left .middle-sidebar-content{padding:0 2px 0 0;width:472px;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction: normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;margin-left:0px}@media(max-width: 991.98px){.middle-sidebar-right .middle-sidebar-content,.middle-sidebar-left .middle-sidebar-content{margin-left:auto}}.middle-sidebar-right{right:-504px}.middle-sidebar-right.active-sidebar{right:0px}.middle-sidebar-left{left:-504px}.middle-sidebar-left.active-sidebar{left:0px}.sidebar-right,.sidebar-left{background-color:#1a73e9;position:fixed;top:47%;transform:translateY(-47%);display:inline-flex;flex-shrink:0;align-items:center;justify-content:center;width:60px;height:60px;padding:0;border-radius:50%;z-index:222;visibility:visible;opacity:1;animation:pulse 2s infinite}.sidebar-right i,.sidebar-left i{font-size:18px;position:relative}.sidebar-right{right:-27px}.sidebar-right i{left:-10px}.sidebar-left{left:-27px}.sidebar-left i{right:-10px}@keyframes pulse{0%{transform:scale(0.95);box-shadow:0 0 0 0 rgba(52,172,224,.7)}70%{transform:scale(1);box-shadow:0 0 0 10px rgba(52,172,224,0)}100%{transform:scale(0.95);box-shadow:0 0 0 0 rgba(52,172,224,0)}}body:not(.theme-full) .main-content .middle-sidebar-header.sticky-header{position:fixed}body:not(.theme-full) .main-content .middle-sidebar-bottom.header-padding{padding-top:116px}.accordion-toggle{position:relative;display:block;line-height:25px}.accordion-toggle.icon-none:after{display:none}.accordion-toggle:after{font-family:"themify";position:absolute;content:"";right:-10px;top:1px;color:#999;font-weight:lighter;transform:rotate(-180deg);transition:all .2s ease-in}.accordion-toggle.collapsed::after{color:#999;transform:rotate(0deg);transition:all .2s ease-in}.navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1);display:none;height:40px}@media only screen and (max-width: 992px){.navbar-toggler{display:inline-block}}.navbar-toggler-icon{width:27px;height:2px;background-color:#999;position:relative;top:-2px}.navbar-toggler-icon:after{content:"";width:27px;height:2px;background-color:#999;position:absolute;top:-8px;left:0}.navbar-toggler-icon:before{content:"";width:27px;height:2px;background-color:#999;position:absolute;bottom:-8px;left:0}.icon-count{position:absolute !important;width:20px !important;height:20px !important;border-radius:20px !important;top:-10px !important;right:-10px !important;line-height:20px !important;text-align:center !important;font-size:12px !important;font-weight:500 !important;color:#fff !important;padding:0 !important}.upper-header{background-color:#f9f9f9 !important}.upper-header ul{margin-bottom:0;margin-top:20px}.upper-header ul li{position:relative;padding-left:15px}.upper-header ul li a{color:#ddd;font-size:11px;line-height:38px;font-weight:600;text-transform:uppercase}.upper-header ul li a i{position:relative;top:2px}.upper-header.bg-greylight ul li a{color:#999}.header-wrapper{width:100%}.header-wrapper.pos-fixed{position:fixed;top:0;z-index:5}@media only screen and (max-width: 992px){.header-wrapper.pos-fixed{position:relative}}@media only screen and (max-width: 768px){.header-wrapper.pos-fixed .navbar-collapse{background-color:#fff;padding:0 10px;border-radius:6px;margin-top:10px;box-shadow:0 .5rem 1rem rgba(0,0,0,.08) !important}}.header-wrapper.shadow-xs{box-shadow:0 .5rem 1rem rgba(0,0,0,.03) !important}.header-wrapper .nav-menu{display:inline-block;float:left;margin-left:40px;margin-top:0px}@media only screen and (max-width: 992px){.header-wrapper .nav-menu{margin-left:0;width:100%;display:block}}.header-wrapper .nav-menu.dropdown-menu-full{position:relative}.header-wrapper .nav-menu.dropdown-menu-full li{position:initial}.header-wrapper .nav-menu.text-white li a{color:#fff !important}.header-wrapper .nav-menu.text-black li a{color:#000 !important}.header-wrapper .nav-menu li{padding:0 15px;display:inline-block;float:left}@media only screen and (max-width: 992px){.header-wrapper .nav-menu li{padding:15px 0;text-align:left;width:100%;margin:0}}.header-wrapper .nav-menu li:hover .dropdown-menu{opacity:1;visibility:visible}.header-wrapper .nav-menu li .dropdown-menu{position:absolute;display:block;left:20px;top:148%;border:0;box-shadow:0 .5rem 1rem rgba(0,0,0,.08) !important;min-width:13rem;border-top:3px var(--theme-color) solid;border-radius:0 0 5px 5px;opacity:0;visibility:hidden;z-index:1030;transition:all .2s ease-in-out}@media only screen and (max-width: 992px){.header-wrapper .nav-menu li .dropdown-menu{position:relative;left:0;top:0;display:none;visibility:visible;opacity:1;border-top:0 solid #000;box-shadow:none !important;background-color:#f5f5f5;padding:0;margin-top:15px}.header-wrapper .nav-menu li .dropdown-menu.show{display:block}}.header-wrapper .nav-menu li .dropdown-menu a{padding:12px 15px;font-size:14px}.header-wrapper .nav-menu li .dropdown-menu.full-wrap{min-width:100%;top:115%;left:0;width:100%;padding:30px 30px 25px 40px;background-position:right 0px top 0;background-repeat:no-repeat;background-size:contain}.header-wrapper .nav-menu li .dropdown-menu.full-wrap ul.sub-menu{padding-left:0;margin-left:0;width:100%;float:left}.header-wrapper .nav-menu li .dropdown-menu.full-wrap ul.sub-menu li{width:100%;float:left;padding-left:0}.header-wrapper .nav-menu li .dropdown-menu.full-wrap ul.sub-menu li a{padding-left:0;font-weight:400;line-height:14px;display:block;font-size:14px}.header-wrapper .nav-menu li a{font-size:14px;line-height:22px;font-weight:600;letter-spacing:.4px;color:#333;transition:all .4s ease}.header-wrapper .nav-menu li a i{font-size:10px;margin-left:5px}@media only screen and (max-width: 992px){.header-wrapper .nav-menu li a i{float:right;line-height:22px;margin-right:10px}}.header-wrapper .nav-menu li a:after{display:none}.header-wrapper .nav-menu li a:hover{color:var(--theme-color)}@media only screen and (max-width: 992px){.header-wrapper .nav-menu li a{padding:0;color:#333 !important}}.header-wrapper .nav-menu.bg-dark li .nav-link{color:#eee !important;font-weight:500}.menu-icon{position:relative}.menu-icon .dot-count{position:absolute;top:5px;right:5px;border-radius:5px;width:7px;height:7px;line-height:15px;text-align:center;display:inline-block;font-size:10px}.footer-wrapper{margin-top:100px;padding:80px 0 10px;background-color:#f6f7fc}.footer-wrapper.bg-dark h5{color:#fff !important}.footer-wrapper.bg-dark .middle-footer{border-top:1px #555 solid !important}.footer-wrapper.bg-dark p a{color:#ddd !important}.footer-wrapper.bg-transparent{z-index:100;position:fixed;left:0;padding:15px 80px;bottom:0;margin-top:0;width:100%;box-shadow:none !important}@media only screen and (max-width: 992px){.footer-wrapper.bg-transparent{padding:15px 15px}}@media only screen and (max-width: 768px){.footer-wrapper{margin-top:30px;padding-top:50px;padding-bottom:30px}.footer-wrapper .logo img{width:100px}}@media only screen and (max-width: 576px){.footer-wrapper{padding-bottom:15px}}.footer-wrapper .icon-img{height:50px}@media only screen and (max-width: 576px){.footer-wrapper .icon-img{margin-bottom:20px}}.footer-wrapper form{overflow:hidden;border-radius:2px}.footer-wrapper form input{line-height:50px;width:70%;background-color:#fff;border:0;outline:none;display:inline-block;padding:0 15px;float:left;font-size:14px;box-shadow:0px 5px 10px rgba(0,0,0,.1)}.footer-wrapper form button{text-transform:uppercase;float:left;width:30%;line-height:50px;text-align:center;background-color:var(--theme-color);border:0;outline:none;color:#fff;font-size:12px;font-weight:600;letter-spacing:1px;box-shadow:0px 5px 10px rgba(0,0,0,.1)}@media only screen and (max-width: 768px){.footer-wrapper .copyright-text{text-align:center;width:100%;margin-bottom:0px;line-height:22px}}.footer-wrapper h4{font-size:24px;line-height:48px;font-weight:300;color:#2f2d52;margin-bottom:0}@media only screen and (max-width: 768px){.footer-wrapper h4{font-size:22px !important;line-height:36px}}.footer-wrapper h4 a{font-size:22px;color:#fff;font-weight:500;letter-spacing:1px;display:block;text-decoration:underline;margin-top:20px}.footer-wrapper p{color:#aaa;width:60%;font-size:12px;font-weight:500;line-height:28px}.footer-wrapper p a{color:#333;font-weight:600}.footer-wrapper h5{font-weight:600;color:#333;font-size:13px;letter-spacing:.4px;text-transform:capitalize}.footer-wrapper ul{margin-bottom:0;margin-top:20px}.footer-wrapper ul li a{color:#aaa;font-size:12px;line-height:34px;font-weight:500}.footer-wrapper .middle-footer{padding-top:75px;margin-top:75px;border-top:1px #ecedf2 solid}@media only screen and (max-width: 768px){.footer-wrapper .middle-footer{padding-top:30px !important;margin-top:20px !important;padding-bottom:0}}.footer-wrapper .lower-footer{padding-top:50px}@media only screen and (max-width: 768px){.footer-wrapper .lower-footer{padding-top:0}}.accordion{margin-bottom:50px}.accordion .card{box-shadow:none;background:#fff;margin-bottom:25px;border:0}.accordion .card .card-body,.accordion .card .card-header{background:#fff;padding:20px 30px;border-bottom:0 solid #000}@media only screen and (max-width: 768px){.accordion .card .card-body,.accordion .card .card-header{padding:15px 40px 15px 15px}}.accordion .card a.collapsed button:after{transform:rotate(-90deg);transition:all .5s ease}.accordion .card button{font-size:15px;color:#111;font-weight:600;padding-left:0}.accordion .card button:focus,.accordion .card button:hover{text-decoration:none}.accordion .card button.small-text{font-size:16px}.accordion .card button.small-text a{color:#111}.accordion .card button i{font-size:30px;margin-right:10px;position:relative;top:32px;margin-right:10px;color:#333;position:absolute;left:33px}.accordion .card button span{font-size:11px;color:#999;font-weight:400;display:block}.accordion .card button:after{font-family:"feather";content:"";font-size:25px;position:absolute;right:20px;top:20px;color:#888;transform:rotate(0deg);transition:all .5s ease}@media only screen and (max-width: 768px){.accordion .card button:after{right:10px}}.accordion .card button.small-text:after{top:33px}.accordion .card button.collapsed:after{transform:rotate(-90deg);transition:all .5s ease}.accordion .card p{font-size:15px;line-height:36px;color:#666}.owl-carousel.overflow-visible .owl-stage-outer{overflow:visible}.owl-carousel.overflow-visible .owl-item{opacity:.2;transition:all .4s ease}.owl-carousel.overflow-visible.opacity-5 .owl-item{opacity:.5;transition:all .4s ease}.owl-carousel.overflow-visible .owl-item.active{opacity:1}.owl-carousel.owl-theme .owl-dots{bottom:-70px;width:100%;position:absolute}.owl-carousel.owl-theme .owl-dots .owl-dot span{width:8px;height:8px;margin:4px;transition:all .4s ease}.owl-carousel.owl-theme .owl-dots .owl-dot.active span{background-color:var(--theme-color)}.owl-carousel.owl-theme.dot-none .owl-dots{display:none}.owl-theme.owl-nav-link .owl-nav{position:absolute;top:50%;width:100%;left:0%;margin-top:0}.owl-theme.owl-nav-link .owl-nav .owl-prev{left:10px;top:0;margin-top:-20px;position:absolute}.owl-theme.owl-nav-link .owl-nav .owl-next{right:10px;top:0;margin-top:-20px;position:absolute}.owl-theme.owl-nav-link .owl-nav [class*=owl-]:focus,.owl-theme.owl-nav-link .owl-nav [class*=owl-]:hover{background-color:transparent !important;outline:none !important}.owl-theme.owl-nav-link .owl-nav .icon-nav{font-size:18px;width:40px;height:40px;background-color:#fff;border-radius:50px;display:inline-block;text-align:center;line-height:40px;color:#000;box-shadow:0 .5rem 1rem rgba(0,0,0,.03) !important}.owl-theme.owl-nav-link .owl-nav .icon-nav:hover{color:#000}.owl-theme.owl-nav-link.edge-link .owl-nav .icon-nav{font-size:18px;width:40px;height:40px;background-color:#fff;border-radius:5px;display:inline-block;text-align:center;line-height:40px;color:#000;box-shadow:0 .5rem 1rem rgba(0,0,0,.03) !important}.owl-theme.owl-nav-link.edge-link .owl-nav{width:100%;left:0}.owl-theme.owl-nav-link.edge-link .owl-nav .owl-next{right:0px}.owl-theme.owl-nav-link.edge-link .owl-nav .owl-prev{left:0px}.owl-theme.owl-nav-link.edge-link .owl-nav .icon-nav{box-shadow:none !important;margin-top:-10px}.owl-theme.nav-none .owl-nav{display:none}.owl-theme.dot-style2 .owl-dots{bottom:20px !important}.owl-theme.dot-style2 .owl-dots .active span{background-color:transparent !important;border:1px #fff solid}.owl-theme.dot-style2 .owl-dots span{width:25px !important;height:25px !important;padding:10px;background-color:transparent;position:relative}.owl-theme.dot-style2 .owl-dots span:after{width:5px;height:5px;border-radius:5px;content:"";position:absolute;display:inline-block;background-color:#fff;top:9px;left:9px}.owl-theme.dot-style3.text-left-dot .owl-dots{text-align:center}.owl-theme.dot-style3 .owl-dots{bottom:0px !important;left:-4px !important;text-align:left}.owl-theme.dot-style3 .owl-dots .active span{background-color:transparent !important;border:2px var(--theme-color) solid}.owl-theme.dot-style3 .owl-dots span{border:2px transparent solid;transition:all .4s ease;width:25px !important;height:25px !important;padding:10px;background-color:transparent;position:relative}.owl-theme.dot-style3 .owl-dots span:after{width:5px;height:5px;border-radius:5px;content:"";position:absolute;display:inline-block;background-color:var(--theme-color);top:9px;left:9px}.owl-theme.right-nav .owl-nav{position:absolute;right:0;top:-90px;margin-top:0}.owl-theme.right-nav .owl-nav button{width:40px;height:40px;border-radius:50px;border:2px solid var(--theme-color)}.owl-theme.right-nav .owl-nav button i{color:var(--theme-color);font-size:18px;line-height:38px}.owl-theme.right-nav .owl-nav button:hover,.owl-theme.right-nav .owl-nav button:focus{background-color:transparent !important;outline:none !important}.owl-theme.right-nav .owl-nav button:hover i,.owl-theme.right-nav .owl-nav button:focus i{color:var(--theme-color)}.product-slider-3 .owl-thumbs{text-align:center;display:table;width:80px;left:-90px;top:0;margin-top:0px;position:absolute}.product-slider-3 .owl-thumb-item{width:100%;height:auto;border:none;background:none;padding:0;opacity:.5;overflow:hidden;background-color:#fff}.product-slider-3 .owl-thumb-item img{width:100%;height:auto;vertical-align:middle}.product-slider-3 .owl-thumb-item.active{opacity:1}.product-slider-3 .owl-thumb-item.active img{position:relative}.product-slider-3 .owl-thumb-item:active,.product-slider-3 .owl-thumb-item:focus{outline:none !important}.product-slider-4 .owl-thumbs{text-align:center;display:table;margin-top:10px;width:105%;margin-left:-10px;margin-right:-10px}.product-slider-4 .owl-thumb-item{width:46%;margin:2% 2% 2% 2%;height:auto;border:none;background:none;padding:0;opacity:1;overflow:hidden;background-color:#fff}.product-slider-4 .owl-thumb-item img{width:100%;height:auto;vertical-align:middle}.product-slider-4 .owl-thumb-item.active{opacity:1}.product-slider-4 .owl-thumb-item.active img{position:relative}.product-slider-4 .owl-thumb-item:active,.product-slider-4 .owl-thumb-item:focus{outline:none !important}.banner-wrap{background-position:right 50px top 10px;background-color:#e4f7fe}@media(max-width: 991.98px){.banner-wrap{background-position:right -150px center;background-size:80%}}@media(max-width: 767.98px){.banner-wrap{background-position:top 0px left}}.modal-backdrop-none .modal-backdrop.show{opacity:0 !important}.modal .modal-content .close{position:absolute;right:10px;top:10px;opacity:1;z-index:2;width:24px;height:24px;border-radius:20px;display:inline-block;line-height:10px}.modal .modal-content .close i{color:#fff;font-size:16px}.modal.in .modal-dialog{transform:none}.modal.in{opacity:1 !important}.modal-backdrop.in{opacity:.5}.modal.left.fade .modal-dialog{left:-280px;-webkit-transition:opacity .3s linear,left .3s ease-out;-moz-transition:opacity .3s linear,left .3s ease-out;-o-transition:opacity .3s linear,left .3s ease-out;transition:opacity .3s linear,left .3s ease-out}.modal.right.fade .modal-dialog{right:-280px;-webkit-transition:opacity .3s linear,right .3s ease-out;-moz-transition:opacity .3s linear,right .3s ease-out;-o-transition:opacity .3s linear,right .3s ease-out;transition:opacity .3s linear,right .3s ease-out}.modal.bottom.fade .modal-dialog{bottom:-50%;-webkit-transition:opacity .3s linear,bottom .3s ease-out;-moz-transition:opacity .3s linear,bottom .3s ease-out;-o-transition:opacity .3s linear,bottom .3s ease-out;transition:opacity .3s linear,bottom .3s ease-out}.modal.left.fade.in .modal-dialog,.modal.left.fade.show .modal-dialog{left:0}.modal.bottom.fade.in .modal-dialog,.modal.bottom.fade.show .modal-dialog{bottom:0px}.modal.right.fade.in .modal-dialog,.modal.right.fade.show .modal-dialog{right:0px}.modal-open .modal{overflow-y:hidden}@media(min-width: 576px){.modal.wide.fade .modal-dialog{max-width:800px}.modal.wide-xl.fade .modal-dialog{max-width:1000px}.modal.side.fade .modal-dialog{max-width:400px}.modal-dialog.video-wrap{max-width:900px}.modal-dialog.video-wrap .close{right:-20px;top:-20px}}.toggle{display:inline-block;vertical-align:middle;position:relative;box-sizing:border-box;align-self:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer}.toggle input[type=checkbox]{display:none}.toggle .toggle-icon{z-index:0;margin:0;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;position:relative;transition:.3s;box-sizing:border-box;display:block;cursor:pointer;width:calc(40px);height:calc(20px + 2px);border-radius:20px;background:#eee}.toggle .toggle-icon:before{content:"";position:absolute;left:2px;top:2px;height:calc(20px - 4px);width:calc(20px - 4px);border-radius:18px;box-sizing:border-box;background:#fff;box-shadow:0 2px 4px rgba(0,0,0,.3);z-index:1;transition-duration:.3s;transform:scale(1)}.toggle .toggle-icon:after{height:calc(20px - 4px);width:calc(20px - 4px);top:2px;left:2px;box-shadow:0 2px 4px rgba(0,0,0,.3);border-radius:calc(20px - 4px);background:#fff;position:absolute;z-index:2;transform:translateX(0px);transition-duration:.3s;content:""}.toggle input[type=checkbox]:checked+.toggle-icon{background:#ff3b30}.toggle input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(20px)}.toggle input[type=checkbox]:checked+.toggle-icon:before{opacity:0}.switchcolor-wrap ul{overflow:hidden}.switchcolor-wrap ul li{display:inline-block;float:left;margin-right:8px}.switchcolor-wrap ul li .item-content{display:inline;padding-left:0;position:relative}.switchcolor-wrap ul li .item-content .ti-check{left:10px;top:3px !important}.switchcolor-wrap ul li .item-content .ti-check:before{color:#fff;opacity:0}.switchcolor-wrap .circle-color{width:32px;height:32px;border-radius:50px;display:inline-block;cursor:pointer}.switchcolor-wrap label.item-radio input[type=radio]{display:none}.switchcolor-wrap label.item-radio input[type=radio]:checked~.ti-check:before{opacity:1}.switchcolor-wrap label.item-radio input[type=radio]~.ti-check{position:absolute;top:50%;margin-top:-11px;right:calc(var(--f7-safe-area-right) + 10px)}.switchcolor-wrap .toggle-div{padding:20px;border-radius:10px;box-shadow:0 8px 30px rgba(0,0,0,.15);border:1px #eee solid}.switchcolor-wrap .sheet-close{position:absolute;top:15px;right:10px;color:#444}.switchcolor-wrap .sheet-close i{font-size:20px}.dropdown-menu-settings{visibility:hidden;opacity:0;background-color:#fff;width:300px;padding:25px 30px;box-shadow:0px 15px 125px rgba(0,0,0,.22);border-radius:6px;z-index:999;border:0;position:absolute;top:100%;right:0;text-align:left;transition:all .4s ease}.dropdown-menu-settings.active{visibility:visible;opacity:1}.dropdown-menu-settings:after{content:"";width:0;height:0;border-style:solid;border-width:0 10px 15px 10px;border-color:transparent transparent #fff transparent;position:absolute;top:-10px;right:10px;display:inline-block}.timer{display:block;position:relative;float:left}.timer.style3 .time-count{max-width:25%;width:25%;margin:0;padding:0px;text-align:left}.timer.style3 .time-count .text-time{font-size:40px;font-weight:600;color:#fff;margin-left:0 !important;margin-right:20px !important;margin-bottom:0 !important;text-align:left;background:transparent;padding-bottom:0 !important;padding-left:0 !important}@media only screen and (max-width: 992px){.timer.style3 .time-count .text-time{font-size:30px}}.timer.style3 .time-count .text-day{text-align:left;margin-left:0;font-size:14px;font-weight:400;color:#eee;margin-top:0 !important;margin-bottom:10px}.timer.bg-white .time-count{max-width:25%;width:25%;margin:0;padding:10px}.timer.bg-white .time-count .text-time{font-size:30px;font-weight:700;color:#000;text-align:center;padding-bottom:0 !important}.timer.bg-white .time-count .text-day{text-align:center;margin-left:0;font-size:14px;font-weight:700;color:#999;margin-top:0 !important;margin-bottom:10px}.timer.bg-grey-time .text-time{background-color:#f5f5f5}.timer .time-count{margin:8px;max-width:60px;text-align:center;float:left;margin-left:0}.timer .text-time{padding:12px;margin:5px;font-weight:600;font-size:15px;background-color:#fff;border-radius:5px}.timer .text-day{display:block;text-align:center;margin-top:10px;font-size:12px;font-weight:600;margin-left:6px}.form-group.icon-input{position:relative}.form-group.icon-input i{position:absolute;left:15px;top:19px}.form-group.icon-input input{padding-left:35px}.form-group.icon-right-input{position:relative}.form-group.icon-right-input i{position:absolute;right:15px;top:12px}.form-group.icon-right-input input{padding-left:35px}.form-group .style1-input{height:55px;line-height:55px;display:block;font-size:12px}.form-group .style1-select{line-height:55px;height:55px;width:100%;font-size:14px;font-weight:500;color:#adb5bd !important}.form-group .style2-select{line-height:60px;height:60px;font-size:14px;font-weight:500;color:#adb5bd !important;border:2px #eee solid;border-radius:7px}.form-group .style2-input{height:60px !important;line-height:60px;display:block;border:2px #eee solid;border-radius:7px}.form-group .style2-input::-webkit-input-placeholder{font-size:14px;font-weight:600;letter-spacing:0;line-height:60px}.form-group .style2-input::-moz-placeholder{font-size:14px;font-weight:600;letter-spacing:0;line-height:60px}.form-group .style2-input:-ms-input-placeholder{font-size:14px;font-weight:600;letter-spacing:0;line-height:60px}.form-group .style2-input:-moz-placeholder{font-size:14px;font-weight:600;letter-spacing:0;line-height:60px}.form-group .style2-input i{position:relative;top:6px}.form-group .style2-textarea{line-height:20px;display:block;border:2px #eee solid;border-radius:7px}.search-form{position:relative}.search-form input{height:55px;line-height:55px;padding-left:20px;border-radius:8px;font-weight:500}.search-form i{position:absolute;top:18px;right:15px;color:#999}.form-control{height:50px;font-size:14px;display:inline-block;border:2px #eee solid}.form-control:focus{border-color:var(--theme-color)}.form-control.style2{height:60px;line-height:60px}.input-file{width:.1px;height:.1px;opacity:0;overflow:hidden;position:absolute;z-index:-1}.input-file+.js-labelFile{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 10px;cursor:pointer;font-weight:600;font-size:14px;line-height:40px;vertical-align:middle;padding:10px}.input-file+.js-labelFile.btn-tertiary{color:#555;padding:0;line-height:40px;width:300px;margin:auto;display:block;border:2px solid #555}.input-file+.js-labelFile.btn-tertiary:hover,.input-file+.js-labelFile.btn-tertiary:focus{color:#888;border-color:#888}.input-file+.js-labelFile i{font-size:24px;position:relative;top:5px;display:inline-block}.input-file+.js-labelFile i.large-icon{font-size:42px}.input-file+.js-labelFile.has-file i{display:none}.subscribe-widget:after{background-image:url(../images/paper-plane.png);background-size:200px;position:absolute;top:10px;right:-45%;opacity:.3;background-repeat:no-repeat;content:"";display:inline-block;width:368px;height:258px;z-index:-1}.quantity{height:60px;float:left;width:100px;position:relative;border:1px solid #dedede}.quantity-input{border:0;background:none;padding:0;width:100%;height:100%;font-size:18px;padding-left:17px;line-height:60px;color:inherit;text-align:center;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;appearance:none}.quantity .qtybutton{background-color:transparent;z-index:1;position:absolute;height:58px;cursor:pointer;width:2rem;font-size:18px;font-weight:300;line-height:60px;top:0;text-align:center;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;-ms-transition:all .3s ease-in;-o-transition:all .3s ease-in;transition:all .3s ease-in}.quantity .qtybutton.inc{right:0}.quantity .qtybutton.dec{left:0}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.15),0 2px 1px 0 rgba(0,0,0,.05)}.custom-switch .custom-control-input:not(:disabled):active~.custom-control-label::before{border:0}.custom-switch .custom-control-input:active~.custom-control-label::before{border:0}.custom-control-input:checked~.custom-control-label.bg-success::before{background-color:#10d876 !important;border-color:#10d876 !important}.bar-container{position:relative;background-color:#eee;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;height:5px;margin-top:7px;width:100%;float:left}.bar-percentage{background-color:#aaa;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;height:5px;padding:0;width:0;transition:all .4s ease}select.sort{border:0;color:#999;width:180px;font-size:13px;font-weight:600;padding:7px 15px;border:2px solid #ddd;border-radius:20px}.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base{width:100%;height:100%;position:relative;z-index:1}.noUi-origin{position:absolute;right:0;top:0;left:0;bottom:0}.noUi-handle{position:relative;z-index:1}.noUi-stacking .noUi-handle{z-index:10}.noUi-state-tap .noUi-origin{-webkit-transition:left .3s,top .3s;transition:left .3s,top .3s}.noUi-state-drag *{cursor:inherit !important}.noUi-base,.noUi-handle{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.noUi-horizontal{height:3px;border-radius:10px}.noUi-horizontal .noUi-handle{width:10px;height:10px;border-radius:50%;left:-3px;top:-3px;background-color:#222}.noUi-background{background:#ddd}.noUi-connect{background:#555;-webkit-transition:background 450ms;transition:background 450ms}.noUi-origin,.noUi-target{border-radius:2px}.noUi-draggable{cursor:w-resize}.noUi-vertical .noUi-draggable{cursor:n-resize}.noUi-handle{cursor:default;-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.noUi-handle:active{border:8px solid #345dbb;border:8px solid rgba(53,93,187,.38);-webkit-background-clip:padding-box;background-clip:padding-box;left:-14px;top:-14px}.custom-radio.size-sm label::before{width:15px !important;height:15px !important;top:5px;left:-30px}.quantity{height:60px;float:left;width:100px;position:relative;border:1px solid #dedede}.quantity-input{border:0;background:none;padding:0;width:100%;height:100%;font-size:18px;padding-left:17px;line-height:60px;color:inherit;text-align:center;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;appearance:none}.quantity .qtybutton{background-color:transparent;z-index:1;position:absolute;height:58px;cursor:pointer;width:2rem;font-size:18px;font-weight:300;line-height:60px;top:0;text-align:center;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;-ms-transition:all .3s ease-in;-o-transition:all .3s ease-in;transition:all .3s ease-in}.quantity .qtybutton.inc{right:0}.quantity .qtybutton.dec{left:0}.cart-wrapper .quantity{height:45px}.cart-wrapper .quantity-input{line-height:45px;font-size:15px}.cart-wrapper .quantity .qtybutton{height:43px;line-height:43px}label.required{}label.required::after{color:#dc3545 !important;content:"*";margin:0 .5em}.contact-wrap{z-index:1;top:-100px;padding:60px 80px 70px 80px}@media(max-width: 1199.98px){.contact-wrap{padding:50px}}@media(max-width: 991.98px){.contact-wrap{padding:40px 30px}.contact-wrap .display3-size{font-size:40px !important;margin-bottom:30px !important}}.contact-wrapper{padding:80px;max-width:550px}@media(max-width: 1199.98px){.contact-wrapper{padding:50px;max-width:500px;margin-top:80px;margin-bottom:50px}}.video-btn{background-color:#fff;width:60px;height:60px;border-radius:60px;position:absolute;top:60px;left:50%;margin-left:-30px;box-shadow:0 8px 30px rgba(0,0,0,.05);text-align:center}.video-btn i{line-height:60px;font-size:21px}.video-bttn{position:relative}.video-bttn:after{content:"";position:absolute;top:50%;left:50%;z-index:1;margin-left:-30px;margin-top:-30px;);background-size:contain;display:block;width:60px;height:60px}.video-bttn.default{background-color:rgba(255,255,255,.2);border-radius:50% !important;animation:videobtn 1.9s linear infinite;display:inline-block;width:60px;height:60px}.video-bttn.default:after{margin-left:0;position:relative;left:0}.question-div{transition:all .4s ease}.question-div .question-ans{cursor:pointer;transition:all .4s ease}.question-div .question-ans.style2{border:2px solid transparent !important}.question-div .question-ans.style1.active{background-color:var(--theme-color) !important;color:#fff !important}.question-div .question-ans.style2.active{border:2px solid var(--theme-color) !important}.question-div .question-ans.style3 span{transition:all .4s ease}.question-div .question-ans.style3.active span{background-color:var(--theme-color) !important;color:#fff !important}.triangle-after{position:relative}.triangle-after:after{width:0;height:0;border-style:solid;border-width:20px 20px 0 0;border-color:#fff transparent transparent transparent;content:"";position:absolute;left:0;bottom:-20px;z-index:2}.modal-popup-body,.chat-wrapper,.chat-left{height:calc(100vh - 150px)}.custom-scroll-bar::-webkit-scrollbar-track,.modal-popup-body::-webkit-scrollbar-track,.chat-wrapper::-webkit-scrollbar-track,.chat-left::-webkit-scrollbar-track{background-color:#f1f1f1}.custom-scroll-bar::-webkit-scrollbar,.modal-popup-body::-webkit-scrollbar,.chat-wrapper::-webkit-scrollbar,.chat-left::-webkit-scrollbar{width:4px;background-color:#f1f1f1}.custom-scroll-bar::-webkit-scrollbar-thumb,.modal-popup-body::-webkit-scrollbar-thumb,.chat-wrapper::-webkit-scrollbar-thumb,.chat-left::-webkit-scrollbar-thumb{background-color:#ddd}.arrow-right:after{background-image:url(../images/arrow.png);width:50px;right:-30px;z-index:2;position:absolute;height:17px;background-size:contain;background-position:center center;display:inline-block;content:"";position:absolute;top:35px;background-repeat:no-repeat}@media only screen and (max-width: 768px){.arrow-right:after{display:none}}.nav-tabs li a{transition:all .4s ease}.nav-tabs li a.active{border-bottom:2px #333 solid !important;color:#000 !important}.login-card{min-width:380px;max-width:400px}.coming-soon-card{min-width:500px;max-width:500px}.banner-slider .style-div{height:570px}@media(max-width: 1199.98px){.banner-slider .style-div{height:450px}}.recent-post{padding-left:20px}.recent-post li{list-style-type:disc;margin-bottom:5px}.recent-post li a{font-size:14px;font-weight:500;color:#777}.next-article:before{display:block !important;content:"";width:100%;height:2px;top:0px;left:0;position:absolute;z-index:1;background:linear-gradient(to right, #FFF 0, #eeeeee 35%, #eeeeee 65%, #FFF 100%);background:-ms-linear-gradient(left, #fff 0, #eeeeee 35%, #eeeeee 65%, #fff 100%);background:-o-linear-gradient(left, #fff 0, #eeeeee 35%, #eeeeee 65%, #fff 100%);background:-webkit-linear-gradient(left, #FFF 0, #eeeeee 35%, #eeeeee 65%, #FFF 100%);background:-moz-linear-gradient(left, #fff 0, #eeeeee 35%, #eeeeee 65%, #fff 100%);background:-webkit-gradient(linear, left top, right top, color-stop(0%, #FFF), color-stop(35%, #eeeeee), color-stop(65%, #eeeeee), color-stop(100%, #FFF))}.next-article:after{display:block !important;content:"";width:100%;height:2px;bottom:0px;left:0;position:absolute;z-index:1;background:linear-gradient(to right, #FFF 0, #eeeeee 35%, #eeeeee 65%, #FFF 100%);background:-ms-linear-gradient(left, #fff 0, #eeeeee 35%, #eeeeee 65%, #fff 100%);background:-o-linear-gradient(left, #fff 0, #eeeeee 35%, #eeeeee 65%, #fff 100%);background:-webkit-linear-gradient(left, #FFF 0, #eeeeee 35%, #eeeeee 65%, #FFF 100%);background:-moz-linear-gradient(left, #fff 0, #eeeeee 35%, #eeeeee 65%, #fff 100%);background:-webkit-gradient(linear, left top, right top, color-stop(0%, #FFF), color-stop(35%, #eeeeee), color-stop(65%, #eeeeee), color-stop(100%, #FFF))}.modal-popup-chat{padding:20px;position:fixed;bottom:0;right:0;z-index:100}.modal-popup-chat .modal-popup-wrap{width:350px}.modal-popup-chat .modal-popup-wrap .modal-popup-header{top:0;left:0}.modal-popup-chat .modal-popup-wrap .modal-popup-body{padding-top:80px;padding-bottom:80px}.modal-popup-chat .modal-popup-wrap .modal-popup-footer{bottom:0;left:0}.modal-popup-chat .message-content{color:#594939;padding:10px 20px;background-color:#fcf6ee;border-radius:20px 20px 20px 0px;max-width:80%;display:inline-block;text-align:left}.modal-popup-chat .message.self .message-content{border-radius:20px 20px 0px 20px;background-color:#e2efff;color:#2a4e7f}.dot-typing{position:relative;left:-9999px;width:6px;height:6px;border-radius:5px;color:#9880ff;box-shadow:none;animation:dotTyping 1.5s infinite linear;top:-4px;position:relative}.memberlist{margin-left:-15px;position:relative}.memberlist li{display:inline-block;float:none;position:relative;width:15px}.memberlist li.last-member a{width:30px;height:30px;display:inline-block;border-radius:30px;line-height:30px}.chatlist .item{width:55px}.chatlist .item img{width:100%;border:2px var(--theme-color) solid;border-radius:50px;padding:2px}.chatlist .item.dashed img{border:2px var(--theme-color) dashed}.chatlist .item.online:after{width:10px;height:10px;background-color:#28a745;position:absolute;bottom:3px;right:3px;display:inline-block;z-index:2;content:"";border-radius:5px}.chatlist.style2 .item{width:55px;border:2px solid transparent}.chatlist.style2 .item.no-ouline{border:2px #999 solid;border-radius:22px;text-align:center;line-height:52px}.chatlist.style2 .item.no-ouline:before{content:none}.chatlist.style2 .item.no-ouline span{line-height:20px;width:110%;left:-6%;margin-top:2px}.chatlist.style2 .item:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;margin:0px;border-radius:inherit;background:linear-gradient(to right, red, orange);border-radius:22px !important}.chatlist.style2 .item img{border:2px #000 solid;margin:0px;border-radius:22px !important}.chatlist.style2 .item.online:after{bottom:2px;right:2px}.chatlist.style2 .item span{position:absolute;width:100%;margin-top:3px;text-align:center}.chat-bottom{background-color:#fff;position:absolute;bottom:0;left:0;width:100%;z-index:11}.chat-form{padding:4px;width:100%}.chat-form .form-group{width:calc(100% - 90px);border-radius:30px;float:left;margin:0 5px;position:relative}.chat-form .form-group:after{background-color:var(--theme-color);opacity:.08;width:100%;height:100%;content:"";position:absolute;top:0;left:0;border-radius:30px}.chat-form input{width:100%;border:0;border-radius:30px;font-size:14px;padding:0 15px;line-height:40px;color:#ddd;font-weight:500}.chat-form button{border:0;width:40px;height:40px;border-radius:20px}.chat-form button i{font-size:16px}.chat-body{-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;margin:0px 0 0}@media(max-width: 991.98px){.chat-body{margin-top:20px;margin-bottom:0px;padding-right:20px;padding-left:20px;overflow:auto !important}}.chat-body .messages-content{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-moz-box-align:start;-ms-flex-align:start;align-items:flex-start;padding-bottom:70px !important}.chat-body .messages-content .message-item.outgoing-message{margin-left:auto;margin-right:5px}.chat-body .messages-content .message-item.outgoing-message .message-user{-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.chat-body .messages-content .message-item.outgoing-message .message-wrap{background-color:var(--theme-color);color:#fff}.chat-body .messages-content .message-item{max-width:97%;margin-bottom:20px}@media(max-width: 1399.98px){.chat-body .messages-content .message-item{max-width:75%}}.chat-body .messages-content .message-item .message-wrap{padding:14px;background-color:#ebeef6;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;position:relative;box-shadow:0 8px 30px rgba(0,0,0,.05);font-size:13px;color:#000;font-weight:500;line-height:24px;position:relative;z-index:2}.chat-body .messages-content .message-item .message-wrap.outgoing-message::after{display:none}@media(max-width: 1399.98px){.chat-body .messages-content .message-item .message-wrap{padding:20px}}.chat-body .messages-content .message-item .message-user{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:5px}.chat-body .messages-content .message-item .message-user .avatar{top:3px;position:relative}.chat-body .messages-content .message-item .message-user .avatar img{display:inline-block;margin-bottom:0;height:40px;width:40px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;margin-right:10px;box-shadow:0 8px 30px rgba(0,0,0,.05)}.chat-body .messages-content .message-item .message-user h5{font-size:14px;color:#0c0c0d;font-weight:700;line-height:1.3;margin-bottom:0px}.chat-body .messages-content .message-item .time{font-size:11px;font-weight:500;color:#aaa;margin-bottom:0px;position:relative;top:-3px;right:auto;display:inline-block}.chat-body .messages-content .message-item .time .ti-double-check:before{content:"";font-family:themify;position:relative;left:9px}.chat-body .messages-content .message-item .time .ti-double-check:after{content:"";font-family:themify}.cart-wrapper .table tbody td{border-top:0;vertical-align:middle;padding-top:10px}.input-code{width:200px;height:60px;line-height:60px}@media(max-width: 991.98px){.input-code{width:165px}}.animation-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{visibility:hidden;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{visibility:hidden;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideInUp{0%{-webkit-transform:translateY(100%);transform:translateY(100%);visibility:visible}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:visible}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{visibility:hidden;-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{visibility:hidden;-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideInDown{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%);visibility:visible}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%);visibility:visible}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@keyframes videobtn{0%{box-shadow:0 0 0 0 rgba(255,255,255,.1),0 0 0 10px rgba(255,255,255,.2),0 0 0 30px rgba(255,255,255,.2)}100%{box-shadow:0 0 0 10px rgba(255,255,255,.2),0 0 0 30px rgba(255,255,255,.2),0 0 0 50px rgba(255,255,255,0)}}@keyframes videobtn_red{0%{box-shadow:0 0 0 0 rgba(236,57,139,.1),0 0 0 10px rgba(236,57,139,.2),0 0 0 50px rgba(236,57,139,.3)}100%{box-shadow:0 0 0 10px rgba(236,57,139,.2),0 0 0 50px rgba(236,57,139,.2),0 0 0 100px rgba(236,57,139,0)}}@keyframes dotTyping{0%{box-shadow:9984px 0 0 0 var(--theme-color),9995px 0 0 0 var(--theme-color),10005px 0 0 0 var(--theme-color)}16.667%{box-shadow:9984px -10px 0 0 var(--theme-color),9995px 0 0 0 var(--theme-color),10005px 0 0 0 var(--theme-color)}33.333%{box-shadow:9984px 0 0 0 var(--theme-color),9995px 0 0 0 var(--theme-color),10005px 0 0 0 var(--theme-color)}50%{box-shadow:9984px 0 0 0 var(--theme-color),9995px -10px 0 0 var(--theme-color),10005px 0 0 0 var(--theme-color)}66.667%{box-shadow:9984px 0 0 0 var(--theme-color),9995px 0 0 0 var(--theme-color),10005px 0 0 0 var(--theme-color)}83.333%{box-shadow:9984px 0 0 0 var(--theme-color),9995px 0 0 0 var(--theme-color),10005px -10px 0 0 var(--theme-color)}100%{box-shadow:9984px 0 0 0 var(--theme-color),9995px 0 0 0 var(--theme-color),10005px 0 0 0 var(--theme-color)}}.right-scroll-bar{margin-left:0px;overflow-y:scroll}.right-scroll-bar::-webkit-scrollbar-track{background-color:transparent}.right-scroll-bar::-webkit-scrollbar{width:2px;background-color:transparent}.right-scroll-bar::-webkit-scrollbar-thumb{background-color:#aaa}.scroll-bar{margin-left:0px;overflow-y:scroll}.scroll-bar::-webkit-scrollbar-track{background-color:#f0f0f0}.scroll-bar::-webkit-scrollbar{width:2px;background-color:#f5f5f5}.scroll-bar::-webkit-scrollbar-thumb{background-color:#aaa}.email-message a{margin-bottom:3px;padding:20px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;position:relative}@media(max-width: 991.98px){.email-message a{padding:20px 10px;height:auto;display:block}}.email-message a .form-check{display:inline-block;position:relative}@media(max-width: 991.98px){.email-message a .form-check{display:none}}.email-message a .email-user{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:0;-ms-flex:0 0 226px;flex:0 0 226px;width:226px;padding:0 20px 0 10px}.email-message a .email-user img,.email-message a .email-user span.btn-round-sm{margin-left:7px;margin-right:7px}@media(max-width: 991.98px){.email-message a .email-user .btn-round-xss{display:none}}@media(max-width: 991.98px){.email-message a .email-user h6{margin-left:4px}}@media(max-width: 1199.98px){.email-message a .email-user{flex:0 0 180px;width:180px;padding:0 20px 0 0px}}@media(max-width: 991.98px){.email-message a .email-user{width:100%;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:0}}.email-message a .email-subject{position:relative;-webkit-box-flex:0;-ms-flex:0 0 210px;flex:0 0 210px;width:210px;padding:0 20px 0 34px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;font-weight:500;color:#44444f;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media(max-width: 991.98px){.email-message a .email-subject{display:none}}.email-message a .email-text{-webkit-box-flex:0;-ms-flex:0 0 calc(100% - 552px);flex:0 0 calc(100% - 552px);max-width:calc(100% - 552px);padding-right:20px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;color:#92929d}@media(max-width: 991.98px){.email-message a .email-text{max-width:100%;height:46px;margin-top:-10px;padding:0 0 0 47px;white-space:normal;line-height:1.66667}}.email-message a .email-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-negative:0;flex-shrink:0;width:24px;height:24px;font-size:0}@media(max-width: 991.98px){.email-message a .email-file{display:inline-block;position:absolute;top:50px;left:10px;width:auto}}.email-message a .email-time{-webkit-box-flex:0;-ms-flex:0 0 72px;flex:0 0 72px;width:72px;margin-left:auto;text-align:right;font-size:12px;color:#696974}@media(max-width: 991.98px){.email-message a .email-time{display:inline-block;position:absolute;top:14px;right:15px;width:auto}}.course-slider{height:410px;background-color:#000}@media(max-width: 1199.98px){.course-slider{height:370px}}.course-slider .card-body{width:60%;padding:0px 0 0 70px;z-index:3}@media(max-width: 991.98px){.course-slider .card-body{width:90%;padding:20px}}@media(max-width: 991.98px){.course-slider .card-body .w200{width:150px !important}}.course-slider .video-wrap{width:80%;margin-left:auto;position:relative;height:100%}@media(max-width: 991.98px){.course-slider .video-wrap{width:100%}}.course-slider .video-wrap:after{content:"";position:absolute;top:0;left:0%;width:60%;height:100%;background:linear-gradient(to right, #000, transparent);z-index:2}.course-slider .video-wrap video{position:absolute;width:120%;top:0}@media(max-width: 991.98px){.course-slider .video-wrap video{width:200%}}.cat-card-hover{cursor:pointer}.cat-card-hover img{transition:all .4s ease !important;position:relative}.cat-card-hover:hover img{transform:scale(1.2)}.course-card .card-image{overflow:hidden}.course-card .card-image img{transition:all .4s ease !important;position:relative}.course-card:hover .card-image img{transform:scale(1.1)}@media(min-width: 991px){.navbar-collapse{display:flex !important;flex-basis:auto}.main-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:100vh;overflow:hidden}.middle-wrap{max-width:800px;margin-left:auto;margin-right:auto}.pr-md--2{padding-right:.5rem !important}.pl-md--2{padding-left:.5rem !important}.pt-lg--5{padding-top:30px !important}.pb-lg--5{padding-bottom:30px !important}.pt-lg--7{padding-top:75px !important}.pb-lg--7{padding-bottom:75px !important}.pt-lg--10{padding-top:125px !important}.pb-lg--10{padding-bottom:125px !important}.pl-md--0{padding-left:0}.p-md--5{padding:3rem !important}.float-right-md{float:right !important}.vh-lg--100{height:100vh}}@media(min-width: 768px){.p-md--5{padding:3rem !important}.vh-md-100{height:100vh}}@media(min-width: 1800px){.col-xxl-9{flex:0 0 73%;max-width:73%}.col-xxl-3{flex:0 0 27%;max-width:27%}.col-xxxl-3{flex:0 0 25%;max-width:25%}.col-xxxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xxxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}}@media(min-width: 1600px){.container-half-fluid{width:1400px}.p-xxl-5{padding:3rem !important}}@media(min-width: 1400px){.middle-sidebar-left{padding-right:20px}}@media(min-width: 1200px){.vh-lg-100{height:100vh}.pl-lg--5{padding-left:3rem !important}.pr-lg--5{padding-right:3rem !important}.p-lg--5{padding:3rem !important}}@media(max-width: 1600px){.display5-size{font-size:60px !important}.main-content .middle-sidebar-bottom .sidebar-right{visibility:visible;opacity:1}.main-content .middle-sidebar-bottom .middle-sidebar-left{width:100%}.middle-sidebar-right{position:fixed;top:0;right:-504px;z-index:2;padding:15px;overflow:scroll;height:calc(100vh);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background-color:rgba(255,255,255,.3)}.middle-sidebar-right.active-sidebar{right:0px}}@media(max-width: 1400px){.overflow-visible-xl,.overflow-visible-xl .owl-stage-outer{overflow:visible !important}.xl-p-5{padding:3rem}}@media(max-width: 1200px){.coming-soon-card,.login-card{padding-top:100px;padding-bottom:100px}.display4-lg-size{font-size:50px !important}}@media(max-width: 991px){.display2-md-size{font-size:30px !important}.display4-md-size{font-size:40px !important}.coming-soon-card,.login-card{padding-top:50px;padding-bottom:50px}.md-mb-2{margin-bottom:1rem !important}.main-content .middle-sidebar-bottom .sidebar-right{display:none}}@media(max-width: 768px){.col-xs-12{flex:0 0 100%;max-width:100%}.col-xs-6{flex:0 0 50%;max-width:50%}.col-xs-3{flex:0 0 25%;max-width:25%}.col-xs-9{flex:0 0 75%;max-width:75%}.sm-mb-4{margin-bottom:2rem !important}.sm-mt-2{margin-top:1rem !important}.sm-mt-7{margin-top:5rem !important}.sm-mb-5{margin-bottom:3rem !important}.font-md-xxl{font-size:28px !important}.sm-text-center{text-align:center}.coming-soon-card,.login-card{min-width:320px}.sm-pt-10{padding-top:5rem}}@media(max-width: 576px){.d-none-xs{display:none !important}.xs-mb-4{margin-bottom:2rem !important}.xs-mb-2{margin-bottom:1rem !important}.xs-p-4{padding:2rem}.xs-pt-10{padding-top:150px}.owl-theme.owl-nav-link .owl-nav .icon-nav,.owl-theme.nav-xs-none .owl-nav{display:none !important}.col-xss-6{flex:0 0 50%;max-width:50%}.display4-xs-size{font-size:40px !important}.font-md-xs{font-size:18px !important}.display1-sm-size{font-size:25px !important}}/*# sourceMappingURL=style.css.map */ | |
</style> | |
<style> | |
</style> | |
<link rel="preload" href="https://rs.olm.vn/css/style.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/css/style.css?v=1747219608"> | |
</noscript> | |
<link rel="preload" href="https://rs.olm.vn/css/desktop/olm.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/css/desktop/olm.css?v=1747219608"> | |
</noscript> | |
<link rel="preload" href="https://rs.olm.vn/css/font-awesome/fontawesome.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/css/font-awesome/fontawesome.css?v=1747219608"> | |
</noscript> | |
<link rel="preload" href="https://rs.olm.vn/css/font-awesome/regular.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/css/font-awesome/regular.css?v=1747219608"> | |
</noscript> | |
<link rel="preload" href="https://rs.olm.vn/css/font-awesome/brands.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/css/font-awesome/brands.css?v=1747219608"> | |
</noscript> | |
<link rel="preload" href="https://rs.olm.vn/css/font-awesome/solid.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/css/font-awesome/solid.css?v=1747219608"> | |
</noscript> | |
<link rel="preload" href="https://rs.olm.vn/css/desktop/feather.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/css/desktop/feather.css?v=1747219608"> | |
</noscript> | |
<link rel="preload" href="https://rs.olm.vn/vendor/select2/css/select2.min.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/vendor/select2/css/select2.min.css?v=1747219608"> | |
</noscript> | |
<link rel="preload" href="https://rs.olm.vn/css/jquery.webui-popover.min.css?v=1747219608" as="style" | |
onload =" this.onload=null;this.rel='stylesheet' "> | |
<noscript> | |
<link rel="stylesheet" href="https://rs.olm.vn/css/jquery.webui-popover.min.css?v=1747219608"> | |
</noscript> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/css/discuss/discuss.css?v=1747219608"/> | |
<style> | |
span.q-static{ | |
counter-increment: ol-counter; | |
display: inline-flex; | |
justify-content: space-between!important; | |
} | |
span.q-static::before { | |
content: counter(ol-counter); | |
font-size: 0.6em; | |
color: #fff; | |
padding-left: 0.1rem; | |
} | |
</style> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/vendor/lib_question/qlib/qlib.css?v=1747219608"> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/vendor/jquery/jquery.ui.theme.css?v=1747219608"> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/vendor/quiz/js/math.css?v=1747219608"> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/vendor/alertifyjs/css/alertify.min.css?v=1747219608"> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/vendor/datepicker/tempusdominus-bootstrap-4.min.css"> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/css/teachercategories/category.css?v=1747219608"> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/css/teachercategories/d-category.css?v=1747219608"> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/css/teachercategories/print-cate.css?v=1747219608"> | |
<link rel="stylesheet" type="text/css" href="https://rs.olm.vn/vendor/katex/katex.min.css?v=1747219608"> | |
<title> LỊCH SỬ VÀ ĐỊA LÝ </title> | |
<meta name="description" content="Trang web cung cấp video bài giảng, câu hỏi tự luyện tập giúp học sinh học tập đạt kết quả cao nhất! OLM còn là nơi các bạn học sinh chia sẻ, hỏi đáp các bài tập khó, lời giải hay!"> | |
<meta name="keywords" content="LỊCH SỬ VÀ ĐỊA LÝ"> | |
<meta name="author" content="olm.vn"> | |
<meta name="publisher" content="olm.vn"> | |
<meta name="dc:publisher" content="olm.vn"> | |
<link rel="canonical" href="https://olm.vn/chu-de/lich-su-va-dia-ly-3492789624"/> | |
<meta property="og:locale" content="vi_VN" /> | |
<meta property="og:type" content="website" /> | |
<meta property="og:title" content="LỊCH SỬ VÀ ĐỊA LÝ" /> | |
<meta property="og:site_name" content="OLM" /> | |
<meta property="og:url" content="https://olm.vn/chu-de/lich-su-va-dia-ly-3492789624" /> | |
<meta property="og:image" content="https://olm.vn/images/logo-og-1.jpg" /> | |
<meta property="og:image" content="https://olm.vn/images/logo-og-1.jpg" /> | |
<script type="application/ld+json"> {"@context":"https:\/\/schema.org","@type":"WebPage","name":"LỊCH SỬ VÀ ĐỊA LÝ","image":["https:\/\/olm.vn\/images\/logo-og-1.jpg","https:\/\/olm.vn\/images\/logo-og-1.jpg"]} </script>
<!-- Google Tag Manager --> | |
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.defer=true;j.async=true;j.src= | |
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
})(window,document,'script','dataLayer','GTM-WXVQJST'); | |
}); </script> | |
<!-- Global site tag (gtag.js) - Google Ads: 936648078 --> | |
<script defer src="https://www.googletagmanager.com/gtag/js?id=AW-936648078"></script> | |
<script> | |
window.dataLayer = window.dataLayer || [{ | |
'user_id': "16550469029275", | |
"life_time": 183, | |
"vip_expired": -20223, | |
"user_type": 4, | |
"vip_type": 2, | |
"site": "olm", | |
}]; | |
function gtag(){dataLayer.push(arguments);} | |
gtag('js', new Date()); | |
gtag('config', 'AW-936648078'); | |
</script></head> | |
<body class="color-theme-olm "> | |
<div class="main-wrap-1"> | |
<div class="header-wrapper shadow-xss bg-white header-olm header-sticky-olm"> | |
<div class="container-fluid"> | |
<div class="d-flex align-items-center"> | |
<div class="mr-auto"> | |
<div class="d-flex align-items-center"> | |
<!-- <a class="btn-category-parent btn rounded-circle mr-2 not-hover not-focus" | |
href="https://olm.vn/hoc-lieu-cua-toi" | |
> | |
<i class="far fa-angle-left font-xss"></i> | |
</a> --> | |
<ul class="breadcrumb bg-transparent m-0 p-0 font-xs text-grey-700 align-middle"> | |
<li class="breadcrumb-item mw-200-p"> | |
<a class="text-grey-700 not-hover not-focus" href="https://olm.vn"> | |
<img src="/images/logo.png?v=1747219608" width="70" alt="Học trực tuyến OLM"> | |
</a> | |
</li> | |
<li class="breadcrumb-item mw-200-p"> | |
<a class="text-grey-700 not-hover not-focus text-limit-line-1" href=" /lop-4" title = "Lớp 4" | |
title =" Lớp 4 "> | |
Lớp 4 | |
</a> | |
</li> | |
</ul> | |
<div class="mx-1"></div> | |
<div class="pr-2"> | |
<a class="olm-text-three" rel="noopener noreferrer" data-toggle="tooltip" data-placement="right" title="Thi đấu" href="https://olm.vn/thi-dau?category=3492789624" data-original-title="Thi đấu"> | |
<i class=" far fa-bolt "></i> | |
</a> | |
</div> | |
<span class="badge badge-info"> Bài GV giao </span> | |
</div> | |
</div> | |
<div class="d-flex float-right align-items-center"> | |
<div> | |
</div> | |
<ul class="d-flex ml-auto right-menu-icon mr-2"> | |
<li class="nav-item d-flex align-items-center dropdown ml-4" id="dropdownMenuUser"> | |
<div class="dropdown-box"> | |
<div class="d-flex align-items-center"> | |
<span class='olm-circle olm-bg-primary rounded-circle border ' data-input='pham thanh phong' style='width:40px;height:40px;font-size:20px'> PT </span> | |
<span class="ml-1 font-weight-bold olm-text-primary text-truncate align-text-top d-none d-xl-inline-block" style="max-width: 100px;"> Phạm Thanh Phong </span> | |
</div> | |
<div class="menu-dropdown header-user px-0 scroll-bar" style="max-height: 80vh"> | |
<h4 class="fw-700 font-xs mb-2 text-center"> | |
<a href="https://olm.vn/thanhvien/16550469029275" class="olm-text-link"> Phạm Thanh Phong </a> | |
</h4> | |
<a href="https://olm.vn/thong-tin-tai-khoan/info" class="dropdown-item d-flex align-items-center font-xss" title="Thông tin tài khoản"> | |
<i class="mr-2 font-xs far fa-cog " ></i> Thông tin tài khoản | |
</a> | |
<a href="/dang-xuat" class="dropdown-item d-flex align-items-center font-xss"> | |
<i class="mr-2 font-xs far fa-sign-out-alt " ></i> Đăng xuất tài khoản | |
</a> | |
<a href="https://olm.vn/intro-invite" title="Giới thiệu bạn bè" class="dropdown-item d-flex align-items-center font-xss"> | |
<i class="font-sm w-24-p mr-1 far fa-gift " ></i>
<span> Giới thiệu bạn bè </span> | |
</a> | |
<a href="https://olm.vn/thongke" title="Học bạ" class="dropdown-item d-flex align-items-center font-xss"> | |
<i class="font-sm w-24-p mr-1 far fa-chart-bar " ></i>
<span> Học bạ </span> | |
</a> | |
<a href="/mua-vip" title="Mua VIP" class="dropdown-item d-flex align-items-center font-xss"> | |
<i class="font-sm w-24-p mr-1 far fa-star " ></i>
<span> Mua VIP </span> | |
</a> | |
<a href="/vi-cua-toi" title="Ví của tôi" class="dropdown-item d-flex align-items-center font-xss"> | |
<i class="font-sm w-24-p mr-1 far fa-wallet " ></i>
<span> Ví của tôi </span> | |
</a> | |
<a href="https://olm.vn/lop-hoc-cua-toi" title="Lớp học của tôi" class="dropdown-item d-flex align-items-center font-xss"> | |
<i class="font-sm w-24-p mr-1 far fa-address-book " ></i>
<span> Lớp học của tôi </span> | |
</a> | |
<a href="https://olm.vn/thao-luan-hoc-sinh" title="Thảo luận" class="dropdown-item d-flex align-items-center font-xss"> | |
<i class="font-sm w-24-p mr-1 far fa-question-circle " ></i>
<span> Thảo luận </span> | |
</a> | |
<a href="https://olm.vn/bai-tap-duoc-giao" title="Bài tập được giao" class="dropdown-item d-flex align-items-center font-xss"> | |
<i class="font-sm w-24-p mr-1 far fa-edit " ></i>
<span> Bài tập được giao </span> | |
</a> | |
</div> | |
</div> | |
</li> | |
</ul> | |
<a href="/bg/hotroolm" title="Trợ giúp sử dụng OLM" class="ml-1 header-btn fw-500 btn olm-btn-three font-xssss p-1 lh-24 w100 text-center text-white d-inline-block rounded-xxl"> | |
<i class="mr-1 far fa-question"></i> Trợ giúp | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div style="height: 4.2rem;" class="distance-with-body"></div>
<div class="main-wrap-body mx-3"> | |
<div class="container-fluid"> | |
<div class="row"> | |
<div class="position-relative leftside-content-category d-none"> | |
</div> | |
<div class="right-content-category w-100"> | |
<div id="right-content"> | |
<div class="modal " id="modal-report-cate" > | |
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-lg "> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<h5 class="modal-title"> Báo cáo học liệu </h5> | |
<button type="button" class="close p-0 m-0" data-dismiss="modal" aria-label="Close"> | |
<span aria-hidden="true"> × </span> | |
</button> | |
</div> | |
<div class="modal-body scroll-bar"> | |
<input type="hidden" value="" name="_id"/> | |
<div class="form-group"> | |
<label for="input-report-cate"> Báo cáo: </label> | |
<textarea class="form-control" id="input-report-cate" name="textarea-report-cate" rows="3" placeholder="Nhập"></textarea> | |
</div> | |
</div> | |
<div class="modal-footer"> | |
<button class='btn olm-btn-primary text-white btn-submit mb-0'> Lưu </button> | |
<button type="button" class="btn btn-secondary mb-0" data-dismiss="modal"> Đóng </button> | |
</div> | |
</div> | |
</div> | |
</div>
<div class="modal " id="modal-buy-cate" > | |
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-lg "> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<h5 class="modal-title"> Mua học liệu </h5> | |
<button type="button" class="close p-0 m-0" data-dismiss="modal" aria-label="Close"> | |
<span aria-hidden="true"> × </span> | |
</button> | |
</div> | |
<div class="modal-body scroll-bar"> | |
<input type="hidden" value="" name="_id"/> | |
<div class=""> | |
<h5 class="font-weight-bold"> Mua học liệu: </h5> | |
<ul class="list-style-disc pl-3"> | |
<li> | |
<span><h5> Số dư ví của bạn: <b class="olm-text-three"> 0 coin </b> - <b class="olm-text-two"> 0 Xu </b></h5></span> | |
</li> | |
<li> | |
<span><h5> Nếu mua học liệu này bạn sẽ bị trừ: <b class="olm-text-two"><span class="cate-price"> 0 </span> coin\Xu </b></h5></span> | |
</li> | |
</ul> | |
<div> | |
<button class="btn olm-btn-primary submit-buy-cate"> Xác nhận mua </button> | |
</div> | |
</div> | |
<div class="dropdown-divider"></div> | |
<div> | |
<h5 class="font-weight-bold"> Để nhận Coin\Xu, bạn có thể: </h5> | |
<ul class="list-style-disc pl-3"> | |
<li> | |
<a class="olm-text-link" href="https://olm.vn/hoi-dap" title="Hỏi đáp" target="_blank"> | |
Trả lời câu hỏi trong cộng đồng hỏi đáp của OLM để nhận <b class="olm-text-two"> coin </b> | |
</a> | |
</li> | |
</ul> | |
<div> | |
<a class="olm-text-link font-weight-bold" href="https://olm.vn/tin-tuc/trien-khai-chuc-nang-vi-cua-toi"> | |
<h5> Chi tiết xem tại đây </h5> | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div>
<div class="modal " id="modal-free-user-info" data-backdrop=static > | |
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable "> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<h5 class="modal-title"> Thông tin của bạn </h5> | |
</div> | |
<div class="modal-body scroll-bar"> | |
<div class="box-login-user"> | |
<div class="alert alert-danger font-xs mb-2 py-2 text-center"> | |
<b> Hãy đăng nhập hoặc nhập tên của bạn! </b> | |
</div> | |
<div class="d-flex align-items-center mb-2"> | |
<span class="mr-1 font-weight-bold"> Nếu bạn đã có tài khoản OLM: </span> | |
<div> | |
<a href="https://olm.vn/dangnhap?redirect=https%3A%2F%2Folm.vn%2Fchu-de%2Flich-su-va-dia-ly-3492789624" class="btn olm-btn-primary" title="Đăng nhập OLM"> | |
Đăng nhập | |
</a>
</div> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label class="font-weight-bold label-input-name-user"> Hoặc hãy nhập tên của bạn: </label> | |
<input class="form-control" type="text" name="name-user" placeholder="Ví dụ: Nguyễn Văn A - 3A2"> | |
</div> | |
</div> | |
<div class="modal-footer"> | |
<button class='btn olm-btn-primary text-white btn-submit mb-0'> Xác nhận </button> | |
</div> | |
</div> | |
</div> | |
</div>
<div id="modal-noti-awarded-star" class="modal" tabindex="-1" role="dialog" style="background: transparent; position: absolute; float: left; left: 50%; top: 50%; transform: translate(-50%, -50%); height: auto; "> | |
<div class="modal-dialog" role="document"> | |
<div class="modal-content"> | |
<button type="button" class="close btn-close-modal-mobile" data-dismiss="modal"> × </button> | |
<div class="modal-body"> | |
<div class="w-100 h-100"> | |
<div class="text-eff text-center"> CHÚC MỪNG </div> | |
<div class="glow"> Bạn đã nhận được sao học tập </div> | |
<div class="d-flex justify-content-start align-items-center w-100"> | |
<img src="https://rs.olm.vn/images/bird.gif" width="50%"> | |
<div class="h5"> | |
<div class="text-danger font-weight-bold text-justify"> | |
<div><i class="fas fa-bells"></i> Chú ý: </div> | |
Thành tích của bạn sẽ được cập nhật trên bảng xếp hạng sau 1 giờ! | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div>
<div id="content-zone" class="scroll-bar content-zone"> | |
<div class="pt-1 content-holder "> | |
<div class="box-header-action-cate w-100"> | |
<div class="row mt-2"> | |
<div class="col-12"> | |
<div class="d-flex justify-content-between w-100"> | |
<div class="d-flex align-items-center"> | |
<h1 class="fw-700 font-lg w-70" id="title-cate"> | |
LỊCH SỬ VÀ ĐỊA LÝ | |
<span class="badge badge-pill olm-bg-one text-white" data-toggle="tooltip" data-placement="top" title="Học liệu dành riêng cho tài khoản VIP hoặc gói SVIP"> SVIP </span> | |
</h1> | |
<div class="mr-2"> | |
</div> | |
<div class="mx-2"> | |
<span class="olm-text-link btn-get-history font-xs hand" data-toggle="collapse" | |
data-target =" #collapseHistory " aria-expanded =" false " aria-controls =" collapseHistory " | |
data-toggle =" tooltip " data-placement =" top " title =" Xem lịch sử bài làm với học liệu hiện tại "> | |
<i class="fas fa-history"></i> | |
</span> | |
</div> | |
</div> | |
<div class="d-flex flex-row font-xs align-items-center"> | |
<button class='btn olm-btn-three mr-1 mt-2 btn-download-file-word not-hover mb-2' onclick='MANAGE_IMPORT_QUESTION_V2.openDownloadFileWord()'> | |
<i class="mr-2 font-xs fas fa-file-download"></i> Tải bài | |
</button> | |
<div class="modal" id="modal_download_file_word" data-backdrop="static"> | |
<div class="modal-dialog modal-dialog-scrollable w-80 mw-80"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<h5 class="modal-title"> Tải đề xuống bằng file Word </h5> | |
<button type="button" class="close p-0 m-0" data-dismiss="modal" aria-label="Close"> | |
<span aria-hidden="true"> × </span> | |
</button> | |
</div> | |
<div class="modal-body"> | |
<div id="list_question"> | |
<form id="form_download_file_word"> | |
<div class="form-group"> | |
<label for="name_education"> Tên sở giáo dục </label> | |
<input type="text" class="form-control" id="name_education" placeholder="Nhập tên sở"> | |
</div> | |
<div class="form-group"> | |
<label for="name_school"> Tên trường </label> | |
<input type="text" class="form-control" id="name_school" placeholder="Nhập tên trường"> | |
</div> | |
<div class="form-group"> | |
<label for="name_school"> Thời gian làm bài </label> | |
<input type="number" class="form-control" id="time" placeholder="Nhập Thời gian làm bài"> | |
</div> | |
<div class="form-check"> | |
<input type="checkbox" class="form-check-input" id="showAns"> | |
<label class="form-check-label" for="showAns"> Hiển thị đáp án </label> | |
</div> | |
</form> | |
<button id="submit_form_download_file_word" class="btn btn-primary"> Tải xuống </button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-12"> | |
</div> | |
</div> | |
</div> | |
<div> | |
<p class="olm-text-primary"> Nội dung này do giáo viên tự biên soạn. </p> | |
</div> | |
<div class="mt-2" id="history-category-of-a-student" ></div> | |
<div class="row mx-0"> | |
<div class="col-12 px-0"> | |
<div class="progress"> | |
<div id = "progressbar" class="progress-bar" role="progressbar" style="width: 0%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"> 25% </div> | |
</div> | |
<div id = "question-static" class = "p-0 mw-100"> | |
</div> | |
<div id="qholder" class="qholder px-2 mt-1"> | |
<div class='verygood' id='verygood' style="display: none"> | |
<div id='good' class='good alert-success text-shadow'> Đúng rồi ! </div> | |
</div> | |
<div class="question-hold scroll-bar"> | |
<div id="question" class="question"> | |
<img src = "/images/loading.svg" style = "width: 64px;" alt = "Đang tải dữ liệu câu hỏi" title = "Đang tải dữ liệu câu hỏi" />
</div> | |
<div class="box-status-record"></div> | |
</div> | |
<div class="d-flex font-xsss ml-1 text-warning fw-500"> | |
<div id='remain-down'></div> | |
</div> | |
<div id='fullscreen-static' class="fullscreen-static visible-desktop" style="display: none"></div> | |
<div id='modal-guide'></div> | |
<div class="modal" id="modal-confirm"> | |
<div class="modal-dialog modal-dialog-centered"> | |
<div class="modal-content"> | |
<div class="modal-body confirm-content"></div> | |
<div class="modal-footer"> | |
<button type="button" class='btn btn-confirm' style='margin-right: 10px;'></button> | |
<button type="button" class="btn btn-cancel" data-dismiss="modal"></button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mt-3" id="ipad-container"></div> | |
</div> | |
</div> | |
<!-- <div> | |
</div> --> | |
</div> | |
</div> | |
<div class="footer-action"> | |
<div class="content-holder-toolbar toolbar"> | |
<div class="row w-100"> | |
<div class="col-12"> | |
<div id="atn-6faa8040da20ef399b63a72d0e4ab575" style="position:fixed;right: |
AI HOIR
lấy độ dài 1 cạnh nhân vs chính nó
1.Vịnh Hạ Long,đảo Cát Bà (Việt Nam)
2.Hội An (Việt Nam)
3.Vườn bách thảo Singapore (Singapore)
4.Luang Prabang (Lào)
5.Vườn quốc gia Gunung Mulu (Borneo,Malaysia)
6.Thành phố lịch sử Sukhothai và những điểm lân cận (Thái Lan)
7.Vườn quốc gia Komodo (Indonesia)
8.Ruộng bậc thang vùng Cordilleras (Philippines)
9.Công viên tự nhiên rạn san hô Tubbataha (Philippines)
10.Di sản rừng mưa nhiệt đới Sumatra (Sumatra,Indonesia)
Đúng(0)em mới lớp 4 mong anh chị trợ giúp mai thứ 4 em thi khoa tiếng v rồi mong ac chúc j đó ạ
Ko bt