]> lifelog.hopto.org Git - LifeLog.git/commitdiff
Added more feeds.
authorWill Budic <redacted>
Fri, 22 Sep 2023 04:46:33 +0000 (14:46 +1000)
committerWill Budic <redacted>
Fri, 22 Sep 2023 04:46:33 +0000 (14:46 +1000)
htdocs/cgi-bin/CNFServices.cgi
htdocs/cgi-bin/system/modules/RSSFeedsPlugin.pm
htdocs/cgi-bin/wsrc/feeds.css
htdocs/cgi-bin/wsrc/feeds.js
htdocs/cgi-bin/wsrc/feeds_viral_now.css [new file with mode: 0644]

index f27d4851572a2612a3bca4764b67724ab0077078..512925dd6b59b15b58ee75fdf868142d546da9de 100755 (executable)
@@ -95,6 +95,10 @@ of the Perl programming language through open discussion, collaboration, design,
 #`Perl Weekly`https://perlweekly.com/perlweekly.rss`A free, once a week e-mail round-up of hand-picked news and articles about Perl.
 The Perl Weekly ( http://perlweekly.com/ ) is a newsletter including links to blog posts and other news items
  related to the Perl programming language.~
+#`The Cipher Brief RSS Feed`https://www.thecipherbrief.com/feed`The Cipher Brief is the go-to digital platform for the latest security news and high-level analysis. Each day, we offer multiple expert perspectives, engaging the private sector to find solutions and foster dialogue on what events mean for businesses and organizations around the world. More than just reporting on the news, The Cipher Brief helps readers understand what the news means to you.~
+#`Viral Now`https://viralnow.uk/feed/`ViralNow is a dynamic online platform at the forefront of curating and delivering trending and viral content. ViralNow brings you the latest and most engaging stories, videos, and articles from around the world.~
+#`The Sydney Morning Herald - World RSS Feed`http://www.smh.com.au/rssheadlines/world/article/rss.xml`The Sydney Morning Herald is Australia's leading news source. The Sydney Morning Herald sets the standard for journalistic excellence for Sydney, Australia, and the rest of the world. From breaking news, to travel and fashion, The Sydney Morning Herald continues to transform the way Australians get their news.~
+#`LifeHacker`https://lifehacker.com/rss`Lifehacker’s an award-winning daily blog that features tips, shortcuts, and downloads that help you work and live smarter and more efficiently.~
 >>
 
 __CNF_IS_COOL__
index 754ba0ade30d2abf10fa83eb82e84cdf537dc480..dab22faacce0dc5d85e6733c95b56fc7e394e951 100644 (file)
@@ -93,6 +93,9 @@ sub collectFeeds($self, $parser) {
             }
             if(isCNFTrue($self->{CONVERT_CNF_HTML})){
                $page .= _treeToHTML($tree);
+               $page .=qq(<a class="ui-button ui-corner-all ui-widget" onclick="return fetchFeeds('#feeds_bottom')">RSS Feeds</a>
+                <div id="feeds_bottom" class="rz" style ="margin: 5px; visibility:hidden"></div>
+               )
             }
          }else{
             $parser-> warn("Feed '$name' bailed to return a CNFNode tree.")
@@ -122,7 +125,8 @@ sub _treeToHTML($tree){
         my $item(@{$brew->items()}){
         next if $item->name() ne 'Item';
         my ($Title,$Link,$Date) = $item -> array('Title','Link','Date');
-        my $Description         = $item -> node('Description')-> val();
+        my $Description         = $item -> node('Description') -> val();
+        $Description =~ s/<a class=\"article-read-more\"/<a class=\"article-read-more\" target=\"feed\"/gs if $Description;
         $bf.= qq(
             <div class="feed">
             <div class="feeds_item_$alt">
@@ -185,12 +189,13 @@ sub fetchFeed($self,$name,$url,$description){
         }
         unless ( -e $fname ) {
             try{
-                print "Fetching: $fname -> $url ...";
+                print "Fetching: $fname -> [$url] ...";
                 my  $res = getstore($url, $fname);
                 if ($res == 200){
-                    print "\e[2Adone!\n"
+                    print "done!\n"
                 }else{
-                    print "\e[2AError<$res>!\n"
+                    print "Error<$res>!\n";
+                    `curl $url -o $fname`
                 }
             }catch{
                 print "Error: $@.\n";
index 51115df6dbda0ce52e03bc711a9832d1160aef0a..463812b32f0864bea4fa6a90d060f61346134b6b 100644 (file)
     vertical-align: top;
 }
 
+.feed_desc img{
+    width: 10%;
+}
+
+
+/*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */
+ @font-face {
+    font-family: flownews-FontAwesome;
+    src: url(fonts/fontawesome-webfont.eot?v=4.7.0);
+    src: url(fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');
+    font-weight: 400;
+    font-style: normal
+}
+
+.flownewsicon {
+    display: inline-block;
+    font: normal normal normal 14px/1 flownews-FontAwesome;
+    font-size: inherit;
+    text-rendering: auto;
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: grayscale
+}
+
+.fa-angle-double-left:before {
+    content: "\f100"
+}
+
+.fa-angle-double-right:before {
+    content: "\f101"
+}
+
+
+.article-read-more i:before {
+    margin-left: 10px;
+    margin-right: 0;
+    width: 30px;
+    content: "...read\f101";
+}
+
+.article-read-more a {
+    margin-left: 10px;
+    margin-right: 0;
+}
+
+
+
 
index 3ba71914f98810b0fc9d3e7a22427d95dc113c0d..97d194204bd7302bcda3ceb05017dc6bd29446f6 100644 (file)
@@ -1,6 +1,7 @@
-
-function fetchFeeds(){
-    var pnl = $('#feeds');
+var ID = "#feeds";
+function fetchFeeds(id){
+    ID =   id?id:"#feeds";
+    var pnl =$(ID);
     pnl.html(
     '<div><span style="border:1px solid Crimson;padding:5px;"><font color="Crimson"><b>P l e a s e &nbsp;&nbsp;    W a i t  &nbsp;&nbsp;!</b></font></span><br><img src="images/Wedges-9.1s-64px.png"></div>'
     );
@@ -23,7 +24,7 @@ function fetchFeed(feed){
     );
 }
 function displayFeeds(content){
-    var pnl = $('#feeds');
+    var pnl = $(ID);
     pnl.html(content);
     pnl.show();
     $(document).scrollTop( $("#rss_anchor").offset().top );
diff --git a/htdocs/cgi-bin/wsrc/feeds_viral_now.css b/htdocs/cgi-bin/wsrc/feeds_viral_now.css
new file mode 100644 (file)
index 0000000..9c064f4
--- /dev/null
@@ -0,0 +1,13371 @@
+/*!
+ * Bootstrap v3.3.5 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*!
+ * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=f6e691ee98704224b321ad5dcb5dac35)
+ * Config saved to config.json and https://gist.github.com/f6e691ee98704224b321ad5dcb5dac35
+ */
+/*!
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+body,figure {
+    margin: 0
+}
+
+.flownews-element-posts a,pre {
+    word-wrap: break-word
+}
+
+
+
+img {
+    border: 0;
+    vertical-align: middle
+}
+
+
+
+.lead {
+    margin-bottom: 20px;
+    font-size: 16px;
+    font-weight: 300;
+    line-height: 1.4
+}
+
+dt,kbd kbd,label {
+    font-weight: 700
+}
+
+address,blockquote .small,blockquote footer,blockquote small,dd,dt,pre {
+    line-height: 1.42857143
+}
+
+@media (min-width: 768px) {
+    .lead {
+        font-size:21px
+    }
+}
+
+.small,small {
+    font-size: 85%
+}
+
+.mark,mark {
+    background-color: #fcf8e3;
+    padding: .2em
+}
+
+.list-inline,.list-unstyled {
+    padding-left: 0;
+    list-style: none
+}
+
+.text-left {
+    text-align: left
+}
+
+.text-right {
+    text-align: right
+}
+
+.text-center {
+    text-align: center
+}
+
+.text-justify {
+    text-align: justify
+}
+
+.text-nowrap {
+    white-space: nowrap
+}
+
+.text-lowercase {
+    text-transform: lowercase
+}
+
+.text-uppercase {
+    text-transform: uppercase
+}
+
+.text-capitalize {
+    text-transform: capitalize
+}
+
+.text-muted {
+    color: #777
+}
+
+.text-primary {
+    color: #337ab7
+}
+
+a.text-primary:focus,a.text-primary:hover {
+    color: #286090
+}
+
+.text-success {
+    color: #3c763d
+}
+
+a.text-success:focus,a.text-success:hover {
+    color: #2b542c
+}
+
+.text-info {
+    color: #31708f
+}
+
+a.text-info:focus,a.text-info:hover {
+    color: #245269
+}
+
+.text-warning {
+    color: #8a6d3b
+}
+
+a.text-warning:focus,a.text-warning:hover {
+    color: #66512c
+}
+
+.text-danger {
+    color: #a94442
+}
+
+a.text-danger:focus,a.text-danger:hover {
+    color: #843534
+}
+
+.bg-primary {
+    color: #fff;
+    background-color: #337ab7
+}
+
+a.bg-primary:focus,a.bg-primary:hover {
+    background-color: #286090
+}
+
+.bg-success {
+    background-color: #dff0d8
+}
+
+a.bg-success:focus,a.bg-success:hover {
+    background-color: #c1e2b3
+}
+
+.bg-info {
+    background-color: #d9edf7
+}
+
+a.bg-info:focus,a.bg-info:hover {
+    background-color: #afd9ee
+}
+
+.bg-warning {
+    background-color: #fcf8e3
+}
+
+a.bg-warning:focus,a.bg-warning:hover {
+    background-color: #f7ecb5
+}
+
+.bg-danger {
+    background-color: #f2dede
+}
+
+a.bg-danger:focus,a.bg-danger:hover {
+    background-color: #e4b9b9
+}
+
+pre code,table {
+    background-color: transparent
+}
+
+.page-header {
+    padding-bottom: 9px;
+    margin: 40px 0 20px;
+    border-bottom: 1px solid #eee
+}
+
+dl,ol,ul {
+    margin-top: 0
+}
+
+blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul {
+    margin-bottom: 0
+}
+
+address,dl {
+    margin-bottom: 20px
+}
+
+ol,ul {
+    margin-bottom: 10px
+}
+
+.list-inline {
+    margin-left: -5px
+}
+
+.list-inline>li {
+    display: inline-block;
+    padding-left: 5px;
+    padding-right: 5px
+}
+
+legend,pre {
+    display: block
+}
+
+dd {
+    margin-left: 0
+}
+
+@media (min-width: 768px) {
+    .dl-horizontal dt {
+        float:left;
+        width: 160px;
+        clear: left;
+        text-align: right;
+        overflow: hidden;
+        text-overflow: ellipsis;
+        white-space: nowrap
+    }
+
+    .dl-horizontal dd {
+        margin-left: 180px
+    }
+
+    .container {
+        width: 750px
+    }
+}
+
+.clear,.clearfix,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.flownews-clear,.form-horizontal .form-group:after,.row:after {
+    clear: both
+}
+
+abbr[data-original-title],abbr[title] {
+    cursor: help;
+    border-bottom: 1px dotted #777
+}
+
+.initialism {
+    font-size: 90%;
+    text-transform: uppercase
+}
+
+blockquote {
+    padding: 10px 20px;
+    margin: 0 0 20px;
+    font-size: 17.5px;
+    border-left: 5px solid #eee
+}
+
+blockquote .small,blockquote footer,blockquote small {
+    display: block;
+    font-size: 80%;
+    color: #777
+}
+
+blockquote .small:before,blockquote footer:before,blockquote small:before {
+    content: '\2014 \00A0'
+}
+
+#preloader:after,.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before {
+    content: ''
+}
+
+.blockquote-reverse,blockquote.pull-right {
+    padding-right: 15px;
+    padding-left: 0;
+    border-right: 5px solid #eee;
+    border-left: 0;
+    text-align: right
+}
+
+code,kbd {
+    padding: 2px 4px;
+    font-size: 90%
+}
+
+caption,th {
+    text-align: left
+}
+
+.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after {
+    content: '\00A0 \2014'
+}
+
+address {
+    font-style: normal
+}
+
+code,kbd,pre,samp {
+    font-family: Menlo,Monaco,Consolas,"Courier New",monospace
+}
+
+code {
+    border-radius: 4px
+}
+
+kbd {
+    color: #fff;
+    border-radius: 3px;
+    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
+    box-shadow: inset 0 -1px 0 rgba(0,0,0,.25)
+}
+
+kbd kbd {
+    padding: 0;
+    font-size: 100%;
+    -webkit-box-shadow: none;
+    box-shadow: none
+}
+
+pre {
+    padding: 9.5px;
+    margin: 0 0 10px;
+    font-size: 13px;
+    word-break: break-all
+}
+
+.container,.container-fluid {
+    margin-right: auto;
+    margin-left: auto
+}
+
+pre code {
+    padding: 0;
+    font-size: inherit;
+    color: inherit;
+    white-space: pre-wrap;
+    border-radius: 0
+}
+
+.container,.container-fluid {
+    padding-left: 15px;
+    padding-right: 15px
+}
+
+.pre-scrollable {
+    max-height: 340px;
+    overflow-y: scroll
+}
+
+@media (min-width: 992px) {
+    .container {
+        width:970px
+    }
+}
+
+@media (min-width: 1200px) {
+    .container {
+        width:1170px
+    }
+}
+
+.row {
+    margin-left: -15px;
+    margin-right: -15px
+}
+
+.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9 {
+    position: relative;
+    min-height: 1px;
+    padding-left: 15px;
+    padding-right: 15px
+}
+
+.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9 {
+    float: left
+}
+
+.col-xs-12 {
+    width: 100%
+}
+
+.col-xs-11 {
+    width: 91.66666667%
+}
+
+.col-xs-10 {
+    width: 83.33333333%
+}
+
+.col-xs-9 {
+    width: 75%
+}
+
+.col-xs-8 {
+    width: 66.66666667%
+}
+
+.col-xs-7 {
+    width: 58.33333333%
+}
+
+.col-xs-6 {
+    width: 50%
+}
+
+.col-xs-5 {
+    width: 41.66666667%
+}
+
+.col-xs-4 {
+    width: 33.33333333%
+}
+
+.col-xs-3 {
+    width: 25%
+}
+
+.col-xs-2 {
+    width: 16.66666667%
+}
+
+.col-xs-1 {
+    width: 8.33333333%
+}
+
+.col-xs-pull-12 {
+    right: 100%
+}
+
+.col-xs-pull-11 {
+    right: 91.66666667%
+}
+
+.col-xs-pull-10 {
+    right: 83.33333333%
+}
+
+.col-xs-pull-9 {
+    right: 75%
+}
+
+.col-xs-pull-8 {
+    right: 66.66666667%
+}
+
+.col-xs-pull-7 {
+    right: 58.33333333%
+}
+
+.col-xs-pull-6 {
+    right: 50%
+}
+
+.col-xs-pull-5 {
+    right: 41.66666667%
+}
+
+.col-xs-pull-4 {
+    right: 33.33333333%
+}
+
+.col-xs-pull-3 {
+    right: 25%
+}
+
+.col-xs-pull-2 {
+    right: 16.66666667%
+}
+
+.col-xs-pull-1 {
+    right: 8.33333333%
+}
+
+.col-xs-pull-0 {
+    right: auto
+}
+
+.col-xs-push-12 {
+    left: 100%
+}
+
+.col-xs-push-11 {
+    left: 91.66666667%
+}
+
+.col-xs-push-10 {
+    left: 83.33333333%
+}
+
+.col-xs-push-9 {
+    left: 75%
+}
+
+.col-xs-push-8 {
+    left: 66.66666667%
+}
+
+.col-xs-push-7 {
+    left: 58.33333333%
+}
+
+.col-xs-push-6 {
+    left: 50%
+}
+
+.col-xs-push-5 {
+    left: 41.66666667%
+}
+
+.col-xs-push-4 {
+    left: 33.33333333%
+}
+
+.col-xs-push-3 {
+    left: 25%
+}
+
+.col-xs-push-2 {
+    left: 16.66666667%
+}
+
+.col-xs-push-1 {
+    left: 8.33333333%
+}
+
+.col-xs-push-0 {
+    left: auto
+}
+
+.col-xs-offset-12 {
+    margin-left: 100%
+}
+
+.col-xs-offset-11 {
+    margin-left: 91.66666667%
+}
+
+.col-xs-offset-10 {
+    margin-left: 83.33333333%
+}
+
+.col-xs-offset-9 {
+    margin-left: 75%
+}
+
+.col-xs-offset-8 {
+    margin-left: 66.66666667%
+}
+
+.col-xs-offset-7 {
+    margin-left: 58.33333333%
+}
+
+.col-xs-offset-6 {
+    margin-left: 50%
+}
+
+.col-xs-offset-5 {
+    margin-left: 41.66666667%
+}
+
+.col-xs-offset-4 {
+    margin-left: 33.33333333%
+}
+
+.col-xs-offset-3 {
+    margin-left: 25%
+}
+
+.col-xs-offset-2 {
+    margin-left: 16.66666667%
+}
+
+.col-xs-offset-1 {
+    margin-left: 8.33333333%
+}
+
+.col-xs-offset-0 {
+    margin-left: 0
+}
+
+@media (min-width: 768px) {
+    .col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9 {
+        float:left
+    }
+
+    .col-sm-12 {
+        width: 100%
+    }
+
+    .col-sm-11 {
+        width: 91.66666667%
+    }
+
+    .col-sm-10 {
+        width: 83.33333333%
+    }
+
+    .col-sm-9 {
+        width: 75%
+    }
+
+    .col-sm-8 {
+        width: 66.66666667%
+    }
+
+    .col-sm-7 {
+        width: 58.33333333%
+    }
+
+    .col-sm-6 {
+        width: 50%
+    }
+
+    .col-sm-5 {
+        width: 41.66666667%
+    }
+
+    .col-sm-4 {
+        width: 33.33333333%
+    }
+
+    .col-sm-3 {
+        width: 25%
+    }
+
+    .col-sm-2 {
+        width: 16.66666667%
+    }
+
+    .col-sm-1 {
+        width: 8.33333333%
+    }
+
+    .col-sm-pull-12 {
+        right: 100%
+    }
+
+    .col-sm-pull-11 {
+        right: 91.66666667%
+    }
+
+    .col-sm-pull-10 {
+        right: 83.33333333%
+    }
+
+    .col-sm-pull-9 {
+        right: 75%
+    }
+
+    .col-sm-pull-8 {
+        right: 66.66666667%
+    }
+
+    .col-sm-pull-7 {
+        right: 58.33333333%
+    }
+
+    .col-sm-pull-6 {
+        right: 50%
+    }
+
+    .col-sm-pull-5 {
+        right: 41.66666667%
+    }
+
+    .col-sm-pull-4 {
+        right: 33.33333333%
+    }
+
+    .col-sm-pull-3 {
+        right: 25%
+    }
+
+    .col-sm-pull-2 {
+        right: 16.66666667%
+    }
+
+    .col-sm-pull-1 {
+        right: 8.33333333%
+    }
+
+    .col-sm-pull-0 {
+        right: auto
+    }
+
+    .col-sm-push-12 {
+        left: 100%
+    }
+
+    .col-sm-push-11 {
+        left: 91.66666667%
+    }
+
+    .col-sm-push-10 {
+        left: 83.33333333%
+    }
+
+    .col-sm-push-9 {
+        left: 75%
+    }
+
+    .col-sm-push-8 {
+        left: 66.66666667%
+    }
+
+    .col-sm-push-7 {
+        left: 58.33333333%
+    }
+
+    .col-sm-push-6 {
+        left: 50%
+    }
+
+    .col-sm-push-5 {
+        left: 41.66666667%
+    }
+
+    .col-sm-push-4 {
+        left: 33.33333333%
+    }
+
+    .col-sm-push-3 {
+        left: 25%
+    }
+
+    .col-sm-push-2 {
+        left: 16.66666667%
+    }
+
+    .col-sm-push-1 {
+        left: 8.33333333%
+    }
+
+    .col-sm-push-0 {
+        left: auto
+    }
+
+    .col-sm-offset-12 {
+        margin-left: 100%
+    }
+
+    .col-sm-offset-11 {
+        margin-left: 91.66666667%
+    }
+
+    .col-sm-offset-10 {
+        margin-left: 83.33333333%
+    }
+
+    .col-sm-offset-9 {
+        margin-left: 75%
+    }
+
+    .col-sm-offset-8 {
+        margin-left: 66.66666667%
+    }
+
+    .col-sm-offset-7 {
+        margin-left: 58.33333333%
+    }
+
+    .col-sm-offset-6 {
+        margin-left: 50%
+    }
+
+    .col-sm-offset-5 {
+        margin-left: 41.66666667%
+    }
+
+    .col-sm-offset-4 {
+        margin-left: 33.33333333%
+    }
+
+    .col-sm-offset-3 {
+        margin-left: 25%
+    }
+
+    .col-sm-offset-2 {
+        margin-left: 16.66666667%
+    }
+
+    .col-sm-offset-1 {
+        margin-left: 8.33333333%
+    }
+
+    .col-sm-offset-0 {
+        margin-left: 0
+    }
+}
+
+@media (min-width: 992px) {
+    .col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9 {
+        float:left
+    }
+
+    .col-md-12 {
+        width: 100%
+    }
+
+    .col-md-11 {
+        width: 91.66666667%
+    }
+
+    .col-md-10 {
+        width: 83.33333333%
+    }
+
+    .col-md-9 {
+        width: 75%
+    }
+
+    .col-md-8 {
+        width: 66.66666667%
+    }
+
+    .col-md-7 {
+        width: 58.33333333%
+    }
+
+    .col-md-6 {
+        width: 50%
+    }
+
+    .col-md-5 {
+        width: 41.66666667%
+    }
+
+    .col-md-4 {
+        width: 33.33333333%
+    }
+
+    .col-md-3 {
+        width: 25%
+    }
+
+    .col-md-2 {
+        width: 16.66666667%
+    }
+
+    .col-md-1 {
+        width: 8.33333333%
+    }
+
+    .col-md-pull-12 {
+        right: 100%
+    }
+
+    .col-md-pull-11 {
+        right: 91.66666667%
+    }
+
+    .col-md-pull-10 {
+        right: 83.33333333%
+    }
+
+    .col-md-pull-9 {
+        right: 75%
+    }
+
+    .col-md-pull-8 {
+        right: 66.66666667%
+    }
+
+    .col-md-pull-7 {
+        right: 58.33333333%
+    }
+
+    .col-md-pull-6 {
+        right: 50%
+    }
+
+    .col-md-pull-5 {
+        right: 41.66666667%
+    }
+
+    .col-md-pull-4 {
+        right: 33.33333333%
+    }
+
+    .col-md-pull-3 {
+        right: 25%
+    }
+
+    .col-md-pull-2 {
+        right: 16.66666667%
+    }
+
+    .col-md-pull-1 {
+        right: 8.33333333%
+    }
+
+    .col-md-pull-0 {
+        right: auto
+    }
+
+    .col-md-push-12 {
+        left: 100%
+    }
+
+    .col-md-push-11 {
+        left: 91.66666667%
+    }
+
+    .col-md-push-10 {
+        left: 83.33333333%
+    }
+
+    .col-md-push-9 {
+        left: 75%
+    }
+
+    .col-md-push-8 {
+        left: 66.66666667%
+    }
+
+    .col-md-push-7 {
+        left: 58.33333333%
+    }
+
+    .col-md-push-6 {
+        left: 50%
+    }
+
+    .col-md-push-5 {
+        left: 41.66666667%
+    }
+
+    .col-md-push-4 {
+        left: 33.33333333%
+    }
+
+    .col-md-push-3 {
+        left: 25%
+    }
+
+    .col-md-push-2 {
+        left: 16.66666667%
+    }
+
+    .col-md-push-1 {
+        left: 8.33333333%
+    }
+
+    .col-md-push-0 {
+        left: auto
+    }
+
+    .col-md-offset-12 {
+        margin-left: 100%
+    }
+
+    .col-md-offset-11 {
+        margin-left: 91.66666667%
+    }
+
+    .col-md-offset-10 {
+        margin-left: 83.33333333%
+    }
+
+    .col-md-offset-9 {
+        margin-left: 75%
+    }
+
+    .col-md-offset-8 {
+        margin-left: 66.66666667%
+    }
+
+    .col-md-offset-7 {
+        margin-left: 58.33333333%
+    }
+
+    .col-md-offset-6 {
+        margin-left: 50%
+    }
+
+    .col-md-offset-5 {
+        margin-left: 41.66666667%
+    }
+
+    .col-md-offset-4 {
+        margin-left: 33.33333333%
+    }
+
+    .col-md-offset-3 {
+        margin-left: 25%
+    }
+
+    .col-md-offset-2 {
+        margin-left: 16.66666667%
+    }
+
+    .col-md-offset-1 {
+        margin-left: 8.33333333%
+    }
+
+    .col-md-offset-0 {
+        margin-left: 0
+    }
+}
+
+@media (min-width: 1200px) {
+    .col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9 {
+        float:left
+    }
+
+    .col-lg-12 {
+        width: 100%
+    }
+
+    .col-lg-11 {
+        width: 91.66666667%
+    }
+
+    .col-lg-10 {
+        width: 83.33333333%
+    }
+
+    .col-lg-9 {
+        width: 75%
+    }
+
+    .col-lg-8 {
+        width: 66.66666667%
+    }
+
+    .col-lg-7 {
+        width: 58.33333333%
+    }
+
+    .col-lg-6 {
+        width: 50%
+    }
+
+    .col-lg-5 {
+        width: 41.66666667%
+    }
+
+    .col-lg-4 {
+        width: 33.33333333%
+    }
+
+    .col-lg-3 {
+        width: 25%
+    }
+
+    .col-lg-2 {
+        width: 16.66666667%
+    }
+
+    .col-lg-1 {
+        width: 8.33333333%
+    }
+
+    .col-lg-pull-12 {
+        right: 100%
+    }
+
+    .col-lg-pull-11 {
+        right: 91.66666667%
+    }
+
+    .col-lg-pull-10 {
+        right: 83.33333333%
+    }
+
+    .col-lg-pull-9 {
+        right: 75%
+    }
+
+    .col-lg-pull-8 {
+        right: 66.66666667%
+    }
+
+    .col-lg-pull-7 {
+        right: 58.33333333%
+    }
+
+    .col-lg-pull-6 {
+        right: 50%
+    }
+
+    .col-lg-pull-5 {
+        right: 41.66666667%
+    }
+
+    .col-lg-pull-4 {
+        right: 33.33333333%
+    }
+
+    .col-lg-pull-3 {
+        right: 25%
+    }
+
+    .col-lg-pull-2 {
+        right: 16.66666667%
+    }
+
+    .col-lg-pull-1 {
+        right: 8.33333333%
+    }
+
+    .col-lg-pull-0 {
+        right: auto
+    }
+
+    .col-lg-push-12 {
+        left: 100%
+    }
+
+    .col-lg-push-11 {
+        left: 91.66666667%
+    }
+
+    .col-lg-push-10 {
+        left: 83.33333333%
+    }
+
+    .col-lg-push-9 {
+        left: 75%
+    }
+
+    .col-lg-push-8 {
+        left: 66.66666667%
+    }
+
+    .col-lg-push-7 {
+        left: 58.33333333%
+    }
+
+    .col-lg-push-6 {
+        left: 50%
+    }
+
+    .col-lg-push-5 {
+        left: 41.66666667%
+    }
+
+    .col-lg-push-4 {
+        left: 33.33333333%
+    }
+
+    .col-lg-push-3 {
+        left: 25%
+    }
+
+    .col-lg-push-2 {
+        left: 16.66666667%
+    }
+
+    .col-lg-push-1 {
+        left: 8.33333333%
+    }
+
+    .col-lg-push-0 {
+        left: auto
+    }
+
+    .col-lg-offset-12 {
+        margin-left: 100%
+    }
+
+    .col-lg-offset-11 {
+        margin-left: 91.66666667%
+    }
+
+    .col-lg-offset-10 {
+        margin-left: 83.33333333%
+    }
+
+    .col-lg-offset-9 {
+        margin-left: 75%
+    }
+
+    .col-lg-offset-8 {
+        margin-left: 66.66666667%
+    }
+
+    .col-lg-offset-7 {
+        margin-left: 58.33333333%
+    }
+
+    .col-lg-offset-6 {
+        margin-left: 50%
+    }
+
+    .col-lg-offset-5 {
+        margin-left: 41.66666667%
+    }
+
+    .col-lg-offset-4 {
+        margin-left: 33.33333333%
+    }
+
+    .col-lg-offset-3 {
+        margin-left: 25%
+    }
+
+    .col-lg-offset-2 {
+        margin-left: 16.66666667%
+    }
+
+    .col-lg-offset-1 {
+        margin-left: 8.33333333%
+    }
+
+    .col-lg-offset-0 {
+        margin-left: 0
+    }
+}
+
+caption {
+    padding-top: 8px;
+    padding-bottom: 8px;
+    color: #777
+}
+
+.table {
+    width: 100%;
+    margin-bottom: 20px
+}
+
+.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th {
+    padding: 8px;
+    line-height: 1.42857143;
+    vertical-align: top;
+    border-top: 1px solid #ddd
+}
+
+.table>thead>tr>th {
+    vertical-align: bottom;
+    border-bottom: 2px solid #ddd
+}
+
+.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th {
+    border-top: 0
+}
+
+.table>tbody+tbody {
+    border-top: 2px solid #ddd
+}
+
+.table .table {
+    background-color: #fff
+}
+
+.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th {
+    padding: 5px
+}
+
+.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th {
+    border: 1px solid #ddd
+}
+
+.table-bordered>thead>tr>td,.table-bordered>thead>tr>th {
+    border-bottom-width: 2px
+}
+
+.table-striped>tbody>tr:nth-of-type(odd) {
+    background-color: #f9f9f9
+}
+
+.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active {
+    background-color: #f5f5f5
+}
+
+table col[class*=col-] {
+    position: static;
+    float: none;
+    display: table-column
+}
+
+table td[class*=col-],table th[class*=col-] {
+    position: static;
+    float: none;
+    display: table-cell
+}
+
+.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover {
+    background-color: #e8e8e8
+}
+
+.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success {
+    background-color: #dff0d8
+}
+
+.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover {
+    background-color: #d0e9c6
+}
+
+.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info {
+    background-color: #d9edf7
+}
+
+.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover {
+    background-color: #c4e3f3
+}
+
+.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning {
+    background-color: #fcf8e3
+}
+
+.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover {
+    background-color: #faf2cc
+}
+
+.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger {
+    background-color: #f2dede
+}
+
+.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover {
+    background-color: #ebcccc
+}
+
+.table-responsive {
+    overflow-x: auto;
+    min-height: .01%
+}
+
+@media screen and (max-width: 767px) {
+    .table-responsive {
+        width:100%;
+        margin-bottom: 15px;
+        overflow-y: hidden;
+        -ms-overflow-style: -ms-autohiding-scrollbar;
+        border: 1px solid #ddd
+    }
+
+    .table-responsive>.table {
+        margin-bottom: 0
+    }
+
+    .table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th {
+        white-space: nowrap
+    }
+
+    .table-responsive>.table-bordered {
+        border: 0
+    }
+
+    .table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child {
+        border-left: 0
+    }
+
+    .table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child {
+        border-right: 0
+    }
+
+    .table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th {
+        border-bottom: 0
+    }
+}
+
+fieldset,legend {
+    padding: 0;
+    border: 0
+}
+
+fieldset {
+    margin: 0;
+    min-width: 0
+}
+
+legend {
+    width: 100%;
+    margin-bottom: 20px;
+    font-size: 21px;
+    line-height: inherit;
+    color: #333;
+    border-bottom: 1px solid #e5e5e5
+}
+
+label {
+    display: inline-block;
+    margin-bottom: 5px
+}
+
+input[type=search] {
+    -webkit-box-sizing: border-box;
+    -moz-box-sizing: border-box;
+    box-sizing: border-box
+}
+
+input[type=checkbox],input[type=radio] {
+    margin: 4px 0 0;
+    margin-top: 1px\9;
+    line-height: normal
+}
+
+.form-control,output {
+    font-size: 14px;
+    line-height: 1.42857143;
+    color: #555;
+    display: block
+}
+
+input[type=file] {
+    display: block
+}
+
+input[type=range] {
+    display: block;
+    width: 100%
+}
+
+select[multiple],select[size] {
+    height: auto
+}
+
+input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus {
+    outline: dotted thin;
+    outline: -webkit-focus-ring-color auto 5px;
+    outline-offset: -2px
+}
+
+output {
+    padding-top: 7px
+}
+
+.form-control {
+    width: 100%;
+    height: 34px;
+    padding: 6px 12px;
+    background-color: #fff;
+    border: 1px solid #ccc;
+    border-radius: 4px;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
+    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
+    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
+    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
+    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s
+}
+
+.form-control:focus {
+    border-color: #66afe9;
+    outline: 0;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
+    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
+}
+
+.form-control::-moz-placeholder {
+    color: #999;
+    opacity: 1
+}
+
+.form-control:-ms-input-placeholder {
+    color: #999
+}
+
+.form-control::-webkit-input-placeholder {
+    color: #999
+}
+
+.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label {
+    color: #3c763d
+}
+
+.form-control::-ms-expand {
+    border: 0;
+    background-color: transparent
+}
+
+.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {
+    background-color: #eee;
+    opacity: 1
+}
+
+.form-control[disabled],fieldset[disabled] .form-control {
+    cursor: not-allowed
+}
+
+textarea.form-control {
+    height: auto
+}
+
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+    input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control {
+        line-height:34px
+    }
+
+    .input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm {
+        line-height: 30px
+    }
+
+    .input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg {
+        line-height: 46px
+    }
+}
+
+.form-group {
+    margin-bottom: 15px
+}
+
+.checkbox,.radio {
+    position: relative;
+    display: block;
+    margin-top: 10px;
+    margin-bottom: 10px
+}
+
+.checkbox label,.radio label {
+    min-height: 20px;
+    padding-left: 20px;
+    margin-bottom: 0;
+    font-weight: 400;
+    cursor: pointer
+}
+
+.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio] {
+    position: absolute;
+    margin-left: -20px;
+    margin-top: 4px\9
+}
+
+.checkbox+.checkbox,.radio+.radio {
+    margin-top: -5px
+}
+
+.checkbox-inline,.radio-inline {
+    position: relative;
+    display: inline-block;
+    padding-left: 20px;
+    margin-bottom: 0;
+    vertical-align: middle;
+    font-weight: 400;
+    cursor: pointer
+}
+
+.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline {
+    margin-top: 0;
+    margin-left: 10px
+}
+
+.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled] {
+    cursor: not-allowed
+}
+
+.form-control-static {
+    padding-top: 7px;
+    padding-bottom: 7px;
+    margin-bottom: 0;
+    min-height: 34px
+}
+
+.form-control-static.input-lg,.form-control-static.input-sm {
+    padding-left: 0;
+    padding-right: 0
+}
+
+.form-group-sm .form-control,.input-sm {
+    padding: 5px 10px;
+    border-radius: 3px;
+    font-size: 12px
+}
+
+.input-sm {
+    height: 30px;
+    line-height: 1.5
+}
+
+select.input-sm {
+    height: 30px;
+    line-height: 30px
+}
+
+select[multiple].input-sm,textarea.input-sm {
+    height: auto
+}
+
+.form-group-sm .form-control {
+    height: 30px;
+    line-height: 1.5
+}
+
+.form-group-lg .form-control,.input-lg {
+    border-radius: 6px;
+    padding: 10px 16px;
+    font-size: 18px
+}
+
+.form-group-sm select.form-control {
+    height: 30px;
+    line-height: 30px
+}
+
+.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control {
+    height: auto
+}
+
+.form-group-sm .form-control-static {
+    height: 30px;
+    min-height: 32px;
+    padding: 6px 10px;
+    font-size: 12px;
+    line-height: 1.5
+}
+
+.input-lg {
+    height: 46px;
+    line-height: 1.3333333
+}
+
+select.input-lg {
+    height: 46px;
+    line-height: 46px
+}
+
+select[multiple].input-lg,textarea.input-lg {
+    height: auto
+}
+
+.form-group-lg .form-control {
+    height: 46px;
+    line-height: 1.3333333
+}
+
+.form-group-lg select.form-control {
+    height: 46px;
+    line-height: 46px
+}
+
+.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control {
+    height: auto
+}
+
+.form-group-lg .form-control-static {
+    height: 46px;
+    min-height: 38px;
+    padding: 11px 16px;
+    font-size: 18px;
+    line-height: 1.3333333
+}
+
+.has-feedback {
+    position: relative
+}
+
+.has-feedback .form-control {
+    padding-right: 42.5px
+}
+
+.form-control-feedback {
+    position: absolute;
+    top: 0;
+    right: 0;
+    z-index: 2;
+    display: block;
+    width: 34px;
+    height: 34px;
+    line-height: 34px;
+    text-align: center;
+    pointer-events: none
+}
+
+.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback {
+    width: 46px;
+    height: 46px;
+    line-height: 46px
+}
+
+.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback {
+    width: 30px;
+    height: 30px;
+    line-height: 30px
+}
+
+.has-success .form-control {
+    border-color: #3c763d;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
+    box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
+}
+
+.has-success .form-control:focus {
+    border-color: #2b542c;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
+    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168
+}
+
+.has-success .input-group-addon {
+    color: #3c763d;
+    border-color: #3c763d;
+    background-color: #dff0d8
+}
+
+.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label {
+    color: #8a6d3b
+}
+
+.has-warning .form-control {
+    border-color: #8a6d3b;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
+    box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
+}
+
+.has-warning .form-control:focus {
+    border-color: #66512c;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
+    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b
+}
+
+.has-warning .input-group-addon {
+    color: #8a6d3b;
+    border-color: #8a6d3b;
+    background-color: #fcf8e3
+}
+
+.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label {
+    color: #a94442
+}
+
+.has-error .form-control {
+    border-color: #a94442;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
+    box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
+}
+
+.has-error .form-control:focus {
+    border-color: #843534;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
+    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483
+}
+
+.has-error .input-group-addon {
+    color: #a94442;
+    border-color: #a94442;
+    background-color: #f2dede
+}
+
+.has-feedback label~.form-control-feedback {
+    top: 25px
+}
+
+.has-feedback label.sr-only~.form-control-feedback {
+    top: 0
+}
+
+.help-block {
+    display: block;
+    margin-top: 5px;
+    margin-bottom: 10px;
+    color: #737373
+}
+
+@media (min-width: 768px) {
+    .form-inline .form-control-static,.form-inline .form-group {
+        display:inline-block
+    }
+
+    .form-inline .control-label,.form-inline .form-group {
+        margin-bottom: 0;
+        vertical-align: middle
+    }
+
+    .form-inline .form-control {
+        display: inline-block;
+        width: auto;
+        vertical-align: middle
+    }
+
+    .form-inline .input-group {
+        display: inline-table;
+        vertical-align: middle
+    }
+
+    .form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn {
+        width: auto
+    }
+
+    .form-inline .input-group>.form-control {
+        width: 100%
+    }
+
+    .form-inline .checkbox,.form-inline .radio {
+        display: inline-block;
+        margin-top: 0;
+        margin-bottom: 0;
+        vertical-align: middle
+    }
+
+    .form-inline .checkbox label,.form-inline .radio label {
+        padding-left: 0
+    }
+
+    .form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio] {
+        position: relative;
+        margin-left: 0
+    }
+
+    .form-inline .has-feedback .form-control-feedback {
+        top: 0
+    }
+
+    .form-horizontal .control-label {
+        text-align: right;
+        margin-bottom: 0;
+        padding-top: 7px
+    }
+}
+
+.btn-block,input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block {
+    width: 100%
+}
+
+.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline {
+    margin-top: 0;
+    margin-bottom: 0;
+    padding-top: 7px
+}
+
+.form-horizontal .checkbox,.form-horizontal .radio {
+    min-height: 27px
+}
+
+.form-horizontal .form-group {
+    margin-left: -15px;
+    margin-right: -15px
+}
+
+#preloader-container .spinner-dots,.aligncenter,.alignright,.btn,.fa-fw,.fa-li,.fa-stack-1x,.fa-stack-2x {
+    text-align: center
+}
+
+.form-horizontal .has-feedback .form-control-feedback {
+    right: 15px
+}
+
+@media (min-width: 768px) {
+    .form-horizontal .form-group-lg .control-label {
+        padding-top:11px;
+        font-size: 18px
+    }
+
+    .form-horizontal .form-group-sm .control-label {
+        padding-top: 6px;
+        font-size: 12px
+    }
+}
+
+.btn {
+    display: inline-block;
+    margin-bottom: 0;
+    font-weight: 400;
+    vertical-align: middle;
+    -ms-touch-action: manipulation;
+    touch-action: manipulation;
+    cursor: pointer;
+    border: 1px solid transparent;
+    white-space: nowrap;
+    padding: 6px 12px;
+    font-size: 14px;
+    line-height: 1.42857143;
+    border-radius: 4px;
+    -webkit-user-select: none;
+    -moz-user-select: none;
+    -ms-user-select: none;
+    user-select: none
+}
+
+.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus {
+    outline: dotted thin;
+    outline: -webkit-focus-ring-color auto 5px;
+    outline-offset: -2px
+}
+
+.btn.focus,.btn:focus,.btn:hover {
+    color: #333;
+    text-decoration: none
+}
+
+.btn.active,.btn:active {
+    outline: 0;
+    background-image: none;
+    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
+    box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
+}
+
+.btn.disabled,.btn[disabled],fieldset[disabled] .btn {
+    cursor: not-allowed;
+    opacity: .65;
+    filter: alpha(opacity=65);
+    -webkit-box-shadow: none;
+    box-shadow: none
+}
+
+a.btn.disabled,fieldset[disabled] a.btn {
+    pointer-events: none
+}
+
+.btn-default {
+    color: #333;
+    background-color: #fff;
+    border-color: #ccc
+}
+
+.btn-default.focus,.btn-default:focus {
+    color: #333;
+    background-color: #e6e6e6;
+    border-color: #8c8c8c
+}
+
+.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default {
+    color: #333;
+    background-color: #e6e6e6;
+    border-color: #adadad
+}
+
+.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover {
+    color: #333;
+    background-color: #d4d4d4;
+    border-color: #8c8c8c
+}
+
+.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover {
+    background-color: #fff;
+    border-color: #ccc
+}
+
+.btn-default .badge {
+    color: #fff;
+    background-color: #333
+}
+
+.btn-primary {
+    color: #fff;
+    background-color: #337ab7;
+    border-color: #2e6da4
+}
+
+.btn-primary.focus,.btn-primary:focus {
+    color: #fff;
+    background-color: #286090;
+    border-color: #122b40
+}
+
+.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary {
+    color: #fff;
+    background-color: #286090;
+    border-color: #204d74
+}
+
+.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover {
+    color: #fff;
+    background-color: #204d74;
+    border-color: #122b40
+}
+
+.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover {
+    background-color: #337ab7;
+    border-color: #2e6da4
+}
+
+.btn-primary .badge {
+    color: #337ab7;
+    background-color: #fff
+}
+
+.btn-success {
+    color: #fff;
+    background-color: #5cb85c;
+    border-color: #4cae4c
+}
+
+.btn-success.focus,.btn-success:focus {
+    color: #fff;
+    background-color: #449d44;
+    border-color: #255625
+}
+
+.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success {
+    color: #fff;
+    background-color: #449d44;
+    border-color: #398439
+}
+
+.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover {
+    color: #fff;
+    background-color: #398439;
+    border-color: #255625
+}
+
+.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover {
+    background-color: #5cb85c;
+    border-color: #4cae4c
+}
+
+.btn-success .badge {
+    color: #5cb85c;
+    background-color: #fff
+}
+
+.btn-info {
+    color: #fff;
+    background-color: #5bc0de;
+    border-color: #46b8da
+}
+
+.btn-info.focus,.btn-info:focus {
+    color: #fff;
+    background-color: #31b0d5;
+    border-color: #1b6d85
+}
+
+.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info {
+    color: #fff;
+    background-color: #31b0d5;
+    border-color: #269abc
+}
+
+.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover {
+    color: #fff;
+    background-color: #269abc;
+    border-color: #1b6d85
+}
+
+.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover {
+    background-color: #5bc0de;
+    border-color: #46b8da
+}
+
+.btn-info .badge {
+    color: #5bc0de;
+    background-color: #fff
+}
+
+.btn-warning {
+    color: #fff;
+    background-color: #f0ad4e;
+    border-color: #eea236
+}
+
+.btn-warning.focus,.btn-warning:focus {
+    color: #fff;
+    background-color: #ec971f;
+    border-color: #985f0d
+}
+
+.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning {
+    color: #fff;
+    background-color: #ec971f;
+    border-color: #d58512
+}
+
+.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover {
+    color: #fff;
+    background-color: #d58512;
+    border-color: #985f0d
+}
+
+.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover {
+    background-color: #f0ad4e;
+    border-color: #eea236
+}
+
+.btn-warning .badge {
+    color: #f0ad4e;
+    background-color: #fff
+}
+
+.btn-danger {
+    color: #fff;
+    background-color: #d9534f;
+    border-color: #d43f3a
+}
+
+.btn-danger.focus,.btn-danger:focus {
+    color: #fff;
+    background-color: #c9302c;
+    border-color: #761c19
+}
+
+.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger {
+    color: #fff;
+    background-color: #c9302c;
+    border-color: #ac2925
+}
+
+.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover {
+    color: #fff;
+    background-color: #ac2925;
+    border-color: #761c19
+}
+
+.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover {
+    background-color: #d9534f;
+    border-color: #d43f3a
+}
+
+.btn-danger .badge {
+    color: #d9534f;
+    background-color: #fff
+}
+
+.btn-link {
+    color: #337ab7;
+    font-weight: 400;
+    border-radius: 0
+}
+
+.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link {
+    background-color: transparent;
+    -webkit-box-shadow: none;
+    box-shadow: none
+}
+
+.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover {
+    border-color: transparent
+}
+
+.btn-link:focus,.btn-link:hover {
+    color: #23527c;
+    text-decoration: underline;
+    background-color: transparent
+}
+
+.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover {
+    color: #777;
+    text-decoration: none
+}
+
+.btn-lg {
+    padding: 10px 16px;
+    font-size: 18px;
+    line-height: 1.3333333;
+    border-radius: 6px
+}
+
+.btn-sm,.btn-xs {
+    font-size: 12px;
+    line-height: 1.5;
+    border-radius: 3px
+}
+
+.btn-sm {
+    padding: 5px 10px
+}
+
+.btn-xs {
+    padding: 1px 5px
+}
+
+.btn-block {
+    display: block
+}
+
+.btn-block+.btn-block {
+    margin-top: 5px
+}
+
+.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.row:after,.row:before {
+    content: " ";
+    display: table
+}
+
+.center-block {
+    display: block;
+    margin-left: auto;
+    margin-right: auto
+}
+
+.fa.fa-pull-left,.fa.pull-left {
+    margin-right: .3em
+}
+
+.pull-right {
+    float: right!important
+}
+
+.pull-left {
+    float: left!important
+}
+
+.hide {
+    display: none!important
+}
+
+.show {
+    display: block!important
+}
+
+.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block {
+    display: none!important
+}
+
+.invisible {
+    visibility: hidden
+}
+
+.text-hide {
+    font: 0/0 a;
+    color: transparent;
+    text-shadow: none;
+    background-color: transparent;
+    border: 0
+}
+
+.affix {
+    position: fixed
+}
+
+@-ms-viewport {
+    width: device-width
+}
+
+@media (max-width: 767px) {
+    .visible-xs {
+        display:block!important
+    }
+
+    table.visible-xs {
+        display: table!important
+    }
+
+    tr.visible-xs {
+        display: table-row!important
+    }
+
+    td.visible-xs,th.visible-xs {
+        display: table-cell!important
+    }
+
+    .visible-xs-block {
+        display: block!important
+    }
+
+    .visible-xs-inline {
+        display: inline!important
+    }
+
+    .visible-xs-inline-block {
+        display: inline-block!important
+    }
+}
+
+@media (min-width: 768px) and (max-width:991px) {
+    .visible-sm {
+        display:block!important
+    }
+
+    table.visible-sm {
+        display: table!important
+    }
+
+    tr.visible-sm {
+        display: table-row!important
+    }
+
+    td.visible-sm,th.visible-sm {
+        display: table-cell!important
+    }
+
+    .visible-sm-block {
+        display: block!important
+    }
+
+    .visible-sm-inline {
+        display: inline!important
+    }
+
+    .visible-sm-inline-block {
+        display: inline-block!important
+    }
+}
+
+@media (min-width: 992px) and (max-width:1199px) {
+    .visible-md {
+        display:block!important
+    }
+
+    table.visible-md {
+        display: table!important
+    }
+
+    tr.visible-md {
+        display: table-row!important
+    }
+
+    td.visible-md,th.visible-md {
+        display: table-cell!important
+    }
+
+    .visible-md-block {
+        display: block!important
+    }
+
+    .visible-md-inline {
+        display: inline!important
+    }
+
+    .visible-md-inline-block {
+        display: inline-block!important
+    }
+}
+
+@media (min-width: 1200px) {
+    .visible-lg {
+        display:block!important
+    }
+
+    table.visible-lg {
+        display: table!important
+    }
+
+    tr.visible-lg {
+        display: table-row!important
+    }
+
+    td.visible-lg,th.visible-lg {
+        display: table-cell!important
+    }
+
+    .visible-lg-block {
+        display: block!important
+    }
+
+    .visible-lg-inline {
+        display: inline!important
+    }
+
+    .visible-lg-inline-block {
+        display: inline-block!important
+    }
+
+    .hidden-lg {
+        display: none!important
+    }
+}
+
+@media (max-width: 767px) {
+    .hidden-xs {
+        display:none!important
+    }
+}
+
+@media (min-width: 768px) and (max-width:991px) {
+    .hidden-sm {
+        display:none!important
+    }
+}
+
+@media (min-width: 992px) and (max-width:1199px) {
+    .hidden-md {
+        display:none!important
+    }
+}
+
+.visible-print {
+    display: none!important
+}
+
+@media print {
+    .visible-print {
+        display: block!important
+    }
+
+    table.visible-print {
+        display: table!important
+    }
+
+    tr.visible-print {
+        display: table-row!important
+    }
+
+    td.visible-print,th.visible-print {
+        display: table-cell!important
+    }
+}
+
+.visible-print-block {
+    display: none!important
+}
+
+@media print {
+    .visible-print-block {
+        display: block!important
+    }
+}
+
+.visible-print-inline {
+    display: none!important
+}
+
+@media print {
+    .visible-print-inline {
+        display: inline!important
+    }
+}
+
+.visible-print-inline-block {
+    display: none!important
+}
+
+@media print {
+    .visible-print-inline-block {
+        display: inline-block!important
+    }
+
+    .hidden-print {
+        display: none!important
+    }
+}
+
+.element-no-padding [class*=col-] {
+    padding-left: 0!important;
+    padding-right: 0!important
+}
+
+/*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */
+@font-face {
+    font-family: flownews-FontAwesome;
+    src: url(fonts/fontawesome-webfont.eot?v=4.7.0);
+    src: url(fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');
+    font-weight: 400;
+    font-style: normal
+}
+
+.flownewsicon {
+    display: inline-block;
+    font: normal normal normal 14px/1 flownews-FontAwesome;
+    font-size: inherit;
+    text-rendering: auto;
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: grayscale
+}
+
+.flownews-menu>li.menu-item-has-children>a:after,.submenu>li.menu-item-has-children>a:after,.widget ul>li.menu-item-has-children>a:after {
+    font-family: flownews-FontAwesome!important;
+    speak: none;
+    font-variant: normal;
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: grayscale
+}
+
+.fa-lg {
+    font-size: 1.33333333em;
+    line-height: .75em;
+    vertical-align: -15%
+}
+
+.fa-2x {
+    font-size: 2em
+}
+
+.fa-3x {
+    font-size: 3em
+}
+
+.fa-4x {
+    font-size: 4em
+}
+
+.fa-5x {
+    font-size: 5em
+}
+
+.fa-fw {
+    width: 1.28571429em
+}
+
+.fa-ul {
+    padding-left: 0;
+    margin-left: 2.14285714em;
+    list-style-type: none
+}
+
+.fa.fa-pull-right,.fa.pull-right {
+    margin-left: .3em
+}
+
+.fa-ul>li {
+    position: relative
+}
+
+.fa-li {
+    position: absolute;
+    left: -2.14285714em;
+    width: 2.14285714em;
+    top: .14285714em
+}
+
+.fa-li.fa-lg {
+    left: -1.85714286em
+}
+
+.fa-border {
+    padding: .2em .25em .15em;
+    border: .08em solid #eee;
+    border-radius: .1em
+}
+
+.fa-pull-left {
+    float: left
+}
+
+.fa-pull-right {
+    float: right
+}
+
+.fa-spin {
+    -webkit-animation: fa-spin 2s infinite linear;
+    animation: fa-spin 2s infinite linear
+}
+
+.fa-pulse {
+    -webkit-animation: fa-spin 1s infinite steps(8);
+    animation: fa-spin 1s infinite steps(8)
+}
+
+@-webkit-keyframes fa-spin {
+    0% {
+        -webkit-transform: rotate(0);
+        transform: rotate(0)
+    }
+
+    100% {
+        -webkit-transform: rotate(359deg);
+        transform: rotate(359deg)
+    }
+}
+
+@keyframes fa-spin {
+    0% {
+        -webkit-transform: rotate(0);
+        transform: rotate(0)
+    }
+
+    100% {
+        -webkit-transform: rotate(359deg);
+        transform: rotate(359deg)
+    }
+}
+
+.fa-rotate-90 {
+    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+    -webkit-transform: rotate(90deg);
+    -ms-transform: rotate(90deg);
+    transform: rotate(90deg)
+}
+
+.fa-rotate-180 {
+    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+    -webkit-transform: rotate(180deg);
+    -ms-transform: rotate(180deg);
+    transform: rotate(180deg)
+}
+
+.fa-rotate-270 {
+    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+    -webkit-transform: rotate(270deg);
+    -ms-transform: rotate(270deg);
+    transform: rotate(270deg)
+}
+
+.fa-flip-horizontal {
+    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+    -webkit-transform: scale(-1,1);
+    -ms-transform: scale(-1,1);
+    transform: scale(-1,1)
+}
+
+.fa-flip-vertical {
+    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+    -webkit-transform: scale(1,-1);
+    -ms-transform: scale(1,-1);
+    transform: scale(1,-1)
+}
+
+:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90 {
+    filter: none
+}
+
+.fa-stack {
+    position: relative;
+    display: inline-block;
+    width: 2em;
+    height: 2em;
+    line-height: 2em;
+    vertical-align: middle
+}
+
+.fa-stack-1x,.fa-stack-2x {
+    position: absolute;
+    left: 0;
+    width: 100%
+}
+
+.fa-stack-1x {
+    line-height: inherit
+}
+
+.fa-stack-2x {
+    font-size: 2em
+}
+
+.fa-inverse {
+    color: #fff
+}
+
+.fa-glass:before {
+    content: "\f000"
+}
+
+.fa-music:before {
+    content: "\f001"
+}
+
+.fa-search:before {
+    content: "\f002"
+}
+
+.fa-envelope-o:before {
+    content: "\f003"
+}
+
+.fa-heart:before {
+    content: "\f004"
+}
+
+.fa-star:before {
+    content: "\f005"
+}
+
+.fa-star-o:before {
+    content: "\f006"
+}
+
+.fa-user:before {
+    content: "\f007"
+}
+
+.fa-film:before {
+    content: "\f008"
+}
+
+.fa-th-large:before {
+    content: "\f009"
+}
+
+.fa-th:before {
+    content: "\f00a"
+}
+
+.fa-th-list:before {
+    content: "\f00b"
+}
+
+.fa-check:before {
+    content: "\f00c"
+}
+
+.fa-close:before,.fa-remove:before,.fa-times:before {
+    content: "\f00d"
+}
+
+.fa-search-plus:before {
+    content: "\f00e"
+}
+
+.fa-search-minus:before {
+    content: "\f010"
+}
+
+.fa-power-off:before {
+    content: "\f011"
+}
+
+.fa-signal:before {
+    content: "\f012"
+}
+
+.fa-cog:before,.fa-gear:before {
+    content: "\f013"
+}
+
+.fa-trash-o:before {
+    content: "\f014"
+}
+
+.fa-home:before {
+    content: "\f015"
+}
+
+.fa-file-o:before {
+    content: "\f016"
+}
+
+.fa-clock-o:before {
+    content: "\f017"
+}
+
+.fa-road:before {
+    content: "\f018"
+}
+
+.fa-download:before {
+    content: "\f019"
+}
+
+.fa-arrow-circle-o-down:before {
+    content: "\f01a"
+}
+
+.fa-arrow-circle-o-up:before {
+    content: "\f01b"
+}
+
+.fa-inbox:before {
+    content: "\f01c"
+}
+
+.fa-play-circle-o:before {
+    content: "\f01d"
+}
+
+.fa-repeat:before,.fa-rotate-right:before {
+    content: "\f01e"
+}
+
+.fa-refresh:before {
+    content: "\f021"
+}
+
+.fa-list-alt:before {
+    content: "\f022"
+}
+
+.fa-lock:before {
+    content: "\f023"
+}
+
+.fa-flag:before {
+    content: "\f024"
+}
+
+.fa-headphones:before {
+    content: "\f025"
+}
+
+.fa-volume-off:before {
+    content: "\f026"
+}
+
+.fa-volume-down:before {
+    content: "\f027"
+}
+
+.fa-volume-up:before {
+    content: "\f028"
+}
+
+.fa-qrcode:before {
+    content: "\f029"
+}
+
+.fa-barcode:before {
+    content: "\f02a"
+}
+
+.fa-tag:before {
+    content: "\f02b"
+}
+
+.fa-tags:before {
+    content: "\f02c"
+}
+
+.fa-book:before {
+    content: "\f02d"
+}
+
+.fa-bookmark:before {
+    content: "\f02e"
+}
+
+.fa-print:before {
+    content: "\f02f"
+}
+
+.fa-camera:before {
+    content: "\f030"
+}
+
+.fa-font:before {
+    content: "\f031"
+}
+
+.fa-bold:before {
+    content: "\f032"
+}
+
+.fa-italic:before {
+    content: "\f033"
+}
+
+.fa-text-height:before {
+    content: "\f034"
+}
+
+.fa-text-width:before {
+    content: "\f035"
+}
+
+.fa-align-left:before {
+    content: "\f036"
+}
+
+.fa-align-center:before {
+    content: "\f037"
+}
+
+.fa-align-right:before {
+    content: "\f038"
+}
+
+.fa-align-justify:before {
+    content: "\f039"
+}
+
+.fa-list:before {
+    content: "\f03a"
+}
+
+.fa-dedent:before,.fa-outdent:before {
+    content: "\f03b"
+}
+
+.fa-indent:before {
+    content: "\f03c"
+}
+
+.fa-video-camera:before {
+    content: "\f03d"
+}
+
+.fa-image:before,.fa-photo:before,.fa-picture-o:before {
+    content: "\f03e"
+}
+
+.fa-pencil:before {
+    content: "\f040"
+}
+
+.fa-map-marker:before {
+    content: "\f041"
+}
+
+.fa-adjust:before {
+    content: "\f042"
+}
+
+.fa-tint:before {
+    content: "\f043"
+}
+
+.fa-edit:before,.fa-pencil-square-o:before {
+    content: "\f044"
+}
+
+.fa-share-square-o:before {
+    content: "\f045"
+}
+
+.fa-check-square-o:before {
+    content: "\f046"
+}
+
+.fa-arrows:before {
+    content: "\f047"
+}
+
+.fa-step-backward:before {
+    content: "\f048"
+}
+
+.fa-fast-backward:before {
+    content: "\f049"
+}
+
+.fa-backward:before {
+    content: "\f04a"
+}
+
+.fa-play:before {
+    content: "\f04b"
+}
+
+.fa-pause:before {
+    content: "\f04c"
+}
+
+.fa-stop:before {
+    content: "\f04d"
+}
+
+.fa-forward:before {
+    content: "\f04e"
+}
+
+.fa-fast-forward:before {
+    content: "\f050"
+}
+
+.fa-step-forward:before {
+    content: "\f051"
+}
+
+.fa-eject:before {
+    content: "\f052"
+}
+
+.fa-chevron-left:before {
+    content: "\f053"
+}
+
+.fa-chevron-right:before {
+    content: "\f054"
+}
+
+.fa-plus-circle:before {
+    content: "\f055"
+}
+
+.fa-minus-circle:before {
+    content: "\f056"
+}
+
+.fa-times-circle:before {
+    content: "\f057"
+}
+
+.fa-check-circle:before {
+    content: "\f058"
+}
+
+.fa-question-circle:before {
+    content: "\f059"
+}
+
+.fa-info-circle:before {
+    content: "\f05a"
+}
+
+.fa-crosshairs:before {
+    content: "\f05b"
+}
+
+.fa-times-circle-o:before {
+    content: "\f05c"
+}
+
+.fa-check-circle-o:before {
+    content: "\f05d"
+}
+
+.fa-ban:before {
+    content: "\f05e"
+}
+
+.fa-arrow-left:before {
+    content: "\f060"
+}
+
+.fa-arrow-right:before {
+    content: "\f061"
+}
+
+.fa-arrow-up:before {
+    content: "\f062"
+}
+
+.fa-arrow-down:before {
+    content: "\f063"
+}
+
+.fa-mail-forward:before,.fa-share:before {
+    content: "\f064"
+}
+
+.fa-expand:before {
+    content: "\f065"
+}
+
+.fa-compress:before {
+    content: "\f066"
+}
+
+.fa-plus:before {
+    content: "\f067"
+}
+
+.fa-minus:before {
+    content: "\f068"
+}
+
+.fa-asterisk:before {
+    content: "\f069"
+}
+
+.fa-exclamation-circle:before {
+    content: "\f06a"
+}
+
+.fa-gift:before {
+    content: "\f06b"
+}
+
+.fa-leaf:before {
+    content: "\f06c"
+}
+
+.fa-fire:before {
+    content: "\f06d"
+}
+
+.fa-eye:before {
+    content: "\f06e"
+}
+
+.fa-eye-slash:before {
+    content: "\f070"
+}
+
+.fa-exclamation-triangle:before,.fa-warning:before {
+    content: "\f071"
+}
+
+.fa-plane:before {
+    content: "\f072"
+}
+
+.fa-calendar:before {
+    content: "\f073"
+}
+
+.fa-random:before {
+    content: "\f074"
+}
+
+.fa-comment:before {
+    content: "\f075"
+}
+
+.fa-magnet:before {
+    content: "\f076"
+}
+
+.fa-chevron-up:before {
+    content: "\f077"
+}
+
+.fa-chevron-down:before {
+    content: "\f078"
+}
+
+.fa-retweet:before {
+    content: "\f079"
+}
+
+.fa-shopping-cart:before {
+    content: "\f07a"
+}
+
+.fa-folder:before {
+    content: "\f07b"
+}
+
+.fa-folder-open:before {
+    content: "\f07c"
+}
+
+.fa-arrows-v:before {
+    content: "\f07d"
+}
+
+.fa-arrows-h:before {
+    content: "\f07e"
+}
+
+.fa-bar-chart-o:before,.fa-bar-chart:before {
+    content: "\f080"
+}
+
+.fa-twitter-square:before {
+    content: "\f081"
+}
+
+.fa-facebook-square:before {
+    content: "\f082"
+}
+
+.fa-camera-retro:before {
+    content: "\f083"
+}
+
+.fa-key:before {
+    content: "\f084"
+}
+
+.fa-cogs:before,.fa-gears:before {
+    content: "\f085"
+}
+
+.fa-comments:before {
+    content: "\f086"
+}
+
+.fa-thumbs-o-up:before {
+    content: "\f087"
+}
+
+.fa-thumbs-o-down:before {
+    content: "\f088"
+}
+
+.fa-star-half:before {
+    content: "\f089"
+}
+
+.fa-heart-o:before {
+    content: "\f08a"
+}
+
+.fa-sign-out:before {
+    content: "\f08b"
+}
+
+.fa-linkedin-square:before {
+    content: "\f08c"
+}
+
+.fa-thumb-tack:before {
+    content: "\f08d"
+}
+
+.fa-external-link:before {
+    content: "\f08e"
+}
+
+.fa-sign-in:before {
+    content: "\f090"
+}
+
+.fa-trophy:before {
+    content: "\f091"
+}
+
+.fa-github-square:before {
+    content: "\f092"
+}
+
+.fa-upload:before {
+    content: "\f093"
+}
+
+.fa-lemon-o:before {
+    content: "\f094"
+}
+
+.fa-phone:before {
+    content: "\f095"
+}
+
+.fa-square-o:before {
+    content: "\f096"
+}
+
+.fa-bookmark-o:before {
+    content: "\f097"
+}
+
+.fa-phone-square:before {
+    content: "\f098"
+}
+
+.fa-twitter:before {
+    content: "\f099"
+}
+
+.fa-facebook-f:before,.fa-facebook:before {
+    content: "\f09a"
+}
+
+.fa-github:before {
+    content: "\f09b"
+}
+
+.fa-unlock:before {
+    content: "\f09c"
+}
+
+.fa-credit-card:before {
+    content: "\f09d"
+}
+
+.fa-feed:before,.fa-rss:before {
+    content: "\f09e"
+}
+
+.fa-hdd-o:before {
+    content: "\f0a0"
+}
+
+.fa-bullhorn:before {
+    content: "\f0a1"
+}
+
+.fa-bell:before {
+    content: "\f0f3"
+}
+
+.fa-certificate:before {
+    content: "\f0a3"
+}
+
+.fa-hand-o-right:before {
+    content: "\f0a4"
+}
+
+.fa-hand-o-left:before {
+    content: "\f0a5"
+}
+
+.fa-hand-o-up:before {
+    content: "\f0a6"
+}
+
+.fa-hand-o-down:before {
+    content: "\f0a7"
+}
+
+.fa-arrow-circle-left:before {
+    content: "\f0a8"
+}
+
+.fa-arrow-circle-right:before {
+    content: "\f0a9"
+}
+
+.fa-arrow-circle-up:before {
+    content: "\f0aa"
+}
+
+.fa-arrow-circle-down:before {
+    content: "\f0ab"
+}
+
+.fa-globe:before {
+    content: "\f0ac"
+}
+
+.fa-wrench:before {
+    content: "\f0ad"
+}
+
+.fa-tasks:before {
+    content: "\f0ae"
+}
+
+.fa-filter:before {
+    content: "\f0b0"
+}
+
+.fa-briefcase:before {
+    content: "\f0b1"
+}
+
+.fa-arrows-alt:before {
+    content: "\f0b2"
+}
+
+.fa-group:before,.fa-users:before {
+    content: "\f0c0"
+}
+
+.fa-chain:before,.fa-link:before {
+    content: "\f0c1"
+}
+
+.fa-cloud:before {
+    content: "\f0c2"
+}
+
+.fa-flask:before {
+    content: "\f0c3"
+}
+
+.fa-cut:before,.fa-scissors:before {
+    content: "\f0c4"
+}
+
+.fa-copy:before,.fa-files-o:before {
+    content: "\f0c5"
+}
+
+.fa-paperclip:before {
+    content: "\f0c6"
+}
+
+.fa-floppy-o:before,.fa-save:before {
+    content: "\f0c7"
+}
+
+.fa-square:before {
+    content: "\f0c8"
+}
+
+.fa-bars:before,.fa-navicon:before,.fa-reorder:before {
+    content: "\f0c9"
+}
+
+.fa-list-ul:before {
+    content: "\f0ca"
+}
+
+.fa-list-ol:before {
+    content: "\f0cb"
+}
+
+.fa-strikethrough:before {
+    content: "\f0cc"
+}
+
+.fa-underline:before {
+    content: "\f0cd"
+}
+
+.fa-table:before {
+    content: "\f0ce"
+}
+
+.fa-magic:before {
+    content: "\f0d0"
+}
+
+.fa-truck:before {
+    content: "\f0d1"
+}
+
+.fa-pinterest:before {
+    content: "\f0d2"
+}
+
+.fa-pinterest-square:before {
+    content: "\f0d3"
+}
+
+.fa-google-plus-square:before {
+    content: "\f0d4"
+}
+
+.fa-google-plus:before {
+    content: "\f0d5"
+}
+
+.fa-money:before {
+    content: "\f0d6"
+}
+
+.fa-caret-down:before {
+    content: "\f0d7"
+}
+
+.fa-caret-up:before {
+    content: "\f0d8"
+}
+
+.fa-caret-left:before {
+    content: "\f0d9"
+}
+
+.fa-caret-right:before {
+    content: "\f0da"
+}
+
+.fa-columns:before {
+    content: "\f0db"
+}
+
+.fa-sort:before,.fa-unsorted:before {
+    content: "\f0dc"
+}
+
+.fa-sort-desc:before,.fa-sort-down:before {
+    content: "\f0dd"
+}
+
+.fa-sort-asc:before,.fa-sort-up:before {
+    content: "\f0de"
+}
+
+.fa-envelope:before {
+    content: "\f0e0"
+}
+
+.fa-linkedin:before {
+    content: "\f0e1"
+}
+
+.fa-rotate-left:before,.fa-undo:before {
+    content: "\f0e2"
+}
+
+.fa-gavel:before,.fa-legal:before {
+    content: "\f0e3"
+}
+
+.fa-dashboard:before,.fa-tachometer:before {
+    content: "\f0e4"
+}
+
+.fa-comment-o:before {
+    content: "\f0e5"
+}
+
+.fa-comments-o:before {
+    content: "\f0e6"
+}
+
+.fa-bolt:before,.fa-flash:before {
+    content: "\f0e7"
+}
+
+.fa-sitemap:before {
+    content: "\f0e8"
+}
+
+.fa-umbrella:before {
+    content: "\f0e9"
+}
+
+.fa-clipboard:before,.fa-paste:before {
+    content: "\f0ea"
+}
+
+.fa-lightbulb-o:before {
+    content: "\f0eb"
+}
+
+.fa-exchange:before {
+    content: "\f0ec"
+}
+
+.fa-cloud-download:before {
+    content: "\f0ed"
+}
+
+.fa-cloud-upload:before {
+    content: "\f0ee"
+}
+
+.fa-user-md:before {
+    content: "\f0f0"
+}
+
+.fa-stethoscope:before {
+    content: "\f0f1"
+}
+
+.fa-suitcase:before {
+    content: "\f0f2"
+}
+
+.fa-bell-o:before {
+    content: "\f0a2"
+}
+
+.fa-coffee:before {
+    content: "\f0f4"
+}
+
+.fa-cutlery:before {
+    content: "\f0f5"
+}
+
+.fa-file-text-o:before {
+    content: "\f0f6"
+}
+
+.fa-building-o:before {
+    content: "\f0f7"
+}
+
+.fa-hospital-o:before {
+    content: "\f0f8"
+}
+
+.fa-ambulance:before {
+    content: "\f0f9"
+}
+
+.fa-medkit:before {
+    content: "\f0fa"
+}
+
+.fa-fighter-jet:before {
+    content: "\f0fb"
+}
+
+.fa-beer:before {
+    content: "\f0fc"
+}
+
+.fa-h-square:before {
+    content: "\f0fd"
+}
+
+.fa-plus-square:before {
+    content: "\f0fe"
+}
+
+.fa-angle-double-left:before {
+    content: "\f100"
+}
+
+.fa-angle-double-right:before {
+    content: "\f101"
+}
+
+.fa-angle-double-up:before {
+    content: "\f102"
+}
+
+.fa-angle-double-down:before {
+    content: "\f103"
+}
+
+.fa-angle-left:before {
+    content: "\f104"
+}
+
+.fa-angle-right:before {
+    content: "\f105"
+}
+
+.fa-angle-up:before {
+    content: "\f106"
+}
+
+.fa-angle-down:before {
+    content: "\f107"
+}
+
+.fa-desktop:before {
+    content: "\f108"
+}
+
+.fa-laptop:before {
+    content: "\f109"
+}
+
+.fa-tablet:before {
+    content: "\f10a"
+}
+
+.fa-mobile-phone:before,.fa-mobile:before {
+    content: "\f10b"
+}
+
+.fa-circle-o:before {
+    content: "\f10c"
+}
+
+.fa-quote-left:before {
+    content: "\f10d"
+}
+
+.fa-quote-right:before {
+    content: "\f10e"
+}
+
+.fa-spinner:before {
+    content: "\f110"
+}
+
+.fa-circle:before {
+    content: "\f111"
+}
+
+.fa-mail-reply:before,.fa-reply:before {
+    content: "\f112"
+}
+
+.fa-github-alt:before {
+    content: "\f113"
+}
+
+.fa-folder-o:before {
+    content: "\f114"
+}
+
+.fa-folder-open-o:before {
+    content: "\f115"
+}
+
+.fa-smile-o:before {
+    content: "\f118"
+}
+
+.fa-frown-o:before {
+    content: "\f119"
+}
+
+.fa-meh-o:before {
+    content: "\f11a"
+}
+
+.fa-gamepad:before {
+    content: "\f11b"
+}
+
+.fa-keyboard-o:before {
+    content: "\f11c"
+}
+
+.fa-flag-o:before {
+    content: "\f11d"
+}
+
+.fa-flag-checkered:before {
+    content: "\f11e"
+}
+
+.fa-terminal:before {
+    content: "\f120"
+}
+
+.fa-code:before {
+    content: "\f121"
+}
+
+.fa-mail-reply-all:before,.fa-reply-all:before {
+    content: "\f122"
+}
+
+.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before {
+    content: "\f123"
+}
+
+.fa-location-arrow:before {
+    content: "\f124"
+}
+
+.fa-crop:before {
+    content: "\f125"
+}
+
+.fa-code-fork:before {
+    content: "\f126"
+}
+
+.fa-chain-broken:before,.fa-unlink:before {
+    content: "\f127"
+}
+
+.fa-question:before {
+    content: "\f128"
+}
+
+.fa-info:before {
+    content: "\f129"
+}
+
+.fa-exclamation:before {
+    content: "\f12a"
+}
+
+.fa-superscript:before {
+    content: "\f12b"
+}
+
+.fa-subscript:before {
+    content: "\f12c"
+}
+
+.fa-eraser:before {
+    content: "\f12d"
+}
+
+.fa-puzzle-piece:before {
+    content: "\f12e"
+}
+
+.fa-microphone:before {
+    content: "\f130"
+}
+
+.fa-microphone-slash:before {
+    content: "\f131"
+}
+
+.fa-shield:before {
+    content: "\f132"
+}
+
+.fa-calendar-o:before {
+    content: "\f133"
+}
+
+.fa-fire-extinguisher:before {
+    content: "\f134"
+}
+
+.fa-rocket:before {
+    content: "\f135"
+}
+
+.fa-maxcdn:before {
+    content: "\f136"
+}
+
+.fa-chevron-circle-left:before {
+    content: "\f137"
+}
+
+.fa-chevron-circle-right:before {
+    content: "\f138"
+}
+
+.fa-chevron-circle-up:before {
+    content: "\f139"
+}
+
+.fa-chevron-circle-down:before {
+    content: "\f13a"
+}
+
+.fa-html5:before {
+    content: "\f13b"
+}
+
+.fa-css3:before {
+    content: "\f13c"
+}
+
+.fa-anchor:before {
+    content: "\f13d"
+}
+
+.fa-unlock-alt:before {
+    content: "\f13e"
+}
+
+.fa-bullseye:before {
+    content: "\f140"
+}
+
+.fa-ellipsis-h:before {
+    content: "\f141"
+}
+
+.fa-ellipsis-v:before {
+    content: "\f142"
+}
+
+.fa-rss-square:before {
+    content: "\f143"
+}
+
+.fa-play-circle:before {
+    content: "\f144"
+}
+
+.fa-ticket:before {
+    content: "\f145"
+}
+
+.fa-minus-square:before {
+    content: "\f146"
+}
+
+.fa-minus-square-o:before {
+    content: "\f147"
+}
+
+.fa-level-up:before {
+    content: "\f148"
+}
+
+.fa-level-down:before {
+    content: "\f149"
+}
+
+.fa-check-square:before {
+    content: "\f14a"
+}
+
+.fa-pencil-square:before {
+    content: "\f14b"
+}
+
+.fa-external-link-square:before {
+    content: "\f14c"
+}
+
+.fa-share-square:before {
+    content: "\f14d"
+}
+
+.fa-compass:before {
+    content: "\f14e"
+}
+
+.fa-caret-square-o-down:before,.fa-toggle-down:before {
+    content: "\f150"
+}
+
+.fa-caret-square-o-up:before,.fa-toggle-up:before {
+    content: "\f151"
+}
+
+.fa-caret-square-o-right:before,.fa-toggle-right:before {
+    content: "\f152"
+}
+
+.fa-eur:before,.fa-euro:before {
+    content: "\f153"
+}
+
+.fa-gbp:before {
+    content: "\f154"
+}
+
+.fa-dollar:before,.fa-usd:before {
+    content: "\f155"
+}
+
+.fa-inr:before,.fa-rupee:before {
+    content: "\f156"
+}
+
+.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before {
+    content: "\f157"
+}
+
+.fa-rouble:before,.fa-rub:before,.fa-ruble:before {
+    content: "\f158"
+}
+
+.fa-krw:before,.fa-won:before {
+    content: "\f159"
+}
+
+.fa-bitcoin:before,.fa-btc:before {
+    content: "\f15a"
+}
+
+.fa-file:before {
+    content: "\f15b"
+}
+
+.fa-file-text:before {
+    content: "\f15c"
+}
+
+.fa-sort-alpha-asc:before {
+    content: "\f15d"
+}
+
+.fa-sort-alpha-desc:before {
+    content: "\f15e"
+}
+
+.fa-sort-amount-asc:before {
+    content: "\f160"
+}
+
+.fa-sort-amount-desc:before {
+    content: "\f161"
+}
+
+.fa-sort-numeric-asc:before {
+    content: "\f162"
+}
+
+.fa-sort-numeric-desc:before {
+    content: "\f163"
+}
+
+.fa-thumbs-up:before {
+    content: "\f164"
+}
+
+.fa-thumbs-down:before {
+    content: "\f165"
+}
+
+.fa-youtube-square:before {
+    content: "\f166"
+}
+
+.fa-youtube:before {
+    content: "\f167"
+}
+
+.fa-xing:before {
+    content: "\f168"
+}
+
+.fa-xing-square:before {
+    content: "\f169"
+}
+
+.fa-youtube-play:before {
+    content: "\f16a"
+}
+
+.fa-dropbox:before {
+    content: "\f16b"
+}
+
+.fa-stack-overflow:before {
+    content: "\f16c"
+}
+
+.fa-instagram:before {
+    content: "\f16d"
+}
+
+.fa-flickr:before {
+    content: "\f16e"
+}
+
+.fa-adn:before {
+    content: "\f170"
+}
+
+.fa-bitbucket:before {
+    content: "\f171"
+}
+
+.fa-bitbucket-square:before {
+    content: "\f172"
+}
+
+.fa-tumblr:before {
+    content: "\f173"
+}
+
+.fa-tumblr-square:before {
+    content: "\f174"
+}
+
+.fa-long-arrow-down:before {
+    content: "\f175"
+}
+
+.fa-long-arrow-up:before {
+    content: "\f176"
+}
+
+.fa-long-arrow-left:before {
+    content: "\f177"
+}
+
+.fa-long-arrow-right:before {
+    content: "\f178"
+}
+
+.fa-apple:before {
+    content: "\f179"
+}
+
+.fa-windows:before {
+    content: "\f17a"
+}
+
+.fa-android:before {
+    content: "\f17b"
+}
+
+.fa-linux:before {
+    content: "\f17c"
+}
+
+.fa-dribbble:before {
+    content: "\f17d"
+}
+
+.fa-skype:before {
+    content: "\f17e"
+}
+
+.fa-foursquare:before {
+    content: "\f180"
+}
+
+.fa-trello:before {
+    content: "\f181"
+}
+
+.fa-female:before {
+    content: "\f182"
+}
+
+.fa-male:before {
+    content: "\f183"
+}
+
+.fa-gittip:before,.fa-gratipay:before {
+    content: "\f184"
+}
+
+.fa-sun-o:before {
+    content: "\f185"
+}
+
+.fa-moon-o:before {
+    content: "\f186"
+}
+
+.fa-archive:before {
+    content: "\f187"
+}
+
+.fa-bug:before {
+    content: "\f188"
+}
+
+.fa-vk:before {
+    content: "\f189"
+}
+
+.fa-weibo:before {
+    content: "\f18a"
+}
+
+.fa-renren:before {
+    content: "\f18b"
+}
+
+.fa-pagelines:before {
+    content: "\f18c"
+}
+
+.fa-stack-exchange:before {
+    content: "\f18d"
+}
+
+.fa-arrow-circle-o-right:before {
+    content: "\f18e"
+}
+
+.fa-arrow-circle-o-left:before {
+    content: "\f190"
+}
+
+.fa-caret-square-o-left:before,.fa-toggle-left:before {
+    content: "\f191"
+}
+
+.fa-dot-circle-o:before {
+    content: "\f192"
+}
+
+.fa-wheelchair:before {
+    content: "\f193"
+}
+
+.fa-vimeo-square:before {
+    content: "\f194"
+}
+
+.fa-try:before,.fa-turkish-lira:before {
+    content: "\f195"
+}
+
+.fa-plus-square-o:before {
+    content: "\f196"
+}
+
+.fa-space-shuttle:before {
+    content: "\f197"
+}
+
+.fa-slack:before {
+    content: "\f198"
+}
+
+.fa-envelope-square:before {
+    content: "\f199"
+}
+
+.fa-wordpress:before {
+    content: "\f19a"
+}
+
+.fa-openid:before {
+    content: "\f19b"
+}
+
+.fa-bank:before,.fa-institution:before,.fa-university:before {
+    content: "\f19c"
+}
+
+.fa-graduation-cap:before,.fa-mortar-board:before {
+    content: "\f19d"
+}
+
+.fa-yahoo:before {
+    content: "\f19e"
+}
+
+.fa-google:before {
+    content: "\f1a0"
+}
+
+.fa-reddit:before {
+    content: "\f1a1"
+}
+
+.fa-reddit-square:before {
+    content: "\f1a2"
+}
+
+.fa-stumbleupon-circle:before {
+    content: "\f1a3"
+}
+
+.fa-stumbleupon:before {
+    content: "\f1a4"
+}
+
+.fa-delicious:before {
+    content: "\f1a5"
+}
+
+.fa-digg:before {
+    content: "\f1a6"
+}
+
+.fa-pied-piper-pp:before {
+    content: "\f1a7"
+}
+
+.fa-pied-piper-alt:before {
+    content: "\f1a8"
+}
+
+.fa-drupal:before {
+    content: "\f1a9"
+}
+
+.fa-joomla:before {
+    content: "\f1aa"
+}
+
+.fa-language:before {
+    content: "\f1ab"
+}
+
+.fa-fax:before {
+    content: "\f1ac"
+}
+
+.fa-building:before {
+    content: "\f1ad"
+}
+
+.fa-child:before {
+    content: "\f1ae"
+}
+
+.fa-paw:before {
+    content: "\f1b0"
+}
+
+.fa-spoon:before {
+    content: "\f1b1"
+}
+
+.fa-cube:before {
+    content: "\f1b2"
+}
+
+.fa-cubes:before {
+    content: "\f1b3"
+}
+
+.fa-behance:before {
+    content: "\f1b4"
+}
+
+.fa-behance-square:before {
+    content: "\f1b5"
+}
+
+.fa-steam:before {
+    content: "\f1b6"
+}
+
+.fa-steam-square:before {
+    content: "\f1b7"
+}
+
+.fa-recycle:before {
+    content: "\f1b8"
+}
+
+.fa-automobile:before,.fa-car:before {
+    content: "\f1b9"
+}
+
+.fa-cab:before,.fa-taxi:before {
+    content: "\f1ba"
+}
+
+.fa-tree:before {
+    content: "\f1bb"
+}
+
+.fa-spotify:before {
+    content: "\f1bc"
+}
+
+.fa-deviantart:before {
+    content: "\f1bd"
+}
+
+.fa-soundcloud:before {
+    content: "\f1be"
+}
+
+.fa-database:before {
+    content: "\f1c0"
+}
+
+.fa-file-pdf-o:before {
+    content: "\f1c1"
+}
+
+.fa-file-word-o:before {
+    content: "\f1c2"
+}
+
+.fa-file-excel-o:before {
+    content: "\f1c3"
+}
+
+.fa-file-powerpoint-o:before {
+    content: "\f1c4"
+}
+
+.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before {
+    content: "\f1c5"
+}
+
+.fa-file-archive-o:before,.fa-file-zip-o:before {
+    content: "\f1c6"
+}
+
+.fa-file-audio-o:before,.fa-file-sound-o:before {
+    content: "\f1c7"
+}
+
+.fa-file-movie-o:before,.fa-file-video-o:before {
+    content: "\f1c8"
+}
+
+.fa-file-code-o:before {
+    content: "\f1c9"
+}
+
+.fa-vine:before {
+    content: "\f1ca"
+}
+
+.fa-codepen:before {
+    content: "\f1cb"
+}
+
+.fa-jsfiddle:before {
+    content: "\f1cc"
+}
+
+.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before {
+    content: "\f1cd"
+}
+
+.fa-circle-o-notch:before {
+    content: "\f1ce"
+}
+
+.fa-ra:before,.fa-rebel:before,.fa-resistance:before {
+    content: "\f1d0"
+}
+
+.fa-empire:before,.fa-ge:before {
+    content: "\f1d1"
+}
+
+.fa-git-square:before {
+    content: "\f1d2"
+}
+
+.fa-git:before {
+    content: "\f1d3"
+}
+
+.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before {
+    content: "\f1d4"
+}
+
+.fa-tencent-weibo:before {
+    content: "\f1d5"
+}
+
+.fa-qq:before {
+    content: "\f1d6"
+}
+
+.fa-wechat:before,.fa-weixin:before {
+    content: "\f1d7"
+}
+
+.fa-paper-plane:before,.fa-send:before {
+    content: "\f1d8"
+}
+
+.fa-paper-plane-o:before,.fa-send-o:before {
+    content: "\f1d9"
+}
+
+.fa-history:before {
+    content: "\f1da"
+}
+
+.fa-circle-thin:before {
+    content: "\f1db"
+}
+
+.fa-header:before {
+    content: "\f1dc"
+}
+
+.fa-paragraph:before {
+    content: "\f1dd"
+}
+
+.fa-sliders:before {
+    content: "\f1de"
+}
+
+.fa-share-alt:before {
+    content: "\f1e0"
+}
+
+.fa-share-alt-square:before {
+    content: "\f1e1"
+}
+
+.fa-bomb:before {
+    content: "\f1e2"
+}
+
+.fa-futbol-o:before,.fa-soccer-ball-o:before {
+    content: "\f1e3"
+}
+
+.fa-tty:before {
+    content: "\f1e4"
+}
+
+.fa-binoculars:before {
+    content: "\f1e5"
+}
+
+.fa-plug:before {
+    content: "\f1e6"
+}
+
+.fa-slideshare:before {
+    content: "\f1e7"
+}
+
+.fa-twitch:before {
+    content: "\f1e8"
+}
+
+.fa-yelp:before {
+    content: "\f1e9"
+}
+
+.fa-newspaper-o:before {
+    content: "\f1ea"
+}
+
+.fa-wifi:before {
+    content: "\f1eb"
+}
+
+.fa-calculator:before {
+    content: "\f1ec"
+}
+
+.fa-paypal:before {
+    content: "\f1ed"
+}
+
+.fa-google-wallet:before {
+    content: "\f1ee"
+}
+
+.fa-cc-visa:before {
+    content: "\f1f0"
+}
+
+.fa-cc-mastercard:before {
+    content: "\f1f1"
+}
+
+.fa-cc-discover:before {
+    content: "\f1f2"
+}
+
+.fa-cc-amex:before {
+    content: "\f1f3"
+}
+
+.fa-cc-paypal:before {
+    content: "\f1f4"
+}
+
+.fa-cc-stripe:before {
+    content: "\f1f5"
+}
+
+.fa-bell-slash:before {
+    content: "\f1f6"
+}
+
+.fa-bell-slash-o:before {
+    content: "\f1f7"
+}
+
+.fa-trash:before {
+    content: "\f1f8"
+}
+
+.fa-copyright:before {
+    content: "\f1f9"
+}
+
+.fa-at:before {
+    content: "\f1fa"
+}
+
+.fa-eyedropper:before {
+    content: "\f1fb"
+}
+
+.fa-paint-brush:before {
+    content: "\f1fc"
+}
+
+.fa-birthday-cake:before {
+    content: "\f1fd"
+}
+
+.fa-area-chart:before {
+    content: "\f1fe"
+}
+
+.fa-pie-chart:before {
+    content: "\f200"
+}
+
+.fa-line-chart:before {
+    content: "\f201"
+}
+
+.fa-lastfm:before {
+    content: "\f202"
+}
+
+.fa-lastfm-square:before {
+    content: "\f203"
+}
+
+.fa-toggle-off:before {
+    content: "\f204"
+}
+
+.fa-toggle-on:before {
+    content: "\f205"
+}
+
+.fa-bicycle:before {
+    content: "\f206"
+}
+
+.fa-bus:before {
+    content: "\f207"
+}
+
+.fa-ioxhost:before {
+    content: "\f208"
+}
+
+.fa-angellist:before {
+    content: "\f209"
+}
+
+.fa-cc:before {
+    content: "\f20a"
+}
+
+.fa-ils:before,.fa-shekel:before,.fa-sheqel:before {
+    content: "\f20b"
+}
+
+.fa-meanpath:before {
+    content: "\f20c"
+}
+
+.fa-buysellads:before {
+    content: "\f20d"
+}
+
+.fa-connectdevelop:before {
+    content: "\f20e"
+}
+
+.fa-dashcube:before {
+    content: "\f210"
+}
+
+.fa-forumbee:before {
+    content: "\f211"
+}
+
+.fa-leanpub:before {
+    content: "\f212"
+}
+
+.fa-sellsy:before {
+    content: "\f213"
+}
+
+.fa-shirtsinbulk:before {
+    content: "\f214"
+}
+
+.fa-simplybuilt:before {
+    content: "\f215"
+}
+
+.fa-skyatlas:before {
+    content: "\f216"
+}
+
+.fa-cart-plus:before {
+    content: "\f217"
+}
+
+.fa-cart-arrow-down:before {
+    content: "\f218"
+}
+
+.fa-diamond:before {
+    content: "\f219"
+}
+
+.fa-ship:before {
+    content: "\f21a"
+}
+
+.fa-user-secret:before {
+    content: "\f21b"
+}
+
+.fa-motorcycle:before {
+    content: "\f21c"
+}
+
+.fa-street-view:before {
+    content: "\f21d"
+}
+
+.fa-heartbeat:before {
+    content: "\f21e"
+}
+
+.fa-venus:before {
+    content: "\f221"
+}
+
+.fa-mars:before {
+    content: "\f222"
+}
+
+.fa-mercury:before {
+    content: "\f223"
+}
+
+.fa-intersex:before,.fa-transgender:before {
+    content: "\f224"
+}
+
+.fa-transgender-alt:before {
+    content: "\f225"
+}
+
+.fa-venus-double:before {
+    content: "\f226"
+}
+
+.fa-mars-double:before {
+    content: "\f227"
+}
+
+.fa-venus-mars:before {
+    content: "\f228"
+}
+
+.fa-mars-stroke:before {
+    content: "\f229"
+}
+
+.fa-mars-stroke-v:before {
+    content: "\f22a"
+}
+
+.fa-mars-stroke-h:before {
+    content: "\f22b"
+}
+
+.fa-neuter:before {
+    content: "\f22c"
+}
+
+.fa-genderless:before {
+    content: "\f22d"
+}
+
+.fa-facebook-official:before {
+    content: "\f230"
+}
+
+.fa-pinterest-p:before {
+    content: "\f231"
+}
+
+.fa-whatsapp:before {
+    content: "\f232"
+}
+
+.fa-server:before {
+    content: "\f233"
+}
+
+.fa-user-plus:before {
+    content: "\f234"
+}
+
+.fa-user-times:before {
+    content: "\f235"
+}
+
+.fa-bed:before,.fa-hotel:before {
+    content: "\f236"
+}
+
+.fa-viacoin:before {
+    content: "\f237"
+}
+
+.fa-train:before {
+    content: "\f238"
+}
+
+.fa-subway:before {
+    content: "\f239"
+}
+
+.fa-medium:before {
+    content: "\f23a"
+}
+
+.fa-y-combinator:before,.fa-yc:before {
+    content: "\f23b"
+}
+
+.fa-optin-monster:before {
+    content: "\f23c"
+}
+
+.fa-opencart:before {
+    content: "\f23d"
+}
+
+.fa-expeditedssl:before {
+    content: "\f23e"
+}
+
+.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before {
+    content: "\f240"
+}
+
+.fa-battery-3:before,.fa-battery-three-quarters:before {
+    content: "\f241"
+}
+
+.fa-battery-2:before,.fa-battery-half:before {
+    content: "\f242"
+}
+
+.fa-battery-1:before,.fa-battery-quarter:before {
+    content: "\f243"
+}
+
+.fa-battery-0:before,.fa-battery-empty:before {
+    content: "\f244"
+}
+
+.fa-mouse-pointer:before {
+    content: "\f245"
+}
+
+.fa-i-cursor:before {
+    content: "\f246"
+}
+
+.fa-object-group:before {
+    content: "\f247"
+}
+
+.fa-object-ungroup:before {
+    content: "\f248"
+}
+
+.fa-sticky-note:before {
+    content: "\f249"
+}
+
+.fa-sticky-note-o:before {
+    content: "\f24a"
+}
+
+.fa-cc-jcb:before {
+    content: "\f24b"
+}
+
+.fa-cc-diners-club:before {
+    content: "\f24c"
+}
+
+.fa-clone:before {
+    content: "\f24d"
+}
+
+.fa-balance-scale:before {
+    content: "\f24e"
+}
+
+.fa-hourglass-o:before {
+    content: "\f250"
+}
+
+.fa-hourglass-1:before,.fa-hourglass-start:before {
+    content: "\f251"
+}
+
+.fa-hourglass-2:before,.fa-hourglass-half:before {
+    content: "\f252"
+}
+
+.fa-hourglass-3:before,.fa-hourglass-end:before {
+    content: "\f253"
+}
+
+.fa-hourglass:before {
+    content: "\f254"
+}
+
+.fa-hand-grab-o:before,.fa-hand-rock-o:before {
+    content: "\f255"
+}
+
+.fa-hand-paper-o:before,.fa-hand-stop-o:before {
+    content: "\f256"
+}
+
+.fa-hand-scissors-o:before {
+    content: "\f257"
+}
+
+.fa-hand-lizard-o:before {
+    content: "\f258"
+}
+
+.fa-hand-spock-o:before {
+    content: "\f259"
+}
+
+.fa-hand-pointer-o:before {
+    content: "\f25a"
+}
+
+.fa-hand-peace-o:before {
+    content: "\f25b"
+}
+
+.fa-trademark:before {
+    content: "\f25c"
+}
+
+.fa-registered:before {
+    content: "\f25d"
+}
+
+.fa-creative-commons:before {
+    content: "\f25e"
+}
+
+.fa-gg:before {
+    content: "\f260"
+}
+
+.fa-gg-circle:before {
+    content: "\f261"
+}
+
+.fa-tripadvisor:before {
+    content: "\f262"
+}
+
+.fa-odnoklassniki:before {
+    content: "\f263"
+}
+
+.fa-odnoklassniki-square:before {
+    content: "\f264"
+}
+
+.fa-get-pocket:before {
+    content: "\f265"
+}
+
+.fa-wikipedia-w:before {
+    content: "\f266"
+}
+
+.fa-safari:before {
+    content: "\f267"
+}
+
+.fa-chrome:before {
+    content: "\f268"
+}
+
+.fa-firefox:before {
+    content: "\f269"
+}
+
+.fa-opera:before {
+    content: "\f26a"
+}
+
+.fa-internet-explorer:before {
+    content: "\f26b"
+}
+
+.fa-television:before,.fa-tv:before {
+    content: "\f26c"
+}
+
+.fa-contao:before {
+    content: "\f26d"
+}
+
+.fa-500px:before {
+    content: "\f26e"
+}
+
+.fa-amazon:before {
+    content: "\f270"
+}
+
+.fa-calendar-plus-o:before {
+    content: "\f271"
+}
+
+.fa-calendar-minus-o:before {
+    content: "\f272"
+}
+
+.fa-calendar-times-o:before {
+    content: "\f273"
+}
+
+.fa-calendar-check-o:before {
+    content: "\f274"
+}
+
+.fa-industry:before {
+    content: "\f275"
+}
+
+.fa-map-pin:before {
+    content: "\f276"
+}
+
+.fa-map-signs:before {
+    content: "\f277"
+}
+
+.fa-map-o:before {
+    content: "\f278"
+}
+
+.fa-map:before {
+    content: "\f279"
+}
+
+.fa-commenting:before {
+    content: "\f27a"
+}
+
+.fa-commenting-o:before {
+    content: "\f27b"
+}
+
+.fa-houzz:before {
+    content: "\f27c"
+}
+
+.fa-vimeo:before {
+    content: "\f27d"
+}
+
+.fa-black-tie:before {
+    content: "\f27e"
+}
+
+.fa-fonticons:before {
+    content: "\f280"
+}
+
+.fa-reddit-alien:before {
+    content: "\f281"
+}
+
+.fa-edge:before {
+    content: "\f282"
+}
+
+.fa-credit-card-alt:before {
+    content: "\f283"
+}
+
+.fa-codiepie:before {
+    content: "\f284"
+}
+
+.fa-modx:before {
+    content: "\f285"
+}
+
+.fa-fort-awesome:before {
+    content: "\f286"
+}
+
+.fa-usb:before {
+    content: "\f287"
+}
+
+.fa-product-hunt:before {
+    content: "\f288"
+}
+
+.fa-mixcloud:before {
+    content: "\f289"
+}
+
+.fa-scribd:before {
+    content: "\f28a"
+}
+
+.fa-pause-circle:before {
+    content: "\f28b"
+}
+
+.fa-pause-circle-o:before {
+    content: "\f28c"
+}
+
+.fa-stop-circle:before {
+    content: "\f28d"
+}
+
+.fa-stop-circle-o:before {
+    content: "\f28e"
+}
+
+.fa-shopping-bag:before {
+    content: "\f290"
+}
+
+.fa-shopping-basket:before {
+    content: "\f291"
+}
+
+.fa-hashtag:before {
+    content: "\f292"
+}
+
+.fa-bluetooth:before {
+    content: "\f293"
+}
+
+.fa-bluetooth-b:before {
+    content: "\f294"
+}
+
+.fa-percent:before {
+    content: "\f295"
+}
+
+.fa-gitlab:before {
+    content: "\f296"
+}
+
+.fa-wpbeginner:before {
+    content: "\f297"
+}
+
+.fa-wpforms:before {
+    content: "\f298"
+}
+
+.fa-envira:before {
+    content: "\f299"
+}
+
+.fa-universal-access:before {
+    content: "\f29a"
+}
+
+.fa-wheelchair-alt:before {
+    content: "\f29b"
+}
+
+.fa-question-circle-o:before {
+    content: "\f29c"
+}
+
+.fa-blind:before {
+    content: "\f29d"
+}
+
+.fa-audio-description:before {
+    content: "\f29e"
+}
+
+.fa-volume-control-phone:before {
+    content: "\f2a0"
+}
+
+.fa-braille:before {
+    content: "\f2a1"
+}
+
+.fa-assistive-listening-systems:before {
+    content: "\f2a2"
+}
+
+.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before {
+    content: "\f2a3"
+}
+
+.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before {
+    content: "\f2a4"
+}
+
+.fa-glide:before {
+    content: "\f2a5"
+}
+
+.fa-glide-g:before {
+    content: "\f2a6"
+}
+
+.fa-sign-language:before,.fa-signing:before {
+    content: "\f2a7"
+}
+
+.fa-low-vision:before {
+    content: "\f2a8"
+}
+
+.fa-viadeo:before {
+    content: "\f2a9"
+}
+
+.fa-viadeo-square:before {
+    content: "\f2aa"
+}
+
+.fa-snapchat:before {
+    content: "\f2ab"
+}
+
+.fa-snapchat-ghost:before {
+    content: "\f2ac"
+}
+
+.fa-snapchat-square:before {
+    content: "\f2ad"
+}
+
+.fa-pied-piper:before {
+    content: "\f2ae"
+}
+
+.fa-first-order:before {
+    content: "\f2b0"
+}
+
+.fa-yoast:before {
+    content: "\f2b1"
+}
+
+.fa-themeisle:before {
+    content: "\f2b2"
+}
+
+.fa-google-plus-circle:before,.fa-google-plus-official:before {
+    content: "\f2b3"
+}
+
+.fa-fa:before,.fa-font-awesome:before {
+    content: "\f2b4"
+}
+
+.fa-handshake-o:before {
+    content: "\f2b5"
+}
+
+.fa-envelope-open:before {
+    content: "\f2b6"
+}
+
+.fa-envelope-open-o:before {
+    content: "\f2b7"
+}
+
+.fa-linode:before {
+    content: "\f2b8"
+}
+
+.fa-address-book:before {
+    content: "\f2b9"
+}
+
+.fa-address-book-o:before {
+    content: "\f2ba"
+}
+
+.fa-address-card:before,.fa-vcard:before {
+    content: "\f2bb"
+}
+
+.fa-address-card-o:before,.fa-vcard-o:before {
+    content: "\f2bc"
+}
+
+.fa-user-circle:before {
+    content: "\f2bd"
+}
+
+.fa-user-circle-o:before {
+    content: "\f2be"
+}
+
+.fa-user-o:before {
+    content: "\f2c0"
+}
+
+.fa-id-badge:before {
+    content: "\f2c1"
+}
+
+.fa-drivers-license:before,.fa-id-card:before {
+    content: "\f2c2"
+}
+
+.fa-drivers-license-o:before,.fa-id-card-o:before {
+    content: "\f2c3"
+}
+
+.fa-quora:before {
+    content: "\f2c4"
+}
+
+.fa-free-code-camp:before {
+    content: "\f2c5"
+}
+
+.fa-telegram:before {
+    content: "\f2c6"
+}
+
+.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before {
+    content: "\f2c7"
+}
+
+.fa-thermometer-3:before,.fa-thermometer-three-quarters:before {
+    content: "\f2c8"
+}
+
+.fa-thermometer-2:before,.fa-thermometer-half:before {
+    content: "\f2c9"
+}
+
+.fa-thermometer-1:before,.fa-thermometer-quarter:before {
+    content: "\f2ca"
+}
+
+.fa-thermometer-0:before,.fa-thermometer-empty:before {
+    content: "\f2cb"
+}
+
+.fa-shower:before {
+    content: "\f2cc"
+}
+
+.fa-bath:before,.fa-bathtub:before,.fa-s15:before {
+    content: "\f2cd"
+}
+
+.fa-podcast:before {
+    content: "\f2ce"
+}
+
+.fa-window-maximize:before {
+    content: "\f2d0"
+}
+
+.fa-window-minimize:before {
+    content: "\f2d1"
+}
+
+.fa-window-restore:before {
+    content: "\f2d2"
+}
+
+.fa-times-rectangle:before,.fa-window-close:before {
+    content: "\f2d3"
+}
+
+.fa-times-rectangle-o:before,.fa-window-close-o:before {
+    content: "\f2d4"
+}
+
+.fa-bandcamp:before {
+    content: "\f2d5"
+}
+
+.fa-grav:before {
+    content: "\f2d6"
+}
+
+.fa-etsy:before {
+    content: "\f2d7"
+}
+
+.fa-imdb:before {
+    content: "\f2d8"
+}
+
+.fa-ravelry:before {
+    content: "\f2d9"
+}
+
+.fa-eercast:before {
+    content: "\f2da"
+}
+
+.fa-microchip:before {
+    content: "\f2db"
+}
+
+.fa-snowflake-o:before {
+    content: "\f2dc"
+}
+
+.fa-superpowers:before {
+    content: "\f2dd"
+}
+
+.fa-wpexplorer:before {
+    content: "\f2de"
+}
+
+.fa-meetup:before {
+    content: "\f2e0"
+}
+
+.sr-only {
+    position: absolute;
+    width: 1px;
+    height: 1px;
+    padding: 0;
+    margin: -1px;
+    overflow: hidden;
+    clip: rect(0,0,0,0);
+    border: 0
+}
+
+.sr-only-focusable:active,.sr-only-focusable:focus {
+    position: static;
+    width: auto;
+    height: auto;
+    margin: 0;
+    overflow: visible;
+    clip: auto
+}
+
+.flownews-wrap-container {
+    background: #FFF
+}
+
+.flownews-header-top,.flownews-header-top .flownews-wrap-container {
+    background: #000;
+    overflow: hidden
+}
+
+.flownews-header-bottom,.flownews-header-bottom .flownews-wrap-container {
+    background: #282828;
+    border-bottom: 2px solid #e7685d
+}
+
+body {
+    background-repeat: no-repeat;
+    line-height: 1
+}
+
+p {
+    color: #747474;
+    letter-spacing: .5px;
+    line-height: 24px;
+    font-weight: 300;
+    margin: 0
+}
+
+h1,h2,h3,h4,h5,h6 {
+    font-weight: 700;
+    color: #333;
+    letter-spacing: 1px;
+    margin: 0
+}
+
+.comment-description h1,.comment-description h2,.comment-description h3,.comment-description h4,.comment-description h5,.comment-description h6,.post-text .text>h3,.post-text .text>h4,.post-text .text>h5,.post-text .text>h6,.post-text>h3,.post-text>h4,.post-text>h5,.post-text>h6 {
+    margin: 10px 0
+}
+
+.comment-description dt,.post-text dt {
+    margin-bottom: 5px
+}
+
+.comment-description dd,.post-text dd {
+    margin-bottom: 20px
+}
+
+.flownews-page .flownews-content .post-text .text>ol ol,.flownews-page .flownews-content .post-text .text>ul ul,.flownews-post .flownews-content .comment-description ol ol,.flownews-post .flownews-content .comment-description ul ul,.flownews-post .flownews-content .post-text>ol ol,.flownews-post .flownews-content .post-text>ul ul {
+    margin-bottom: 0
+}
+
+.alignleft,.alignnone,.alignright,.comment-description p,.post-text .text>p,.post-text>p {
+    margin-bottom: 20px
+}
+
+kbd {
+    background-color: #333
+}
+
+code {
+    color: #c7254e;
+    background-color: #f9f2f4
+}
+
+h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
+    font-weight: 700;
+    color: #333;
+    letter-spacing: 1px
+}
+
+a {
+    color: #c9564c
+}
+
+pre {
+    border-radius: 0;
+    color: #333;
+    background-color: #f5f5f5;
+    border: 1px solid #ccc
+}
+
+#preloader,#preloader:after {
+    width: 50px;
+    height: 50px;
+    border-radius: 50px
+}
+
+::-webkit-scrollbar {
+    width: 5px
+}
+
+::-webkit-scrollbar-track {
+    background-color: #eaeaea;
+    border-left: 1px solid #ccc
+}
+
+::-webkit-scrollbar-thumb {
+    background-color: #ccc
+}
+
+::-webkit-scrollbar-thumb:hover {
+    background-color: #aaa
+}
+
+img {
+    height: auto
+}
+
+a:focus,a:hover {
+    text-decoration: none;
+    color: #e7685d
+}
+
+a:focus,input:focus {
+    outline: 0
+}
+
+a,a:hover {
+    transition: all .3s ease 0s
+}
+
+.aligncenter,.alignleft,.bypostauthor .alignright,.gallery-caption,.screen-reader-text,.wp-caption,.wp-caption-text {
+    line-height: 1;
+    max-width: 100%
+}
+
+.alignleft {
+    float: left;
+    margin-right: 20px
+}
+
+.alignright {
+    float: right;
+    margin-left: 20px;
+    color: #282828;
+    display: block;
+    font-size: 12px;
+    margin-top: 8px
+}
+
+.aligncenter {
+    margin: 0 auto 20px
+}
+
+.wp-caption-text {
+    margin-top: 10px
+}
+
+td,th {
+    padding: 10px
+}
+
+tr td:first-child,tr th:first-child {
+    padding-left: 0
+}
+
+@media screen and (max-width: 800px) {
+    .aligncenter,.alignleft,.alignright {
+        max-width:100%;
+        float: none;
+        display: block;
+        text-align: center;
+        margin: 25px auto
+    }
+}
+
+#preloader-container {
+    background: #fff;
+    position: fixed;
+    width: 100%;
+    height: 100%;
+    top: 0;
+    z-index: 999999999999999999
+}
+
+#preloader-wrap {
+    width: 60px;
+    height: 60px;
+    position: absolute;
+    top: 50%;
+    left: 50%;
+    margin-left: -30px;
+    margin-top: -30px
+}
+
+#preloader {
+    position: relative;
+    background: 0 0;
+    animation: preloader_5 1.5s infinite linear
+}
+
+#preloader:after {
+    position: absolute;
+    border-top: 10px solid transparent;
+    border-bottom: 10px solid transparent;
+    border-left: 10px solid transparent;
+    border-right: 10px solid transparent;
+    top: 0;
+    left: 0;
+    animation: preloader_5_after 1.5s infinite linear
+}
+
+.cssload-thecube .cssload-cube:before,.header-mobile .menu-responsive-container li.menu-item-has-children a:after {
+    content: ""
+}
+
+@keyframes preloader_5 {
+    0% {
+        transform: rotate(0)
+    }
+
+    50% {
+        transform: rotate(180deg);
+        background: 0 0
+    }
+
+    100% {
+        transform: rotate(360deg)
+    }
+}
+
+.cssload-thecube {
+    width: 60px;
+    height: 60px;
+    margin: 0 auto;
+    position: relative;
+    transform: rotateZ(45deg);
+    -o-transform: rotateZ(45deg);
+    -ms-transform: rotateZ(45deg);
+    -webkit-transform: rotateZ(45deg);
+    -moz-transform: rotateZ(45deg)
+}
+
+.cssload-thecube .cssload-cube {
+    transform: rotateZ(45deg);
+    -ms-transform: rotateZ(45deg);
+    -webkit-transform: rotateZ(45deg);
+    -moz-transform: rotateZ(45deg);
+    float: left;
+    width: 50%;
+    height: 50%;
+    position: relative;
+    transform: scale(1.1);
+    -o-transform: scale(1.1);
+    -ms-transform: scale(1.1);
+    -webkit-transform: scale(1.1);
+    -moz-transform: scale(1.1)
+}
+
+.cssload-thecube .cssload-cube:before {
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    background-color: #e7695d;
+    animation: cssload-fold-thecube 4.2s infinite linear both;
+    -o-animation: cssload-fold-thecube 4.2s infinite linear both;
+    -ms-animation: cssload-fold-thecube 4.2s infinite linear both;
+    -webkit-animation: cssload-fold-thecube 4.2s infinite linear both;
+    -moz-animation: cssload-fold-thecube 4.2s infinite linear both;
+    transform-origin: 100% 100%;
+    -o-transform-origin: 100% 100%;
+    -ms-transform-origin: 100% 100%;
+    -webkit-transform-origin: 100% 100%;
+    -moz-transform-origin: 100% 100%
+}
+
+.cssload-thecube .cssload-c2 {
+    transform: scale(1.1) rotateZ(90deg);
+    -o-transform: scale(1.1) rotateZ(90deg);
+    -ms-transform: scale(1.1) rotateZ(90deg);
+    -webkit-transform: scale(1.1) rotateZ(90deg);
+    -moz-transform: scale(1.1) rotateZ(90deg)
+}
+
+.cssload-thecube .cssload-c3 {
+    transform: scale(1.1) rotateZ(180deg);
+    -o-transform: scale(1.1) rotateZ(180deg);
+    -ms-transform: scale(1.1) rotateZ(180deg);
+    -webkit-transform: scale(1.1) rotateZ(180deg);
+    -moz-transform: scale(1.1) rotateZ(180deg)
+}
+
+.cssload-thecube .cssload-c4 {
+    transform: scale(1.1) rotateZ(270deg);
+    -o-transform: scale(1.1) rotateZ(270deg);
+    -ms-transform: scale(1.1) rotateZ(270deg);
+    -webkit-transform: scale(1.1) rotateZ(270deg);
+    -moz-transform: scale(1.1) rotateZ(270deg)
+}
+
+.cssload-thecube .cssload-c2:before {
+    animation-delay: .53s;
+    -o-animation-delay: .53s;
+    -ms-animation-delay: .53s;
+    -webkit-animation-delay: .53s;
+    -moz-animation-delay: .53s
+}
+
+.cssload-thecube .cssload-c3:before {
+    animation-delay: 1.05s;
+    -o-animation-delay: 1.05s;
+    -ms-animation-delay: 1.05s;
+    -webkit-animation-delay: 1.05s;
+    -moz-animation-delay: 1.05s
+}
+
+.cssload-thecube .cssload-c4:before {
+    animation-delay: 1.58s;
+    -o-animation-delay: 1.58s;
+    -ms-animation-delay: 1.58s;
+    -webkit-animation-delay: 1.58s;
+    -moz-animation-delay: 1.58s
+}
+
+@keyframes cssload-fold-thecube {
+    0%,10% {
+        transform: perspective(136px) rotateX(-180deg);
+        opacity: 0
+    }
+
+    25%,75% {
+        transform: perspective(136px) rotateX(0);
+        opacity: 1
+    }
+
+    100%,90% {
+        transform: perspective(136px) rotateY(180deg);
+        opacity: 0
+    }
+}
+
+@-o-keyframes cssload-fold-thecube {
+    0%,10% {
+        -o-transform: perspective(136px) rotateX(-180deg);
+        opacity: 0
+    }
+
+    25%,75% {
+        -o-transform: perspective(136px) rotateX(0);
+        opacity: 1
+    }
+
+    100%,90% {
+        -o-transform: perspective(136px) rotateY(180deg);
+        opacity: 0
+    }
+}
+
+@-ms-keyframes cssload-fold-thecube {
+    0%,10% {
+        -ms-transform: perspective(136px) rotateX(-180deg);
+        opacity: 0
+    }
+
+    25%,75% {
+        -ms-transform: perspective(136px) rotateX(0);
+        opacity: 1
+    }
+
+    100%,90% {
+        -ms-transform: perspective(136px) rotateY(180deg);
+        opacity: 0
+    }
+}
+
+@-webkit-keyframes cssload-fold-thecube {
+    0%,10% {
+        -webkit-transform: perspective(136px) rotateX(-180deg);
+        opacity: 0
+    }
+
+    25%,75% {
+        -webkit-transform: perspective(136px) rotateX(0);
+        opacity: 1
+    }
+
+    100%,90% {
+        -webkit-transform: perspective(136px) rotateY(180deg);
+        opacity: 0
+    }
+}
+
+@-moz-keyframes cssload-fold-thecube {
+    0%,10% {
+        -moz-transform: perspective(136px) rotateX(-180deg);
+        opacity: 0
+    }
+
+    25%,75% {
+        -moz-transform: perspective(136px) rotateX(0);
+        opacity: 1
+    }
+
+    100%,90% {
+        -moz-transform: perspective(136px) rotateY(180deg);
+        opacity: 0
+    }
+}
+
+#preloader-container .spinner-pulse {
+    width: 40px;
+    height: 40px;
+    position: absolute;
+    left: 50%;
+    top: 50%;
+    margin-left: -20px;
+    margin-top: -20px;
+    border-radius: 100%;
+    -webkit-animation: scaleout 1s infinite ease-in-out;
+    animation: scaleout 1s infinite ease-in-out
+}
+
+@-webkit-keyframes scaleout {
+    0% {
+        -webkit-transform: scale(0)
+    }
+
+    100% {
+        -webkit-transform: scale(1);
+        opacity: 0
+    }
+}
+
+@keyframes scaleout {
+    0% {
+        transform: scale(0);
+        -webkit-transform: scale(0)
+    }
+
+    100% {
+        transform: scale(1);
+        -webkit-transform: scale(1);
+        opacity: 0
+    }
+}
+
+#preloader-container .spinner-plane {
+    width: 30px;
+    height: 30px;
+    margin: -15px auto 100px -15px;
+    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
+    animation: rotateplane 1.2s infinite ease-in-out;
+    position: absolute;
+    z-index: 999999999999999999999999999999999999999;
+    left: 50%;
+    top: 50%;
+    background: 0 0
+}
+
+@-webkit-keyframes rotateplane {
+    0% {
+        -webkit-transform: perspective(120px)
+    }
+
+    50% {
+        -webkit-transform: perspective(120px) rotateY(180deg)
+    }
+
+    100% {
+        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
+    }
+}
+
+@keyframes rotateplane {
+    0% {
+        transform: perspective(120px) rotateX(0) rotateY(0);
+        -webkit-transform: perspective(120px) rotateX(0) rotateY(0)
+    }
+
+    50% {
+        transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
+        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
+    }
+
+    100% {
+        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
+        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
+    }
+}
+
+#preloader-container .spinner-three-bounce {
+    position: absolute;
+    left: 50%;
+    top: 50%;
+    margin-left: -35px;
+    margin-top: -9px;
+    width: 70px;
+    text-align: center
+}
+
+#preloader-container .spinner-three-bounce>div {
+    width: 18px;
+    height: 18px;
+    border-radius: 100%;
+    display: inline-block;
+    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
+    animation: bouncedelay 1.4s infinite ease-in-out;
+    -webkit-animation-fill-mode: both;
+    animation-fill-mode: both
+}
+
+#preloader-container .spinner-three-bounce .bounce1 {
+    -webkit-animation-delay: -.32s;
+    animation-delay: -.32s
+}
+
+#preloader-container .spinner-three-bounce .bounce2 {
+    -webkit-animation-delay: -.16s;
+    animation-delay: -.16s
+}
+
+@-webkit-keyframes bouncedelay {
+    0%,100%,80% {
+        -webkit-transform: scale(0)
+    }
+
+    40% {
+        -webkit-transform: scale(1)
+    }
+}
+
+@keyframes bouncedelay {
+    0%,100%,80% {
+        transform: scale(0);
+        -webkit-transform: scale(0)
+    }
+
+    40% {
+        transform: scale(1);
+        -webkit-transform: scale(1)
+    }
+}
+
+#preloader-container .spinner-dots {
+    width: 40px;
+    height: 40px;
+    position: absolute;
+    left: 50%;
+    top: 50%;
+    margin-left: -20px;
+    margin-top: -20px;
+    -webkit-animation: rotate 2s infinite linear;
+    animation: rotate 2s infinite linear
+}
+
+#preloader-container .spinner-dots .dot1,#preloader-container .spinner-dots .dot2 {
+    width: 60%;
+    height: 60%;
+    display: inline-block;
+    position: absolute;
+    top: 0;
+    border-radius: 100%;
+    -webkit-animation: bounce 2s infinite ease-in-out;
+    animation: bounce 2s infinite ease-in-out
+}
+
+#preloader-container .spinner-dots .dot2 {
+    top: auto;
+    bottom: 0;
+    -webkit-animation-delay: -1s;
+    animation-delay: -1s
+}
+
+@-webkit-keyframes rotate {
+    100% {
+        -webkit-transform: rotate(360deg)
+    }
+}
+
+@keyframes rotate {
+    100% {
+        transform: rotate(360deg);
+        -webkit-transform: rotate(360deg)
+    }
+}
+
+@-webkit-keyframes bounce {
+    0%,100% {
+        -webkit-transform: scale(0)
+    }
+
+    50% {
+        -webkit-transform: scale(1)
+    }
+}
+
+@keyframes bounce {
+    0%,100% {
+        transform: scale(0);
+        -webkit-transform: scale(0)
+    }
+
+    50% {
+        transform: scale(1);
+        -webkit-transform: scale(1)
+    }
+}
+
+#flownews-outer-wrap {
+    overflow: hidden
+}
+
+.flownews-wrap-container {
+    width: 1180px;
+    margin: 0 auto
+}
+
+.flownews-boxed #flownews-outer-wrap {
+    width: 1180px;
+    margin: 50px auto
+}
+
+.flownews-boxed .header-desktop .flownews-wrap-container {
+    width: 100%;
+    background: 0 0
+}
+
+.flownews-header-middle {
+    padding: 25px 0
+}
+
+.flownews-container {
+    padding: 50px
+}
+
+.flownews-container .col-xs-9 {
+    max-width: calc(75% - 50px);
+    max-width: -web-kit(75% - 50px);
+    width: 75%
+}
+
+.flownews-container.flownews-sidebar-left .col-xs-9 {
+    margin-left: 50px
+}
+
+.flownews-container.flownews-sidebar-right .col-xs-9 {
+    margin-right: 50px
+}
+
+.flownews-header-wrap .flownews-header-middle .flownews-banner-top-left {
+    text-align: left
+}
+
+.flownews-header-middle .flownews-banner-top,.flownews-header-wrap .flownews-header-middle .flownews-logo.flownews-logo-right {
+    text-align: right
+}
+
+.flownews-boxed .flownews-header-middle {
+    padding: 25px 50px
+}
+
+.flownews-boxed .flownews-footer-bottom {
+    padding: 0
+}
+
+.flownews-boxed .flownews-header-top .flownews-wrap-container .flownews-ticker.col-sm-6 {
+    padding-left: 0
+}
+
+.flownews-boxed .flownews-header-top .flownews-wrap-container {
+    padding: 0 50px
+}
+
+@media screen and (min-width: 1201px) {
+    .flownews-boxed .flownews-footer-bottom .flownews-wrap-container {
+        padding:0 50px
+    }
+}
+
+.flownews-header-middle .flownews-logo.col-sm-3 {
+    height: 100px;
+    line-height: 100px;
+    padding-left: 0
+}
+
+.flownews-header-middle .flownews-logo.col-sm-3 img {
+    max-height: 68px
+}
+
+.flownews-logo-center,nav ul {
+    text-align: center
+}
+
+.flownews-header-middle .flownews-banner-top .container_advertisement {
+    display: inline-block
+}
+
+.flownews-top-menu {
+    margin: 0;
+    padding: 0;
+    height: 32px;
+    line-height: 30px;
+    overflow: hidden
+}
+
+.flownews-top-menu li {
+    display: inline-block
+}
+
+.flownews-top-menu li a {
+    color: #fff;
+    font-size: 12px;
+    font-weight: 700;
+    letter-spacing: 1.5px;
+    padding: 0 0 0 25px;
+    text-transform: uppercase
+}
+
+.flownews-top-menu li:first-child a {
+    padding-left: 0
+}
+
+.flownews-top-menu li ul,.header-mobile {
+    display: none
+}
+
+.header-mobile .flownews-logo {
+    padding: 25px;
+    background: #282828
+}
+
+.header-mobile .flownews-logo img {
+    max-height: 50px
+}
+
+.header-mobile .news-ticker-item .news-ticker-item-title a {
+    color: #fff;
+    display: inline-block;
+    font-size: 12px;
+    font-weight: 400;
+    letter-spacing: 1.5px;
+    margin-left: 0;
+    text-transform: uppercase;
+    transition: color .3s ease 0s;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    width: 100%;
+    line-height: 32px
+}
+
+.menu-responsive li a,.menu-responsive li a:hover,nav li ul.submenu li a,nav li ul.submenu li a:hover,nav ul li a,nav ul li a:hover,nav ul>li a {
+    transition: all .3s ease 0s
+}
+
+.header-mobile .flownews-top-news-ticker .news-ticker-item .news-ticker-item-title {
+    width: 95%
+}
+
+.header-mobile .flownews-top-news-ticker .news-ticker-item .news-ticker-item-category {
+    display: none
+}
+
+.header-mobile .flownews-ticker {
+    background: #282828;
+    border-top: 1px solid #333;
+    display: inline-block;
+    padding: 10px 25px;
+    width: 100%
+}
+
+.header-mobile .flownews-top-news-ticker.owl-carousel .owl-stage-outer {
+    float: none;
+    width: 100%
+}
+
+@media screen and (max-width: 1180px) {
+    .flownews-boxed #flownews-outer-wrap,.flownews-one-page-wrap-container,.flownews-wrap-container {
+        width:100%
+    }
+
+    .flownews-boxed #flownews-outer-wrap {
+        margin: 0
+    }
+}
+
+.flownews-header-sticky {
+    display: none;
+    position: fixed;
+    top: 0;
+    width: 100%;
+    background: #282828;
+    z-index: 99999999;
+    left: 0;
+    border-bottom: 2px solid #e7685d
+}
+
+nav ul li,nav>ul {
+    display: inline-block
+}
+
+.flownews-header-sticky .flownews-wrap-container {
+    background: #282828
+}
+
+nav ul li a:hover,nav ul li.current_page_item {
+    background: #e7685d
+}
+
+.flownews-header-sticky nav>ul {
+    border-left: 0;
+    float: right;
+    margin: 0;
+    border-right: 0!important
+}
+
+.flownews-header-sticky .flownews-logo.col-sm-2 {
+    padding-left: 0;
+    padding-top: 0;
+    line-height: 50px
+}
+
+.flownews-header-sticky .flownews-header-bottom .flownews-menu {
+    height: auto
+}
+
+.flownews-header-sticky nav ul>li a {
+    padding: 20px 25px
+}
+
+nav,nav ul {
+    padding: 0
+}
+
+.flownews-logo.flownews-logo-right img {
+    max-height: 30px
+}
+
+.flownews-header-sticky .flownews-header-bottom {
+    position: relative
+}
+
+.flownews-header-sticky .flownews-logo,.flownews-header-sticky .flownews-menu {
+    position: static
+}
+
+nav ul {
+    margin: 0
+}
+
+.flownews-header-bottom.flownews-wrap-container {
+    border: 0!important
+}
+
+nav>ul {
+    margin: 0 50px;
+    text-align: left;
+    border-left: 1px solid #333
+}
+
+.flownews-header-bottom .flownews-menu {
+    height: 44px;
+    padding: 0
+}
+
+nav ul li {
+    float: left
+}
+
+nav ul li a,nav ul li a:hover {
+    color: #fff
+}
+
+nav ul>li a {
+    font-weight: 700;
+    padding: 15px 25px;
+    text-transform: uppercase;
+    display: block
+}
+
+nav li a {
+    letter-spacing: 2px
+}
+
+nav li {
+    position: relative
+}
+
+nav i {
+    font-size: 11px
+}
+
+.flownews-fullwidth nav>ul {
+    margin-left: 0
+}
+
+.flownews-fullwidth .flownews-search-menu-button {
+    margin-right: 0
+}
+
+.submenu,ul.submenu {
+    display: none;
+    border: 1px solid #f4f4f4;
+    border-top: 2px solid #e7685d
+}
+
+ul.submenu .submenu {
+    margin-left: -1px;
+    margin-top: -1px;
+    border-top: 1px solid #f4f4f4
+}
+
+ul.submenu li:first-child .submenu {
+    border-top: 1px solid #e7685d
+}
+
+nav li:hover>.submenu,nav li:hover>ul.submenu {
+    display: block;
+    position: absolute;
+    text-align: left;
+    z-index: 99999999
+}
+
+nav li ul.submenu li a {
+    font-size: 12px;
+    color: #333;
+    font-weight: 700
+}
+
+nav li ul.submenu li a:hover {
+    color: #fff
+}
+
+nav li ul.submenu li {
+    background: #fff;
+    border-bottom: 1px solid #f4f4f4
+}
+
+nav li ul.submenu li:last-child {
+    border-bottom: 0
+}
+
+nav li:hover ul.submenu li {
+    width: 230px;
+    display: block;
+    margin: 0
+}
+
+nav li:hover ul.submenu li a {
+    padding: 15px 10px;
+    display: block;
+    text-transform: uppercase
+}
+
+nav li:hover>ul.submenu>li:hover>ul.submenu {
+    display: block;
+    left: 231px;
+    top: 0
+}
+
+.menu-responsive {
+    display: none;
+    position: fixed;
+    top: 0;
+    width: 100%;
+    height: 100%;
+    z-index: 90;
+    overflow: auto;
+    left: 0
+}
+
+.close-menu-responsive,.open-menu-responsive {
+    position: fixed;
+    right: 25px;
+    top: 25px;
+    z-index: 9999999;
+    font-size: 24px;
+    color: #fff;
+    cursor: pointer;
+    background: #e7685d;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px
+}
+
+.close-menu-responsive {
+    display: none
+}
+
+.menu-responsive ul {
+    margin: 0;
+    padding: 0;
+    text-align: center
+}
+
+.menu-responsive>ul {
+    padding-top: 100px;
+    border-bottom: 2px solid #e7685d
+}
+
+.menu-responsive ul>li a {
+    padding: 12px 25px;
+    display: block
+}
+
+.menu-responsive li a {
+    letter-spacing: 1.5px;
+    color: #333;
+    text-align: left
+}
+
+.menu-responsive li a:hover {
+    color: #e7685d
+}
+
+.header-mobile .menu-responsive-container .submenu {
+    border: 1px solid #f4f4f4;
+    border-bottom: 0
+}
+
+.menu-responsive li:hover ul.submenu li li a {
+    margin-left: 50px
+}
+
+.header-mobile .menu-responsive-container .submenu li .submenu li {
+    padding-left: 0
+}
+
+.header-mobile .menu-responsive-container .submenu li:last-child {
+    border-bottom: 0
+}
+
+.menu-responsive li {
+    background: #f4f4f4;
+    border-bottom: 1px solid #fff;
+    position: relative
+}
+
+.menu-responsive li:last-child {
+    border-bottom: 0
+}
+
+.header-mobile .menu-responsive-container .submenu .submenu {
+    padding-left: 0;
+    border-left: 0;
+    border-right: 0
+}
+
+.header-mobile .menu-responsive-container .flownewsicon.fa-angle-down,.header-mobile .menu-responsive-container .flownewsicon.fa-angle-up {
+    float: right;
+    width: 40px;
+    height: 20px;
+    position: absolute;
+    z-index: 9999;
+    right: 10px;
+    top: 10px;
+    text-align: right
+}
+
+.header-mobile .menu-responsive-container .flownewsicon.fa-angle-up {
+    display: none
+}
+
+.menu-responsive i {
+    font-size: 11px
+}
+
+.menu-responsive li ul.submenu li a {
+    margin-left: 25px
+}
+
+.flownews-menu>li.menu-item-has-children>a:after,.submenu>li.menu-item-has-children>a:after {
+    font-style: normal;
+    font-weight: 400;
+    text-transform: none;
+    line-height: 1
+}
+
+.flownews-menu>li.menu-item-has-children>a:after {
+    content: "\f107";
+    float: right;
+    font-size: 14px;
+    margin-left: 10px
+}
+
+.submenu>li.menu-item-has-children>a:after {
+    content: "\f105";
+    font-size: 12px;
+    margin-left: 10px
+}
+
+.flownews-menu .menu-item-object-category {
+    position: static
+}
+
+.flownews-menu .menu-item-object-category .flownews-mega-menu {
+    width: 1180px;
+    left: 0;
+    background: #FFF;
+    border-bottom: 1px solid #e7685d
+}
+
+.flownews-mega-menu .article-image a {
+    padding: 0
+}
+
+.flownews-mega-menu .flownews-element-posts article {
+    padding: 0 12.5px
+}
+
+.flownews-mega-menu .flownews-menu-element-posts-container {
+    margin-left: -12.5px;
+    padding: 25px;
+    width: calc(100% + 25px)
+}
+
+.flownews-mega-menu .flownews-menu-element-posts-container .article-title a:hover {
+    color: #e7685d;
+    background: 0 0;
+    transition: all .3s ease 0s
+}
+
+.flownews-mega-menu .flownews-menu-category-all-category-posts a {
+    padding: 0
+}
+
+.flownews-mega-menu .flownews-menu-category-all-category-posts i {
+    margin: 0;
+    padding: 8px 6px 6px 8px;
+    font-size: 12px;
+    line-height: 1;
+    background: #e7685d;
+    color: #fff
+}
+
+.flownews-menu-category-all-category-posts {
+    border-top: 1px solid #f4f4f4
+}
+
+.flownews-menu-category-all-category-posts .flownews-link-menu-category {
+    text-align: right;
+    float: right;
+    display: block;
+    padding: 15px 25px
+}
+
+.flownews-menu-category-all-category-posts .flownews-link-menu-category a {
+    display: inline-block;
+    color: #333;
+    transition: all .3s ease 0s
+}
+
+.flownews-mega-menu .flownews-element-posts.owl-carousel.owl-theme article .article-title a:hover,.flownews-menu-category-all-category-posts .flownews-link-menu-category:hover a:first-child {
+    color: #e7685d;
+    background: 0 0;
+    transition: all .3s ease 0s
+}
+
+.flownews-menu-category-all-category-posts .flownews-link-menu-category a:first-child {
+    font-size: 12px;
+    margin-right: -4px;
+    padding: 8px 12px 6px
+}
+
+.flownews-mega-menu .flownews-menu-category.owl-carousel {
+    padding: 25px
+}
+
+.flownews-mega-menu .flownews-menu-category.owl-carousel.owl-theme .owl-controls .owl-nav {
+    margin-top: 25px;
+    text-align: left
+}
+
+.flownews-mega-menu .flownews-menu-category.owl-carousel.owl-theme .owl-controls .owl-nav [class*=owl-] {
+    border: 1px solid #f4f4f4;
+    font-size: 14px;
+    padding: 7px 11px
+}
+
+.flownews-mega-menu .flownews-menu-category.owl-carousel.owl-theme .owl-controls .owl-nav i {
+    margin: 0
+}
+
+.flownews-mega-menu .flownews-menu-category.owl-carousel.owl-theme .owl-controls .owl-nav .owl-prev {
+    margin-right: 4px;
+    transition: all .3s ease 0s
+}
+
+.flownews-mega-menu .flownews-menu-category.owl-carousel.owl-theme .owl-controls .owl-nav .owl-next {
+    transition: all .3s ease 0s
+}
+
+.flownews-mega-menu .flownews-element-posts.owl-carousel.owl-theme article {
+    padding: 0
+}
+
+.flownews-mega-menu .flownews-menu-category.owl-carousel.owl-theme .owl-controls .owl-nav .owl-next:hover,.flownews-mega-menu .flownews-menu-category.owl-carousel.owl-theme .owl-controls .owl-nav .owl-prev:hover {
+    background: #e7685d;
+    border: 1px solid #e7685d;
+    color: #fff;
+    transition: all .3s ease 0s
+}
+
+.flownews-menu .menu-item-object-category .flownews-menu-category {
+    margin: 0;
+    position: relative;
+    width: 100%
+}
+
+.flownews-menu .flownews-menu-category.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-3 {
+    width: 25%
+}
+
+.flownews-menu-category.flownews-element-posts .article-data {
+    margin-right: 10px
+}
+
+.flownews-menu-category.flownews-element-posts .article-comments {
+    margin-left: 10px
+}
+
+.flownews-menu .flownews-element-posts .article-title a {
+    color: #333;
+    font-size: 18px;
+    padding: 0
+}
+
+.flownews-search {
+    letter-spacing: 2px;
+    padding: 0;
+    text-align: center
+}
+
+input[type=search] {
+    -webkit-appearance: none;
+    border: 0;
+    font-size: 14px;
+    font-weight: 100;
+    letter-spacing: .5px
+}
+
+.flownews-search button {
+    background: #e7685d;
+    border: 0;
+    float: right;
+    padding: 0;
+    transition: all .3s ease 0s
+}
+
+.flownews-search button:hover {
+    background: #c9564c;
+    transition: all .3s ease 0s
+}
+
+.flownews-search .form-group-search input {
+    background: 0 0;
+    float: left;
+    height: 35px;
+    margin-left: 12px
+}
+
+.flownewsicon.fa-close,.flownewsicon.fa-search:focus,.flownewsicon.fa-search:hover {
+    background: #e7685d;
+    transition: all .3s ease 0s
+}
+
+.flownewsicon.fa-close,.flownewsicon.fa-search {
+    color: #fff;
+    font-size: 14px;
+    padding: 15px 16px;
+    cursor: pointer;
+    transition: all .3s ease 0s
+}
+
+.flownewsicon.fa-close {
+    padding: 15px 17px
+}
+
+.flownews-search-menu-button {
+    border-right: 1px solid #333;
+    margin-right: 50px;
+    text-align: right
+}
+
+.flownews-search form {
+    border: 1px solid #f4f4f4;
+    background: #fff;
+    margin-right: 50px;
+    margin-top: 2px;
+    position: absolute;
+    right: 0;
+    width: 300px;
+    padding: 20px;
+    top: 45px;
+    display: none;
+    z-index: 9999999999
+}
+
+.form-group-search {
+    background: #f4f4f4;
+    height: 35px
+}
+
+.search-btn .flownewsicon.fa-search {
+    padding: 9.5px 9px 11px 11px
+}
+
+.flownews-header-bottom .flownews-search-container {
+    padding: 0
+}
+
+.flownewsicon.search-close-form {
+    display: none
+}
+
+.post-text {
+    line-height: 24px
+}
+
+.post-text h2 {
+    margin: 40px 0 20px
+}
+
+.flownews-title-page-container {
+    border-bottom: 1px solid #f4f4f4;
+    border-right: 1px solid #e7685d;
+    border-top: 1px solid #f4f4f4;
+    height: 35px;
+    margin: 0 0 25px;
+    position: relative;
+    text-align: left
+}
+
+.flownews-title-page {
+    background: #e7685d;
+    color: #fff;
+    display: inline-block;
+    font-size: 14px;
+    font-weight: 600;
+    height: calc(100% + 2px);
+    height: -webkit-calc(100% + 2px);
+    left: 0;
+    letter-spacing: 1.5px;
+    padding: 10px;
+    position: absolute;
+    text-transform: uppercase;
+    top: -1px;
+    max-width: 95%;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    transition: color .3s ease 0s
+}
+
+.flownews-category-description {
+    background: #f4f4f4;
+    margin-bottom: 50px;
+    padding: 17px 25px
+}
+
+.author-post-container .author-post {
+    background: #f4f4f4;
+    margin-bottom: 50px;
+    padding: 15px
+}
+
+.author-post-container .author-image .avatar {
+    float: left;
+    margin-right: 15px;
+    width: 20%
+}
+
+.author-post-container .author-name a {
+    color: #333;
+    display: block;
+    font-size: 18px;
+    font-weight: 700;
+    letter-spacing: .5px;
+    margin-bottom: 5px;
+    text-transform: uppercase
+}
+
+.author-post-container .author-info {
+    padding: 10px 0 0
+}
+
+.author-post-container .author-description {
+    color: #747474;
+    font-weight: 300;
+    letter-spacing: .5px;
+    line-height: 22px;
+    margin: 0 0 15px;
+    display: block
+}
+
+.author-post-container .author-social i {
+    color: #333;
+    margin-right: 15px
+}
+
+.text.attachment-container {
+    margin-top: 25px
+}
+
+.text.attachment-container span {
+    display: block;
+    margin-bottom: 10px
+}
+
+.not-found h2 {
+    font-weight: 400;
+    margin-bottom: 25px
+}
+
+.not-found p {
+    font-size: 16px
+}
+
+.not-found .search-form {
+    margin-top: 15px;
+    width: 100%
+}
+
+.not-found .search-form label {
+    width: 49%
+}
+
+.not-found .screen-reader-text {
+    float: left;
+    padding-right: 15px;
+    width: 24%;
+    line-height: 33px;
+    font-weight: 400
+}
+
+.not-found input {
+    border: 1px solid #f4f4f4;
+    font-weight: 100;
+    height: 35px;
+    padding: 5px 7px;
+    text-align: left;
+    width: 76%
+}
+
+.not-found input.search-submit {
+    background: #e7685d;
+    color: #fff;
+    font-weight: 700;
+    height: 35px;
+    text-align: center;
+    transition: all .3s ease 0s;
+    width: 10%
+}
+
+.not-found input.search-submit:hover {
+    background: #c9564c!important;
+    transition: all .3s ease 0s
+}
+
+.search-not-found form {
+    margin-top: 20px
+}
+
+.search-not-found input {
+    border: inherit
+}
+
+@media screen and (min-width: 500px) and (max-width:700px) {
+    .flownews-posts-content-wrap.flownews-post-layout1 .article-info-top h2,.flownews-posts-image-wrap .flownews-wrap-container .article-info-top h2 {
+        margin-bottom:15px
+    }
+
+    .flownews-wrap-container .flownews-post-title-page .article-info-top h2 {
+        line-height: 40px
+    }
+}
+
+@media screen and (max-width: 499px) {
+    .flownews-post-title-page .article-info-bottom,.flownews-posts-content-wrap.flownews-post-layout1 .article-info-bottom,.flownews-posts-image-wrap .flownews-wrap-container .article-info-bottom {
+        display:none
+    }
+
+    .flownews-wrap-container .flownews-post-title-page .article-info-top h2 {
+        line-height: 40px
+    }
+}
+
+.flownews-posts-content-wrap:after {
+    clear: both;
+    content: "";
+    display: block
+}
+
+.flownews-posts-content-wrap {
+    background-position: center
+}
+
+.flownews-posts-content-wrap article {
+    line-height: 1;
+    height: 500px;
+    overflow: hidden;
+    position: relative
+}
+
+.flownews-posts-content-wrap article h2 {
+    line-height: 1
+}
+
+.flownews-posts-content-wrap .article-info {
+    position: absolute;
+    z-index: 2;
+    margin-left: 0;
+    transition: all .4s ease 0s;
+    right: 30px;
+    max-width: calc(100% - 45px);
+    max-width: -webkit-calc(100% - 45px);
+    width: 100%
+}
+
+.flownews-posts-content-wrap .header-pattern {
+    background: rgba(0,0,0,.5);
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    z-index: 1
+}
+
+.flownews-posts-content-wrap article img {
+    opacity: 1;
+    transition: all .4s ease 0s
+}
+
+.flownews-posts-content-wrap article:hover img {
+    opacity: .8;
+    transition: all .4s ease 0s
+}
+
+.flownews-posts-content-wrap .article-info-top {
+    margin-bottom: 15px
+}
+
+.flownews-posts-content-wrap .article-title {
+    margin: 0 25px 0 0;
+    line-height: 30px
+}
+
+.flownews-posts-content-wrap .article-title a,.flownews-posts-image-wrap .article-title a {
+    color: #fff;
+    font-weight: 700;
+    text-transform: uppercase;
+    font-size: 30px;
+    display: block
+}
+
+.flownews-posts-content-wrap .article-title a:hover,.flownews-posts-image-wrap .article-title a:hover {
+    color: #e7685d
+}
+
+.flownews-posts-content-wrap .article-category,.flownews-posts-image-wrap .article-category {
+    line-height: 30px;
+    float: left
+}
+
+.flownews-posts-content-wrap .article-category a,.flownews-posts-image-wrap .article-category a {
+    background: #e7685d;
+    color: #fff;
+    font-size: 10px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    padding: 6px 10px;
+    text-transform: uppercase;
+    display: block;
+    line-height: 1;
+    margin-top: 4px
+}
+
+.flownews-posts-content-wrap .article-category a:hover,.flownews-posts-image-wrap .article-category a:hover {
+    background: #c9564c
+}
+
+.article-info.flownews-post-title-page .article-comments,.article-info.flownews-post-title-page .article-data,.article-info.flownews-post-title-page .article-features-category,.flownews-posts-image-wrap .article-comments,.flownews-posts-image-wrap .article-data,.flownews-posts-image-wrap .article-features-category {
+    display: inline-block;
+    margin: 0
+}
+
+.article-info.flownews-post-title-page .article-separator,.flownews-posts-image-wrap .article-separator {
+    display: inline-block;
+    margin: 0 20px
+}
+
+.flownews-posts-content-wrap .article-data {
+    margin-right: 20px
+}
+
+.article-info.flownews-post-title-page {
+    text-align: center;
+    margin-bottom: 50px
+}
+
+.article-info.flownews-post-title-page .article-info-top h2 {
+    margin-bottom: 15px;
+    font-size: 40px;
+    color: #333
+}
+
+.flownews-wrap-container .article-info-top h2 {
+    color: #fff;
+    margin-bottom: 15px;
+    margin-right: 0;
+    font-size: 40px;
+    line-height: 1.2
+}
+
+.flownews-element-top-content.flownews-top-content-layout1 .article-info-top h2,.flownews-element-top-content.flownews-top-content-layout2 .article-info-top h2 {
+    margin-right: 10px;
+    margin-bottom: 0
+}
+
+.flownews-posts-content-wrap .article-info-bottom,.flownews-posts-image-wrap .article-info-bottom {
+    color: #fff;
+    font-size: 13px;
+    letter-spacing: .4px
+}
+
+.article-info.flownews-post-title-page .article-info-bottom {
+    color: #646464;
+    font-size: 13px;
+    letter-spacing: .4px
+}
+
+.article-info.flownews-post-title-page .article-info-bottom i,.flownews-posts-content-wrap .article-info-bottom i,.flownews-posts-image-wrap .article-info-bottom i {
+    margin-right: 10px
+}
+
+.flownews-posts-content-wrap .article-info-bottom a,.flownews-posts-image-wrap .article-info-bottom a {
+    color: #FFF
+}
+
+.article-info.flownews-post-title-page .article-info-bottom a {
+    color: #333;
+    margin-right: 10px
+}
+
+.article-info.flownews-post-title-page .article-info-bottom a:hover,.flownews-posts-content-wrap .article-info-bottom a:hover,.flownews-posts-image-wrap .article-info-bottom a:hover {
+    color: #e7685d
+}
+
+.flownews-posts-content-wrap {
+    height: 500px;
+    overflow: hidden;
+    position: relative;
+    background-size: cover;
+    background-repeat: no-repeat;
+    margin-bottom: 0
+}
+
+.flownews-posts-content-wrap .article-info {
+    top: 50%;
+    left: 50%;
+    bottom: inherit;
+    -webkit-transform: translate(-51%,-51%);
+    -moz-transform: translate(-50%,-50%);
+    -ms-transform: translate(-50%,-50%);
+    -o-transform: translate(-50%,-50%);
+    transform: translate(-50%,-50%);
+    text-align: center;
+    text-transform: uppercase;
+    zoom:103%}
+
+.flownews-posts-content-wrap article:hover .article-info {
+    transition: all .4s ease 0s;
+    left: 50%
+}
+
+.flownews-posts-content-wrap .article-comments,.flownews-posts-content-wrap .article-data,.flownews-posts-content-wrap .article-features-category,.flownews-posts-content-wrap .article-separator,.flownews-posts-content-wrap .article-title {
+    float: none;
+    display: inline-block
+}
+
+.flownews-posts-content-wrap .article-comments {
+    margin-left: 20px;
+    margin-right: 20px
+}
+
+.flownews-posts-content-wrap .article-features-category {
+    margin-left: 20px
+}
+
+.flownews-post-layout2,.flownews-post-layout3 {
+    position: relative;
+    margin-bottom: 50px;
+    max-height: 500px;
+    overflow: hidden
+}
+
+.flownews-post-layout2 img,.flownews-post-layout3 img {
+    z-index: 1;
+    position: relative
+}
+
+.flownews-post-layout2 .flownews-wrap-container,.flownews-post-layout3 .flownews-wrap-container {
+    top: 50%;
+    left: 50%;
+    bottom: inherit;
+    -webkit-transform: translate(-50%,-50%);
+    -moz-transform: translate(-50%,-50%);
+    -ms-transform: translate(-50%,-50%);
+    -o-transform: translate(-50%,-50%);
+    transform: translate(-50%,-50%);
+    text-align: center;
+    text-transform: uppercase;
+    position: absolute;
+    z-index: 999;
+    width: 100%;
+    background: 0 0
+}
+
+.flownews-posts-image-wrap.flownews-post-layout2 .header-pattern,.flownews-posts-image-wrap.flownews-post-layout3 .header-pattern {
+    background: rgba(0,0,0,.5);
+    height: 100%;
+    left: 0;
+    position: absolute;
+    top: 0;
+    width: 100%;
+    z-index: 1
+}
+
+.tags-links {
+    letter-spacing: .5px
+}
+
+.tags-links>a {
+    color: #282828;
+    font-weight: 700;
+    margin-left: 3px;
+    transition: color .3s ease 0s
+}
+
+.tags-links>a:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.flownews-post .social-post {
+    line-height: .5;
+    overflow: hidden
+}
+
+.flownews-post .social-post .container-social {
+    display: inline-block;
+    position: relative
+}
+
+.flownews-post .social-post .container-social:after,.flownews-post .social-post .container-social:before {
+    content: "";
+    position: absolute;
+    height: 5px;
+    border-bottom: 1px solid #F4F4F4;
+    top: 12px;
+    width: 600px
+}
+
+.flownews-post .social-post .container-social:before {
+    right: 100%;
+    margin-right: 35px
+}
+
+.flownews-post .social-post .container-social:after {
+    left: 100%;
+    margin-left: 35px
+}
+
+.flownews-post .social-post a {
+    border: 1px solid #f4f4f4;
+    color: #e7685d;
+    display: inline-block;
+    height: 35px;
+    line-height: 32px;
+    margin: 0 15px;
+    width: 35px;
+    transition: all .3s ease 0s
+}
+
+.flownews-post .social-post a i {
+    line-height: 32px
+}
+
+.flownews-post .social-post a:hover {
+    border: 1px solid #e7685d;
+    background: #e7685d;
+    color: #fff;
+    transition: all .3s ease 0s
+}
+
+.flownews-post .social-post a:first-child {
+    margin-left: 0
+}
+
+.flownews-post .social-post a:last-child {
+    margin-right: 0
+}
+
+.flownews-post .social-post {
+    margin: 50px 0;
+    text-align: center
+}
+
+.navigation-post {
+    margin-bottom: 50px;
+    height: 60px
+}
+
+.navigation-post .prev-post {
+    border: 1px solid #f4f4f4;
+    border-left: 0;
+    float: left;
+    height: 60px;
+    width: 50%;
+    position: relative
+}
+
+.navigation-post .next-post {
+    border: 1px solid #f4f4f4;
+    border-right: 0;
+    float: left;
+    height: 60px;
+    width: 50%;
+    position: relative;
+    text-align: right
+}
+
+.navigation-post .prev-post img {
+    height: calc(100% + 2px);
+    margin-top: -1px;
+    display: inline-block
+}
+
+.navigation-post .next-post img {
+    height: calc(100% + 2px);
+    margin-top: -1px;
+    display: inline-block;
+    float: right
+}
+
+.navigation-post .next,.navigation-post .prev {
+    display: inline-block;
+    height: 60px;
+    width: calc(100% - 60px)
+}
+
+.navigation-post .prev {
+    padding: 8px 0 8px 25px;
+    position: absolute
+}
+
+.navigation-post .next {
+    padding: 8px 25px 8px 0
+}
+
+.navigation-post .next-post-text,.navigation-post .prev-post-text {
+    color: #ccc;
+    display: block;
+    margin-bottom: 10px;
+    transition: all .3s ease 0s
+}
+
+.navigation-post .next-post-text:hover,.navigation-post .prev-post-text:hover {
+    color: #333;
+    transition: all .3s ease 0s
+}
+
+.navigation-post .prev-post-text i {
+    color: #333;
+    font-size: 16px;
+    margin-right: 10px
+}
+
+.navigation-post .next-post-text i {
+    color: #333;
+    font-size: 16px;
+    margin-left: 10px
+}
+
+.navigation-post .name-post {
+    color: #333;
+    font-weight: 700;
+    letter-spacing: 1px;
+    text-transform: uppercase;
+    transition: all .3s ease 0s;
+    white-space: nowrap;
+    width: 100%;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    display: block
+}
+
+.navigation-post .next-post .name-post {
+    padding-left: 20px
+}
+
+.navigation-post .prev-post .name-post {
+    padding-right: 20px
+}
+
+.navigation-post .name-post:hover {
+    color: #e7685d;
+    transition: all .3s ease 0s
+}
+
+.related-item-container.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts {
+    border-top: 0;
+    padding-top: 0;
+    margin-top: 0;
+    margin-bottom: 25px
+}
+
+.related-item-container.flownews-element-posts .owl-controls i {
+    margin-right: 0
+}
+
+@media screen and (max-width: 1000px) {
+    .navigation-post .name-post {
+        overflow:hidden;
+        text-overflow: ellipsis;
+        white-space: nowrap;
+        width: 80%;
+        display: block
+    }
+
+    .navigation-post .next-post .name-post {
+        float: right
+    }
+
+    .flownews-footer-wrap .flownews-footer-bottom .flownews-wrap-container .col-xs-4 {
+        padding: 10px;
+        text-align: center
+    }
+
+    .flownews-footer-bottom .flownews-wrap-container .col-xs-4 .flownews-top-menu li:first-child a {
+        padding-left: 0
+    }
+
+    .flownews-header-wrap .flownews-top-menu {
+        display: none
+    }
+
+    .flownews-header-wrap .flownews-date.col-sm-3 {
+        border-right: 0 none;
+        float: right;
+        width: 30%
+    }
+
+    .flownews-header-wrap .flownews-header-top .flownews-ticker.col-sm-6 {
+        width: 70%
+    }
+
+    .flownews-header-middle {
+        padding: 25px
+    }
+
+    .flownews-header-wrap .flownews-header-middle .flownews-banner-top {
+        float: none;
+        width: 100%;
+        text-align: center
+    }
+
+    .flownews-header-wrap .flownews-header-middle .flownews-wrap-container .flownews-logo {
+        height: auto;
+        line-height: 0;
+        margin-top: 25px;
+        text-align: center;
+        width: 100%
+    }
+}
+
+@media screen and (max-width: 850px) {
+    .flownews-posts-content-wrap .item-header {
+        height:300px;
+        overflow: hidden
+    }
+
+    .flownews-posts-content-wrap .article-title a {
+        font-size: 16px
+    }
+
+    .flownews-posts-content-wrap .article-info-bottom {
+        font-size: 12px
+    }
+
+    .flownews_widget.fnwp_mega_posts .container_post .img-post.ad_one_third,.flownews_widget.fnwp_tab .img-post.ad_one_third {
+        height: auto;
+        margin: 0
+    }
+
+    .flownews_widget.fnwp_mega_posts .box_post .container_post .img-post.ad_one_third {
+        width: 100%;
+        max-width: 100%;
+        float: none
+    }
+
+    .flownews_widget.fnwp_mega_posts .box_post .container_post.ad_one_one .box-info.ad_two_third {
+        box-sizing: border-box;
+        padding-left: 0;
+        width: 100%;
+        max-width: 100%
+    }
+
+    .flownews_widget.fnwp_mega_posts .box_post,.widget.flownews_widget.fnwp_tab .box_post {
+        margin-bottom: 25px
+    }
+
+    .flownews_widget.fnwp_social.flownews_widget .box-icon-social.ad_one_third {
+        width: calc(50% - 6px)
+    }
+
+    .widget_fnwp_social.flownews_widget.fnwp_social .box-icon-social.ad_one_third:nth-child(4) {
+        margin-bottom: 6px
+    }
+
+    .fnwp-widget.flownews_widget.fnwp_tab h3.widget-title {
+        height: 98px
+    }
+
+    .fnwp-widget.flownews_widget.fnwp_tab .fnwp-title-widget {
+        padding: 0
+    }
+
+    .fnwp_tab .widget-title .fnwp-title-widget span {
+        display: block;
+        margin-bottom: 2px
+    }
+
+    .flownews-vc-element-posts-carousel .article-info-top .article-comments,.flownews-vc-element-posts-carousel .article-info-top .article-separator,.flownews_widget.fnwp_slider_posts .box-text .data {
+        display: none
+    }
+
+    .flownews_widget.fnwp_tab .container_post .img-post.ad_one_third {
+        float: none;
+        height: 100%;
+        width: 100%
+    }
+
+    .flownews_widget.fnwp_tab .box_post .container_post.ad_one_one .box-info.ad_two_third {
+        box-sizing: border-box;
+        padding-left: 0;
+        width: 100%
+    }
+
+    .flownews_widget.fnwp_slider_posts .box-text .box-padding {
+        padding: 10px
+    }
+
+    .flownews_widget.fnwp_slider_posts .box-text .category a {
+        margin-bottom: 10px
+    }
+
+    .flownews_widget.fnwp_slider_posts .box-text .box-padding h3 a {
+        font-size: 14px
+    }
+
+    .flownews-sidebar .widget.widget_search .search-form label,.flownews-sidebar .widget_search .search-form .search-submit,.wpb_wrapper .widget.widget_search .search-form label,.wpb_wrapper .widget_search .search-form .search-submit {
+        width: 100%
+    }
+
+    .flownews-footer-bottom .flownews-wrap-container .col-xs-4 {
+        padding: 15px;
+        text-align: center!important
+    }
+
+    .navigation-post .next-post,.navigation-post .prev-post {
+        width: 100%
+    }
+
+    .navigation-post .next-post {
+        margin-top: 10px
+    }
+
+    .navigation-post {
+        height: auto
+    }
+
+    .flownews-vc-element-posts-carousel.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts {
+        border-top: 0;
+        margin-top: 0;
+        padding-top: 0;
+        margin-bottom: 25px
+    }
+
+    .flownews-vc-element-posts-carousel .article-info-top .article-data {
+        margin-right: 0
+    }
+
+    #commentform.comment-form .form-submit {
+        width: 50%
+    }
+}
+
+@media screen and (min-width: 500px) and (max-width:700px) {
+    .fnwp_tab .widget-title .fnwp-title-widget span {
+        display:inline-block;
+        margin-bottom: 0;
+        margin-right: 2px
+    }
+
+    .fnwp-widget.flownews_widget.fnwp_tab h3.widget-title {
+        height: 31px
+    }
+
+    .flownews_widget.fnwp_mega_posts .mega-posts .box_post,.widget.fnwp-widget.flownews_widget.fnwp_tab .box_post {
+        display: inline-block;
+        margin: 0 0 25px 25px;
+        padding: 0;
+        width: calc(50% - 25px)
+    }
+
+    .widget.fnwp-widget.flownews_widget.fnwp_tab .fnwp-tab-container.fnwp-tag.box_tag .box_post {
+        display: inline-block;
+        margin: 0 0 0 25px;
+        padding: 0;
+        width: 100%
+    }
+
+    .widget.fnwp-widget.flownews_widget.fnwp_tab .fnwp-tab-container.box_tag {
+        margin-left: 0
+    }
+
+    .fnwp_mega_posts .mega-posts,.fnwp_tab .fnwp-tab-container {
+        font-size: 0;
+        margin-left: -25px
+    }
+
+    .fnwp-widget.flownews_widget.fnwp_mega_posts .box_post:last-child,.widget.fnwp-widget.flownews_widget.fnwp_tab .box_post:last-child {
+        border-bottom: 1px solid #f4f4f4
+    }
+
+    .widget.flownews_widget.fnwp_social .box_social .box-icon-social.ad_one_third {
+        height: 130px
+    }
+
+    .widget.flownews_widget.fnwp_social .flownews-widget-social-style1 .box-icon-social a {
+        font-size: 30px;
+        margin-left: -15px;
+        margin-top: -15px
+    }
+
+    .widget.flownews_widget.fnwp_social .box-icon-social a {
+        font-size: 30px
+    }
+
+    .flownews-header-wrap .flownews-top-menu {
+        display: block
+    }
+}
+
+@media screen and (min-width: 1024px) and (max-width:1200px) {
+    .flownews-header-middle {
+        padding:25px
+    }
+
+    .flownews-footer-bottom .flownews-wrap-container {
+        padding: 0 50px
+    }
+}
+
+@media screen and (max-width: 1024px) {
+    .no-js .flownews-top-news-ticker.owl-carousel {
+        margin-bottom:0
+    }
+
+    .flownews-top-news-ticker.owl-theme .owl-controls,.header-desktop {
+        display: none
+    }
+
+    .header-mobile {
+        display: block
+    }
+
+    .flownews-header-sticky {
+        display: none!important
+    }
+
+    .flownews-header-wrap-container.header-mobile {
+        background: #282828
+    }
+
+    .flownews-menu>li.menu-item-has-children>a::after {
+        color: #333
+    }
+
+    ul.submenu li:first-child .submenu {
+        border-top: 1px solid #f4f4f4
+    }
+
+    .flownews-header-wrap-container .flownews-header-top .flownews-wrap-container {
+        height: auto
+    }
+
+    .flownews-header-top .flownews-wrap-container .flownews-ticker.col-sm-6 {
+        display: block;
+        width: 98%;
+        border: 0
+    }
+
+    .flownews-wrap-container .flownews-date.col-sm-3,.flownews-wrap-container .flownews-top-menu.col-sm-3 {
+        border: 0;
+        height: auto;
+        padding: 10px;
+        width: 100%;
+        border-top: 1px solid #282828
+    }
+
+    .flownews-top-news-ticker .news-ticker-item .news-ticker-item-category {
+        width: 24%
+    }
+
+    .flownews-top-news-ticker .news-ticker-item .news-ticker-item-title {
+        width: 76%
+    }
+
+    .flownews-top-news-ticker .news-ticker-item-date,.flownews-top-news-ticker .owl-nav i {
+        display: none
+    }
+
+    .flownews-header-top .flownews-top-news-ticker.owl-carousel .owl-stage-outer {
+        width: 100%
+    }
+
+    .flownews-top-news-ticker .news-ticker-item-title a {
+        margin-left: 10px;
+        text-align: left
+    }
+
+    .flownews-header-middle {
+        padding: 25px
+    }
+
+    .flownews-header-wrap-container .flownews-header-middle .flownews-wrap-container .flownews-logo {
+        text-align: center
+    }
+}
+
+@media screen and (max-width: 700px) {
+    .flownews-container>.col-xs-3,.flownews-container>.col-xs-9 {
+        position:relative!important
+    }
+
+    .flownews-posts-content-wrap .item-header {
+        height: 200px;
+        overflow: hidden
+    }
+
+    .flownews-posts-content-wrap,.navigation-post {
+        height: auto
+    }
+
+    .flownews-posts-content-wrap .article-title a {
+        font-size: 13px
+    }
+
+    .flownews-posts-content-wrap .article-info-bottom {
+        font-size: 10px
+    }
+
+    .flownews-posts-content-wrap .article-info-bottom .article-comments,.flownews-posts-content-wrap .article-info-bottom div:nth-child(4) {
+        display: none
+    }
+
+    .flownews-container.flownews-sidebar-right .col-xs-9 {
+        margin-right: 0
+    }
+
+    .flownews-container .col-xs-9 {
+        max-width: 100%;
+        width: 100%
+    }
+
+    .flownews-wrap-container .article-info-top h2 {
+        font-size: 26px;
+        line-height: 30px;
+        margin-bottom: 0
+    }
+
+    .navigation-post .prev-post {
+        width: 100%;
+        margin-bottom: 10px
+    }
+
+    .navigation-post .next-post {
+        width: 100%
+    }
+
+    .flownews-container {
+        padding: 25px
+    }
+
+    .author-post-container .author-info,.comments .comment-form-comment {
+        padding: 0
+    }
+
+    .navigation-post .next,.navigation-post .prev {
+        overflow: hidden;
+        text-overflow: ellipsis;
+        white-space: nowrap;
+        width: 75%
+    }
+
+    .related-item-container .owl-item {
+        margin-bottom: 25px
+    }
+
+    .comments .comment-form .form-submit {
+        margin-bottom: 50px;
+        width: 100%
+    }
+
+    .flownews-sidebar.col-xs-3 {
+        width: 100%
+    }
+
+    #commentform.comment-form .form-submit {
+        width: 100%;
+        margin-left: -1px
+    }
+
+    #commentform .col-xs-4 {
+        width: 100%
+    }
+
+    .flownews-sidebar-right .flownews-sidebar {
+        margin-top: 50px
+    }
+
+    .flownews-sidebar-left .flownews-sidebar {
+        margin-bottom: 50px
+    }
+
+    .flownews_widget.fnwp_mega_posts .container_post.ad_one_one .img-post.ad_one_third,.flownews_widget.fnwp_tab .container_post.ad_one_one .img-post.ad_one_third {
+        height: auto;
+        width: 100%
+    }
+
+    .flownews_widget.fnwp_mega_posts .box_post .container_post.ad_one_one .box-info.ad_two_third {
+        width: 100%;
+        padding-left: 0
+    }
+
+    .flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info.ad_two_third {
+        box-sizing: border-box;
+        margin-top: 15px;
+        width: 100%
+    }
+
+    .flownews_widget.fnwp_mega_posts .box_post .container_post.ad_one_one {
+        padding: 0 0 15px
+    }
+
+    .flownews_widget.fnwp_mega_posts .mega-posts .box_post {
+        padding: 0
+    }
+
+    .flownews_widget.fnwp_social.fnwp-widget.flownews_widget .box_social.flownews-widget-social-style1 {
+        margin-left: -3px;
+        padding: 0
+    }
+
+    .flownews_widget.fnwp_social .box_social .box-icon-social.ad_one_third {
+        width: calc(33.3333% - 6px)!important;
+        height: 90px
+    }
+
+    .flownews_widget.fnwp_social .box_social .box-icon-social.ad_one_third:nth-child(5),.flownews_widget.fnwp_social .box_social .box-icon-social.ad_one_third:nth-child(6) {
+        margin-bottom: 6px
+    }
+
+    .container_advertisement {
+        text-align: center
+    }
+
+    .flownews_widget.fnwp_tab .box_post .container_post.ad_one_one .box-info.ad_two_third {
+        width: 100%;
+        padding-left: 0
+    }
+
+    .flownews_widget.fnwp_tab .container_post.ad_one_one .box-info.ad_two_third {
+        box-sizing: border-box;
+        margin-top: 15px;
+        width: 100%
+    }
+
+    .flownews_widget.fnwp_tab .box_post .container_post.ad_one_one {
+        padding: 0 0 15px
+    }
+
+    .widget.fnwp-widget.flownews_widget.fnwp_tab .box_post {
+        padding: 0
+    }
+
+    .flownews-footer-top .flownews-wrap-container .footer-widget.col-xs-4 {
+        border-bottom: 1px solid #454545;
+        margin-bottom: 50px;
+        margin-left: 0;
+        margin-right: 0;
+        max-width: 100%;
+        padding-bottom: 25px;
+        width: 100%
+    }
+
+    .flownews-header-wrap-container .flownews-footer-bottom .flownews-wrap-container .col-xs-4 {
+        border-bottom: 1px solid #282828;
+        border-left: 0 none;
+        border-right: 0 none;
+        line-height: 22px;
+        padding: 6px 25px;
+        text-align: center;
+        width: 100%
+    }
+
+    .flownews-footer-wrap .flownews-footer-top .flownews-wrap-container.element-no-padding {
+        padding: 25px
+    }
+
+    .flownews-container .flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-6 {
+        width: calc(100% - 25px)
+    }
+
+    .flownews-container .flownews-element-posts.flownews-posts-layout2.flownews-blog-2-col .item-posts.first-element-posts:nth-child(2) {
+        border-top: 1px solid #f4f4f4;
+        margin-top: 25px;
+        padding-top: 25px
+    }
+}
+
+#commentform input {
+    width: 100%
+}
+
+.comment-form {
+    margin-left: -2.5px;
+    width: calc(100% + 5px)
+}
+
+#commentform .col-xs-4 {
+    padding: 0 2.5px 5px!important
+}
+
+.comment-form-comment {
+    padding: 0 2.5px
+}
+
+.comment-form-author.col-xs-4 input,.comment-form-email.col-xs-4 input,.comment-form-url.col-xs-4 input {
+    background: #f4f4f4;
+    border: none;
+    height: 40px;
+    padding: 12px
+}
+
+.comment-form-comment textarea {
+    width: 100%;
+    background: #f4f4f4;
+    border: none;
+    height: 175px;
+    padding: 12px
+}
+
+.comment-form .form-submit {
+    margin-top: 25px;
+    width: 25%;
+    margin-left: 2.5px
+}
+
+.comment-form .submit {
+    background: #e7685d;
+    border: none;
+    color: #fff;
+    font-weight: 700;
+    height: 40px;
+    text-transform: uppercase
+}
+
+.comment-form .submit:hover {
+    background: #c9564c
+}
+
+.comment-form-title,.comment-reply-title {
+    border-bottom: 1px solid #f4f4f4;
+    border-right: 1px solid #e7685d;
+    border-top: 1px solid #f4f4f4;
+    height: 35px;
+    margin: 0 0 25px;
+    position: relative;
+    text-align: left
+}
+
+.comment-form-title {
+    margin-top: 50px
+}
+
+.comment-form-title h3,.comment-reply-title .title-leave-a-comment {
+    background: #e7685d;
+    color: #fff;
+    display: inline-block;
+    font-size: 14px;
+    font-weight: 600;
+    height: calc(100% + 2px);
+    height: -webkit-calc(100% + 2px);
+    left: 0;
+    letter-spacing: 1.5px;
+    padding: 10px;
+    position: absolute;
+    text-transform: uppercase;
+    top: -1px;
+    transition: color .3s ease 0s;
+    margin: 0
+}
+
+.comments-list {
+    padding: 25px;
+    margin-top: 25px;
+    border: 1px solid #f4f4f4
+}
+
+.comments-list:first-child {
+    border: 0;
+    padding: 25px 0
+}
+
+.comments-list ul.children {
+    padding-left: 90px!important;
+    margin: inherit!important
+}
+
+.comments-list ul.children ul.children {
+    border: 0
+}
+
+.children .comments-list:before {
+    content: "";
+    position: absolute;
+    border-top: 1px solid #e7685d;
+    top: 55px;
+    width: 70px;
+    left: 0;
+    margin-right: 20px
+}
+
+.comments-list ul.children {
+    position: relative
+}
+
+.comment-image-author {
+    width: 70px;
+    float: left
+}
+
+.main-comment img {
+    border-radius: 10px
+}
+
+.comment-info {
+    width: calc(100% - 90px);
+    float: left;
+    margin-left: 20px
+}
+
+.comment-name {
+    display: block;
+    float: left;
+    font-size: 16px;
+    font-weight: 700;
+    letter-spacing: .5px;
+    margin-bottom: 2px;
+    text-align: left;
+    text-transform: uppercase
+}
+
+.comment-description p {
+    font-size: 14px;
+    margin-top: 10px
+}
+
+.comment-description p:nth-last-of-type(1) {
+    display: inline
+}
+
+.comment-date {
+    color: #e7685d;
+    letter-spacing: .5px;
+    float: right;
+    text-align: right;
+    font-style: italic;
+    font-size: 12px
+}
+
+.comment-description {
+    display: block;
+    font-size: 12px;
+    letter-spacing: 2px;
+    text-align: justify;
+    line-height: 1.5;
+    margin-bottom: 2px;
+    font-weight: 100
+}
+
+.comment-description i {
+    color: #e7685d;
+    font-size: 14px;
+    margin-left: 5px;
+    transition: color .3s ease 0s
+}
+
+.comment-description i:hover {
+    color: #c9564c;
+    transition: color .3s ease 0s
+}
+
+.reply-comment {
+    padding-top: 50px
+}
+
+.reply-line {
+    width: 10%;
+    float: left;
+    padding-right: 25px
+}
+
+.reply-line:after {
+    width: 100%;
+    content: "";
+    margin: 31px 25px 0 0;
+    float: left
+}
+
+.reply-comment .comment-info {
+    width: 80%
+}
+
+.comment-edit-link {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.comment-edit-link:hover {
+    color: #c9564c;
+    transition: color .3s ease 0s
+}
+
+#commentform .logged-in-as {
+    margin-bottom: 15px;
+    margin-left: 2.5px
+}
+
+#commentform .logged-in-as a {
+    color: #333;
+    letter-spacing: .5px;
+    font-weight: 400;
+    transition: color .3s ease 0s
+}
+
+#commentform .logged-in-as a:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.comments-template .comment-respond {
+    margin-top: 50px
+}
+
+.news-ticker-item .news-ticker-item-category,.news-ticker-item .news-ticker-item-date,.news-ticker-item .news-ticker-item-title {
+    float: left;
+    text-align: left
+}
+
+.news-ticker-item .news-ticker-item-title {
+    width: 70%
+}
+
+.news-ticker-item .news-ticker-item-category a {
+    background: #e7685d;
+    color: #fff;
+    font-size: 10px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    padding: 6px 10px;
+    text-transform: uppercase;
+    display: block;
+    line-height: 1;
+    margin: 5px 5px 0 0
+}
+
+.news-ticker-item .news-ticker-item-title a {
+    color: #fff;
+    font-size: 12px;
+    font-weight: 700;
+    letter-spacing: 1.5px;
+    text-transform: uppercase;
+    transition: color .3s ease 0s;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    width: 95%;
+    text-align: left;
+    line-height: 32px;
+    display: block
+}
+
+.news-ticker-item .news-ticker-item-title a:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.news-ticker-item .news-ticker-item-date {
+    color: #fff;
+    font-size: 10px;
+    font-weight: 700;
+    letter-spacing: 1.5px;
+    margin-left: 20px;
+    text-transform: uppercase
+}
+
+.flownews-top-news-ticker.owl-carousel .owl-stage-outer {
+    float: left;
+    width: 92%
+}
+
+.col-sm-4 .flownews-top-news-ticker.owl-carousel .owl-stage-outer {
+    width: 90%
+}
+
+.flownews-top-news-ticker.owl-theme .owl-controls .owl-nav [class*=owl-] {
+    color: #fff;
+    background: 0 0;
+    padding: 0 5px;
+    line-height: 1;
+    transition: color .3s ease 0s
+}
+
+.flownews-header-top .flownews-wrap-container {
+    height: 32px
+}
+
+.flownews-top-news-ticker.owl-theme .owl-controls {
+    margin-top: 0;
+    text-align: right
+}
+
+.flownews-header-top .col-sm-1,.flownews-header-top .col-sm-10,.flownews-header-top .col-sm-11,.flownews-header-top .col-sm-12,.flownews-header-top .col-sm-2,.flownews-header-top .col-sm-3,.flownews-header-top .col-sm-4,.flownews-header-top .col-sm-5,.flownews-header-top .col-sm-6,.flownews-header-top .col-sm-7,.flownews-header-top .col-sm-8,.flownews-header-top .col-sm-9 {
+    line-height: 32px;
+    border-right: 1px solid #333;
+    text-align: center
+}
+
+.flownews-header-top .flownews-ticker.col-sm-6 {
+    border-left: 1px solid #333
+}
+
+.flownews-date {
+    color: #fff;
+    font-size: 12px;
+    letter-spacing: 1.2px;
+    line-height: 19px
+}
+
+.flownews-social .flownews-header-top-social a {
+    color: #fff;
+    font-size: 12px;
+    line-height: 32px;
+    padding: 0 10px;
+    transition: color .3s ease 0s
+}
+
+.flownews-social .flownews-header-top-social a:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.follow-container a,.follow-container a:hover {
+    transition: all .3s ease 0s
+}
+
+.flownews-social .flownews-header-top-social a:first-child {
+    padding-left: 0
+}
+
+.flownews-social .flownews-header-top-social a:last-child {
+    padding-right: 0
+}
+
+.fnwp-widget .ad_one_one {
+    width: 100%
+}
+
+.fnwp-widget .ad_one_half {
+    width: 50%
+}
+
+.fnwp-widget .ad_one_third {
+    width: 33.33%
+}
+
+.fnwp-widget .ad_two_third {
+    width: 66.66%
+}
+
+.fnwp-widget .ad_one_fourth {
+    width: 25%
+}
+
+.fnwp-widget .ad_three_fourth {
+    width: 75%
+}
+
+.fnwp-widget .ad_one_fifth {
+    width: 20%
+}
+
+.fnwp-widget .ad_two_fifth {
+    width: 40%
+}
+
+.fnwp-widget .ad_three_fifth {
+    width: 60%
+}
+
+.fnwp-widget .ad_four_fifth {
+    width: 80%
+}
+
+.fnwp-widget .ad_one_sixth {
+    width: 16.66%
+}
+
+.fnwp-widget .ad_five_sixth {
+    width: 83.33%
+}
+
+.fnwp-widget .ad_five_sixth,.fnwp-widget .ad_four_fifth,.fnwp-widget .ad_one_fifth,.fnwp-widget .ad_one_fourth,.fnwp-widget .ad_one_half,.fnwp-widget .ad_one_sixth,.fnwp-widget .ad_one_third,.fnwp-widget .ad_three_fifth,.fnwp-widget .ad_three_fourth,.fnwp-widget .ad_two_fifth,.fnwp-widget .ad_two_third {
+    position: relative;
+    float: left
+}
+
+.fnwp-widget .ad_last {
+    margin-right: 0!important;
+    clear: right
+}
+
+.adclear {
+    clear: both
+}
+
+.admp_one_half {
+    width: 48%
+}
+
+.admp_one_third {
+    width: 30.66%
+}
+
+.admp_two_third {
+    width: 65.33%
+}
+
+.admp_one_fourth {
+    width: 22%
+}
+
+.admp_three_fourth {
+    width: 74%
+}
+
+.admp_one_fifth {
+    width: 16.8%
+}
+
+.admp_two_fifth {
+    width: 37.6%
+}
+
+.admp_three_fifth {
+    width: 58.4%
+}
+
+.admp_four_fifth {
+    width: 67.2%
+}
+
+.admp_one_sixth {
+    width: 13.33%
+}
+
+.admp_five_sixth {
+    width: 82.67%
+}
+
+.admp_five_sixth,.admp_four_fifth,.admp_one_fifth,.admp_one_fourth,.admp_one_half,.admp_one_sixth,.admp_one_third,.admp_three_fifth,.admp_three_fourth,.admp_two_fifth,.admp_two_third {
+    position: relative;
+    margin-right: 3.7%;
+    float: left
+}
+
+.admp_last {
+    margin-right: 0!important;
+    clear: right
+}
+
+.flownews-blog-2-col [class*=flownews-placeholder-] article:nth-child(2n+1),.flownews-blog-3-col [class*=flownews-placeholder-] article:nth-child(3n+1),.flownews-blog-4-col [class*=flownews-placeholder-] article:nth-child(4n+1),.flownews-load-more-type2.flownews-vc-posts-2-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(2n+1),.flownews-load-more-type2.flownews-vc-posts-3-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(3n+1),.flownews-load-more-type3.flownews-vc-posts-2-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(2n+1),.flownews-load-more-type3.flownews-vc-posts-3-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(3n+1),.flownews-load-more-type4.flownews-vc-posts-2-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(2n+1),.flownews-load-more-type4.flownews-vc-posts-3-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(3n+1),.flownews-load-more-type5.flownews-vc-posts-2-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(2n+1),.flownews-load-more-type5.flownews-vc-posts-3-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(3n+1),.flownews-load-more-type6.flownews-vc-posts-2-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(2n+1),.flownews-load-more-type6.flownews-vc-posts-3-col .flownews-vc-element-posts-article-container .flownews-load-more-container article:nth-child(3n+1),.fnwp-clear {
+    clear: both
+}
+
+@media screen and (max-width: 767px) {
+    .fnwp-widget .ad_five_sixth,.fnwp-widget .ad_four_fifth,.fnwp-widget .ad_one_fifth,.fnwp-widget .ad_one_fourth,.fnwp-widget .ad_one_half,.fnwp-widget .ad_one_sixth,.fnwp-widget .ad_one_third,.fnwp-widget .ad_three_fifth,.fnwp-widget .ad_three_fourth,.fnwp-widget .ad_two_fifth,.fnwp-widget .ad_two_third {
+        max-width:100%!important;
+        float: none!important;
+        width: 100%!important
+    }
+}
+
+.flownews_widget.fnwp_advertisement .container_advertisement img,.widget select {
+    max-width: 100%
+}
+
+@media (min-device-width: 768px) and (max-device-width:800px) and (orientation:portrait) {
+    .fnwp-widget .ad_five_sixth,.fnwp-widget .ad_four_fifth,.fnwp-widget .ad_one_fifth,.fnwp-widget .ad_one_fourth,.fnwp-widget .ad_one_half,.fnwp-widget .ad_one_sixth,.fnwp-widget .ad_one_third,.fnwp-widget .ad_three_fifth,.fnwp-widget .ad_three_fourth,.fnwp-widget .ad_two_fifth,.fnwp-widget .ad_two_third {
+        margin-right:1%
+    }
+}
+
+.about-me .ab-image {
+    position: relative
+}
+
+.about-me .ab-title {
+    padding: 8px 24px;
+    position: absolute;
+    top: 25px;
+    left: 50%;
+    transform: translate(-50%,0);
+    text-transform: uppercase;
+    border-radius: 5px;
+    box-shadow: 2px 2px 2px 0 rgba(0,0,0,.4);
+    font-size: 12px;
+    line-height: 1
+}
+
+.about-me .ad-text {
+    padding: 25px 0 0;
+    border-radius: 0 0 10px 10px;
+    text-align: center
+}
+
+.about-me .ad-text p {
+    font-size: 14px;
+    padding-bottom: 10px
+}
+
+.about-me .ad-text .signing {
+    font-size: 36px
+}
+
+.latest-posts .posts-container {
+    text-transform: uppercase;
+    padding: 25px;
+    margin-top: 4px;
+    border-radius: 0 0 10px 10px
+}
+
+.latest-posts .posts-container .item {
+    margin-top: 25px
+}
+
+.latest-posts .posts-container .item:first-child {
+    margin-top: 0
+}
+
+.latest-posts .post-image {
+    margin-right: 25px;
+    float: left;
+    width: 30%
+}
+
+.latest-posts .info-post {
+    float: left;
+    width: calc(70% - 25px)
+}
+
+.info-post h5 {
+    margin: 0 0 10px
+}
+
+.latest-posts .info-post h5 a {
+    font-size: 14px;
+    letter-spacing: 1.5px;
+    line-height: 1.5
+}
+
+.latest-posts .info-post .date {
+    font-size: 12px;
+    letter-spacing: 1.5px
+}
+
+.follow-container {
+    text-transform: uppercase;
+    padding: 25px;
+    margin-top: 4px;
+    border-radius: 0 0 10px 10px;
+    text-align: center
+}
+
+.follow-container a {
+    border-radius: 50%;
+    display: inline-block;
+    font-size: 12px;
+    height: 42px;
+    line-height: 44px;
+    margin: 5px;
+    width: 42px
+}
+
+.tagcloud a,.tags-container a {
+    color: #333;
+    margin-right: 10px;
+    font-size: 12px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    text-transform: uppercase;
+    transition: all .4s ease 0s
+}
+
+.tagcloud a:hover,.tags-container a:hover {
+    color: #e7685d;
+    transition: all .4s ease 0s
+}
+
+.advertising-container {
+    text-transform: uppercase;
+    padding: 25px;
+    border-radius: 10px;
+    text-align: center
+}
+
+.advertising-container.advertising-title,.newsletter-container {
+    margin-top: 4px;
+    border-radius: 0 0 10px 10px
+}
+
+.newsletter-container {
+    padding: 25px;
+    text-align: center
+}
+
+.newsletter h4 {
+    font-size: 14px;
+    letter-spacing: 2px
+}
+
+.newsletter form input,.newsletter p {
+    font-size: 12px;
+    letter-spacing: 1.5px
+}
+
+.newsletter form {
+    margin-top: 25px
+}
+
+.newsletter form input {
+    display: block;
+    width: 100%;
+    border: 0;
+    border-radius: 5px;
+    font-style: italic;
+    padding: 12px;
+    margin-bottom: 10px;
+    text-align: center
+}
+
+.newsletter form button {
+    border-radius: 5px;
+    display: block;
+    width: 100%;
+    border: 0;
+    text-transform: uppercase;
+    padding: 12px;
+    letter-spacing: 1.5px;
+    font-weight: 600
+}
+
+@media screen and (min-width: 1100px) {
+    .flownews-sidebar .widget-gallery .instagram-image,.wpb_wrapper .widget-gallery .instagram-image {
+        height:auto
+    }
+
+    .flownews-sidebar .instagram-image a img,.wpb_wrapper .instagram-image a img {
+        width: 50%;
+        height: 150px
+    }
+
+    .flownews-sidebar .instagram-image-loaded-1 a img,.wpb_wrapper .instagram-image-loaded-1 a img {
+        width: 100%
+    }
+}
+
+.widget_flownews_instagram_inline img {
+    float: left;
+    margin: 0;
+    padding: 0
+}
+
+.widget_flownews_instagram_inline .instagram_inline_image_loaded_1 a img {
+    width: 100%
+}
+
+.widget_flownews_instagram_inline .instagram_inline_image_loaded_2 a img {
+    width: 50%
+}
+
+.widget_flownews_instagram_inline .instagram_inline_image_loaded_3 a img {
+    width: 33.33333333333333
+}
+
+.widget_flownews_instagram_inline .instagram_inline_image_loaded_4 a img {
+    width: 25%
+}
+
+.widget_flownews_instagram_inline .instagram_inline_image_loaded_5 a img {
+    width: 20%
+}
+
+.widget_flownews_instagram_inline .instagram_inline_image_loaded_6 a img {
+    width: 16.66666666666667%
+}
+
+.widget_flownews_instagram_inline .instagram_inline_image_loaded_7 a img {
+    width: 14.28571428571429%
+}
+
+.widget_flownews_instagram_inline .instagram_inline_image_loaded_8 a img {
+    width: 12.5%
+}
+
+.widget ul {
+    margin: 0;
+    padding: 0
+}
+
+.widget li {
+    list-style: none;
+    padding: 10px 25px;
+    display: block;
+    margin-bottom: 1px
+}
+
+.flownews-sidebar .widget.widget_archive li,.flownews-sidebar .widget.widget_categories li,.flownews-sidebar .widget.widget_meta li,.flownews-sidebar .widget.widget_nav_menu li,.flownews-sidebar .widget.widget_pages li,.flownews-sidebar .widget.widget_recent_comments li,.flownews-sidebar .widget.widget_recent_entries li,.flownews-sidebar .widget.widget_rss li,.wpb_wrapper .widget.widget_meta li,.wpb_wrapper .widget.widget_nav_menu li,.wpb_wrapper .widget.widget_pages li,.wpb_wrapper .widget.widget_recent_comments li,.wpb_wrapper .widget.widget_recent_entries li,.wpb_wrapper .widget.widget_rss li {
+    border-bottom: 1px solid #f4f4f4;
+    box-sizing: border-box;
+    color: #333;
+    display: inline-block;
+    font-size: 14px;
+    letter-spacing: 1px;
+    padding: 15px 0;
+    transition: background .3s ease 0s;
+    width: 100%
+}
+
+.flownews-sidebar .widget.widget_archive li:first-child,.flownews-sidebar .widget.widget_categories li:first-child,.flownews-sidebar .widget.widget_meta li:first-child,.flownews-sidebar .widget.widget_nav_menu li:first-child,.flownews-sidebar .widget.widget_pages li:first-child,.flownews-sidebar .widget.widget_recent_comments li:first-child,.flownews-sidebar .widget.widget_recent_entries li:first-child,.flownews-sidebar .widget.widget_rss li:first-child,.wpb_wrapper .widget.widget_meta li:first-child,.wpb_wrapper .widget.widget_nav_menu li:first-child,.wpb_wrapper .widget.widget_pages li:first-child,.wpb_wrapper .widget.widget_recent_comments li:first-child,.wpb_wrapper .widget.widget_recent_entries li:first-child,.wpb_wrapper .widget.widget_rss li:first-child {
+    padding-top: 0
+}
+
+.flownews-sidebar .widget.widget_archive li:last-child,.flownews-sidebar .widget.widget_categories li:last-child,.flownews-sidebar .widget.widget_meta li:last-child,.flownews-sidebar .widget.widget_nav_menu li:last-child,.flownews-sidebar .widget.widget_pages li:last-child,.flownews-sidebar .widget.widget_recent_comments li:last-child,.flownews-sidebar .widget.widget_recent_entries li:last-child,.flownews-sidebar .widget.widget_rss li:last-child,.wpb_wrapper .widget.widget_meta li:last-child,.wpb_wrapper .widget.widget_nav_menu li:last-child,.wpb_wrapper .widget.widget_pages li:last-child,.wpb_wrapper .widget.widget_recent_comments li:last-child,.wpb_wrapper .widget.widget_recent_entries li:last-child,.wpb_wrapper .widget.widget_rss li:last-child {
+    border-bottom: 0;
+    padding-bottom: 0
+}
+
+.flownews-sidebar .widget.widget_archive li a:hover,.flownews-sidebar .widget.widget_categories li a:hover,.flownews-sidebar .widget.widget_meta li a:hover,.flownews-sidebar .widget.widget_nav_menu li a:hover,.flownews-sidebar .widget.widget_pages li a:hover,.flownews-sidebar .widget.widget_recent_comments li a:hover,.flownews-sidebar .widget.widget_recent_entries li a:hover,.flownews-sidebar .widget.widget_rss li a:hover,.wpb_wrapper .widget.widget_meta li a:hover,.wpb_wrapper .widget.widget_nav_menu li a:hover,.wpb_wrapper .widget.widget_pages li a:hover,.wpb_wrapper .widget.widget_recent_comments li a:hover,.wpb_wrapper .widget.widget_recent_entries li a:hover,.wpb_wrapper .widget.widget_rss li a:hover {
+    color: #e7685d;
+    transition: background .3s ease 0s
+}
+
+.flownews-sidebar .widget.widget_archive li a,.flownews-sidebar .widget.widget_categories li a,.flownews-sidebar .widget.widget_meta li a,.flownews-sidebar .widget.widget_nav_menu li a,.flownews-sidebar .widget.widget_pages li a,.flownews-sidebar .widget.widget_recent_comments li a,.flownews-sidebar .widget.widget_recent_entries li a,.flownews-sidebar .widget.widget_rss li a,.wpb_wrapper .widget.widget_meta li a,.wpb_wrapper .widget.widget_nav_menu li a,.wpb_wrapper .widget.widget_pages li a,.wpb_wrapper .widget.widget_recent_comments li a,.wpb_wrapper .widget.widget_recent_entries li a,.wpb_wrapper .widget.widget_rss li a {
+    transition: background .3s ease 0s
+}
+
+.flownews-sidebar .widget.widget_rss li a,.wpb_wrapper .widget.widget_rss li a {
+    color: #000
+}
+
+.flownews-sidebar .widget.widget_nav_menu li .sub-menu,.flownews-sidebar .widget.widget_pages li .children,.wpb_wrapper .widget.widget_nav_menu li .sub-menu,.wpb_wrapper .widget.widget_pages li .children {
+    margin-top: 20px;
+    margin-left: 15px
+}
+
+.flownews-sidebar .widget.widget_pages li .children ul.children,.wpb_wrapper .widget.widget_pages li .children ul.children {
+    margin-left: 30px
+}
+
+.flownews-sidebar .widget.widget_recent_entries li .post-date,.wpb_wrapper .widget.widget_recent_entries li .post-date {
+    font-size: 11px;
+    margin-left: 5px;
+    color: #b7b7b7
+}
+
+.widget li a,.widget_rss .rsswidget:hover {
+    color: #000
+}
+
+.widget li a:hover,.widget_rss .rsswidget {
+    color: #9c8156
+}
+
+.widget_rss .widget-title .rsswidget {
+    color: #fff
+}
+
+.widget.widget_recent_comments .comment-author-link {
+    color: #b7b7b7;
+    font-size: 11px
+}
+
+.widget label {
+    background: #FFF;
+    display: block
+}
+
+.flownews-sidebar .widget.widget_search label,.wpb_wrapper .widget.widget_search label {
+    width: 70%
+}
+
+.widget select {
+    background: #fff;
+    border: 1px solid #f4f4f4;
+    letter-spacing: 1px;
+    padding: 10px;
+    width: 100%
+}
+
+.post-password-form input,.widget_search input {
+    padding: 5px 7px;
+    text-align: left;
+    font-weight: 300
+}
+
+.widget_search input {
+    border-width: 1px;
+    border-style: solid;
+    border-color: #f4f4f4;
+    background: #f4f4f4;
+    width: 100%;
+    margin-bottom: 0;
+    height: 35px
+}
+
+.post-password-form input {
+    border: 1px solid #f4f4f4;
+    width: auto
+}
+
+#wp-calendar,#wp-calendar caption,#wp-calendar th {
+    text-align: center
+}
+
+.flownews-sidebar .search-form .search-submit,.wpb_wrapper .search-form .search-submit {
+    background: #e7685d;
+    color: #fff;
+    text-align: center;
+    width: 30%;
+    font-weight: 700;
+    transition: all .3s ease 0s;
+    font-size: 12px
+}
+
+.flownews-sidebar .search-form .search-submit:hover,.wpb_wrapper .search-form .search-submit:hover {
+    background: #c9564c;
+    transition: all .3s ease 0s
+}
+
+.not-found input[type=submit]:hover,.post-password-form input[type=submit]:hover,.widget_search input.search-submit:hover {
+    background: #9c8156;
+    color: #FFF
+}
+
+.flownews-sidebar .search-form .screen-reader-text,.wpb_wrapper .search-form .screen-reader-text {
+    display: none
+}
+
+.widget_search .search-form {
+    font-size: 0
+}
+
+.widget_search .search-form input {
+    font-size: 14px
+}
+
+.widget_search label {
+    display: inline-block;
+    float: left
+}
+
+#wp-calendar caption {
+    font-size: 14px;
+    font-weight: 400;
+    letter-spacing: 1.5px;
+    margin: 0 0 25px;
+    padding: 10px 0 0;
+    text-transform: uppercase
+}
+
+#wp-calendar td {
+    padding: 10px 0
+}
+
+#wp-calendar {
+    width: 100%
+}
+
+#wp-calendar .calendar_wrap tr {
+    margin-bottom: 5px;
+    padding-bottom: 5px
+}
+
+.flownews-sidebar .widget.widget_nav_menu li:first-child,.flownews-sidebar .widget.widget_nav_menu li:last-child {
+    padding: 0
+}
+
+#wp-calendar #prev a,#wp-calendar tr #today {
+    color: #e7685d
+}
+
+#wp-calendar #prev a:hover {
+    color: #000
+}
+
+.widget ul .sub-menu,label.screen-reader-text {
+    display: none
+}
+
+.widget ul>li.menu-item-has-children>a:after {
+    font-style: normal;
+    font-weight: 400;
+    text-transform: none;
+    line-height: 1;
+    font-size: 11px;
+    color: #333;
+    content: "\f107";
+    margin-left: 5px
+}
+
+.widget ul>li:hover>.sub-menu {
+    display: block
+}
+
+.textwidget select {
+    margin: 20px 0
+}
+
+.flownews-sidebar .widget,.wpb_wrapper .widget {
+    margin-bottom: 50px
+}
+
+.widget_nav_menu li>ul {
+    display: block;
+    border: 0;
+    margin-top: 0;
+    margin-bottom: 0;
+    margin-left: 10px
+}
+
+.widget_nav_menu ul.submenu li:first-child .submenu {
+    border: 0;
+    margin-left: 5px
+}
+
+.widget_nav_menu li ul li {
+    border-bottom: 1px
+}
+
+.widget_nav_menu li>ul li>ul,.widget_nav_menu li>ul>ul li,.widget_nav_menu li>ul>ul>ul li {
+    display: block;
+    border: 0;
+    margin-left: 5px
+}
+
+.widget_nav_menu ul.submenu .submenu {
+    margin-left: 5px;
+    margin-top: 10px
+}
+
+.flownews-sidebar .widget.widget_nav_menu li a {
+    padding: 10px 0;
+    display: block;
+    border-top: 0;
+    margin: 5px 0
+}
+
+.flownews-sidebar .widget.widget_nav_menu .menu li {
+    border-bottom: 0;
+    border-top: 1px solid
+}
+
+.flownews-sidebar .widget.widget_nav_menu .menu>li {
+    border: 0;
+    border-bottom: 1px solid;
+    border-top: 0
+}
+
+.flownews-sidebar .widget.widget_nav_menu li,.widget_nav_menu li {
+    padding: 0
+}
+
+.flownews_widget {
+    line-height: 1
+}
+
+.flownews_widget a {
+    text-decoration: none;
+    border-bottom: 0;
+    box-shadow: 0 0 0
+}
+
+.fnwp-widget h4 {
+    margin-top: 0
+}
+
+.fnwp-widget h3.widget-title,.fnwp-widget h4.widget-title,.widget h3 {
+    border-bottom: 1px solid #f4f4f4;
+    border-right: 1px solid #e7685d;
+    border-top: 1px solid #f4f4f4;
+    height: 35px;
+    margin: 0 0 25px;
+    position: relative;
+    text-align: left
+}
+
+.fnwp-title-widget {
+    background: #e7685d;
+    color: #fff;
+    display: inline-block;
+    font-size: 14px;
+    font-weight: 600;
+    height: calc(100% + 2px);
+    height: -webkit-calc(100% + 2px);
+    left: 0;
+    letter-spacing: 1.5px;
+    padding: 10px;
+    position: absolute;
+    text-transform: uppercase;
+    top: -1px;
+    transition: color .3s ease 0s
+}
+
+.fnwp-widget li {
+    background: inherit;
+    font-size: inherit;
+    font-weight: inherit;
+    margin-bottom: inherit;
+    padding: 0;
+    text-transform: inherit
+}
+
+@media only screen and (max-width : 500px) {
+    .flownews-sidebar .widget img {
+        width:100%
+    }
+}
+
+.flownews_widget.fnwp_advertisement h2 {
+    font-size: 26px
+}
+
+.flownews_widget.fnwp_advertisement .container_advertisement {
+    text-align: center
+}
+
+@media only screen and (min-width : 801px) and (max-width :1200px) {
+    .flownews_widget.fnwp_advertisement .active {
+        width:100%;
+        border: 1px solid #2b2b2b
+    }
+
+    .flownews_widget.fnwp_advertisement .title-info-post.ad_one_half {
+        padding: 25px
+    }
+
+    .flownews_widget.fnwp_advertisement .mini-post.small-post.ad_one_third {
+        border: 1px solid #2b2b2b;
+        margin: 25px 0 0;
+        padding: 15px 0 15px 15px;
+        width: 100%
+    }
+
+    .flownews_widget.fnwp_advertisement .mini-post.small-post.ad_one_third.fourth {
+        border-bottom: 1px solid #2b2b2b!important
+    }
+}
+
+@media only screen and (max-width : 800px) {
+    .flownews_widget.flownews_widget .fnwp_advertisement .flownews_widget-item.ad_one_third.ad_margin,.flownews_widget.fnwp_advertisement .flownews_widget-item.ad_one_one.ad_last.big-post {
+        float:none
+    }
+
+    .flownews_widget.fnwp_advertisement .title-info-post.ad_one_half {
+        box-sizing: border-box;
+        display: inline-block;
+        padding: 25px 0 50px
+    }
+
+    .flownews_widget.fnwp_advertisement .mini-post.small-post.ad_one_third .img-post {
+        display: inline-block;
+        width: 16%!important
+    }
+
+    .flownews_widget.fnwp_advertisement .mini-post.small-post .ad_three_fourth {
+        display: inline-block;
+        position: absolute;
+        width: 84%!important
+    }
+
+    .flownews_widget.fnwp_advertisement .mini-post.small-post.ad_one_third {
+        border: 1px solid #2b2b2b;
+        border-bottom: 0
+    }
+
+    .flownews_widget.fnwp_advertisement .mini-post.small-post.ad_one_third.fourth {
+        border-bottom: 1px solid #2b2b2b!important
+    }
+}
+
+.flownews_widget.fnwp_archivies .box_archivies .box_archivies_item {
+    width: 100%;
+    transition: all .3s ease 0s;
+    padding: 15px 0;
+    box-sizing: border-box;
+    border-bottom: 1px solid #f9f9f9;
+    text-align: right;
+    display: inline-block;
+    color: #333;
+    font-size: 12px;
+    font-weight: 800
+}
+
+.flownews_widget.fnwp_archivies .box_archivies li:first-child .box_archivies_item {
+    padding-top: 0
+}
+
+.flownews_widget.fnwp_archivies .box_archivies a:last-child {
+    border-bottom: none
+}
+
+.flownews_widget.fnwp_archivies a {
+    color: #333;
+    display: inline-block;
+    font-size: 12px;
+    font-weight: 800;
+    letter-spacing: 2px;
+    text-transform: uppercase;
+    transition: color .3s ease 0s;
+    float: left
+}
+
+.flownews_widget.fnwp_archivies .box_archivies_item:hover a {
+    color: #e7685d
+}
+
+.flownews_widget.fnwp_archivies .number-post {
+    color: #333;
+    font-size: 12px;
+    font-weight: 800;
+    letter-spacing: 2px;
+    text-transform: uppercase;
+    float: right;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_archivies .box_archivies .box_archivies_item:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.box_archivies li {
+    list-style: none
+}
+
+.flownews_widget.fnwp_categories .box_categories .cat-item {
+    width: 100%;
+    transition: all .3s ease 0s;
+    padding: 15px 0;
+    box-sizing: border-box;
+    border-bottom: 1px solid #f9f9f9;
+    text-align: right;
+    display: inline-block;
+    color: #333;
+    font-size: 12px;
+    font-weight: 800
+}
+
+.flownews_widget.fnwp_categories .box_categories .cat-item .children {
+    margin-left: 15px;
+    border-bottom: 0;
+    margin-top: 20px
+}
+
+.flownews_widget.fnwp_categories .box_categories .cat-item .children ul.children li {
+    margin-left: 15px;
+    border-bottom: 0;
+    padding-bottom: 0
+}
+
+.flownews_widget.fnwp_categories .box_categories .cat-item .children li:last-child {
+    border-bottom: 0;
+    padding-bottom: 0
+}
+
+.flownews_widget.fnwp_categories .box_categories li:first-child {
+    padding-top: 0
+}
+
+.flownews_widget.fnwp_archivies .box_categories a:last-child {
+    border-bottom: none
+}
+
+.flownews_widget.fnwp_categories a {
+    color: #333;
+    display: inline-block;
+    font-size: 12px;
+    font-weight: 800;
+    letter-spacing: 2px;
+    text-transform: uppercase;
+    transition: color .3s ease 0s;
+    float: left
+}
+
+.flownews_widget.fnwp_categories .box_categories>li.cat-item:hover,.flownews_widget.fnwp_categories .box_categories>li.cat-item:hover>a {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_categories .number-post {
+    color: #333;
+    font-size: 12px;
+    font-weight: 800;
+    letter-spacing: 2px;
+    text-transform: uppercase;
+    float: right;
+    transition: color .3s ease 0s
+}
+
+.box_categories li {
+    list-style: none
+}
+
+.box_categories li .children .cat-item a:hover,.box_categories li .children .cat-item:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.fnwp_flickr a img {
+    margin: 6px
+}
+
+.flownews_widget.fnwp_flickr .box_flickr {
+    background: #fff;
+    display: inline-block;
+    box-sizing: border-box;
+    text-align: center
+}
+
+.flownews_widget.fnwp_mega_posts .box_post {
+    border-bottom: 1px solid #f4f4f4;
+    padding: 10px 0
+}
+
+.flownews_widget.fnwp_mega_posts .box_post:first-child {
+    padding-top: 0
+}
+
+.flownews_widget.fnwp_mega_posts .box_post:last-child {
+    padding-bottom: 0;
+    border-bottom: 0
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one {
+    display: inline-block
+}
+
+.flownews_widget.fnwp_mega_posts .img-post.ad_one_third {
+    background-position: center center;
+    background-size: cover;
+    float: left;
+    width: 40%
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info.ad_two_third {
+    box-sizing: border-box;
+    padding-left: 20px;
+    width: 60%
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info h4 {
+    margin: 5px 0 0;
+    padding: 0;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    width: 100%
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info h4 a {
+    color: #333;
+    font-size: 14px;
+    letter-spacing: 1px;
+    text-transform: uppercase;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info a:hover {
+    color: #b72a23;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one .data {
+    color: #b7b7b7;
+    display: inline-block;
+    font-size: 11px;
+    font-weight: 300;
+    letter-spacing: .5px;
+    margin-top: 15px
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one .data i {
+    color: #e7685d
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one i {
+    margin-right: 6px
+}
+
+.flownews_widget.fnwp_mega_posts .container_post.ad_one_one .icon-calendar {
+    color: #e7685d;
+    float: left;
+    font-size: 14px;
+    margin: 0 10px 0 0;
+    padding: 0;
+    width: auto
+}
+
+.flownews_widget.fnwp_slider_posts .ad_one_one.ad_last {
+    position: relative
+}
+
+.flownews_widget.fnwp_slider_posts .category a {
+    background: #e7685d;
+    color: #fff;
+    display: inline-block;
+    float: left;
+    font-size: 10px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    line-height: 1;
+    margin-right: 10px;
+    margin-top: 4px;
+    padding: 6px 10px;
+    text-transform: uppercase;
+    transition: background-color .3s ease 0s
+}
+
+.flownews_widget.fnwp_slider_posts .flownews_widget-item .category {
+    top: 0;
+    position: absolute
+}
+
+.flownews_widget.fnwp_slider_posts .category a:hover {
+    background: #c9564c;
+    color: #fff;
+    transition: color .3s ease 0s;
+    transition: background .3s ease 0s
+}
+
+.flownews_widget.fnwp_slider_posts .box-text {
+    position: absolute;
+    bottom: 0;
+    left: 0;
+    width: 100%;
+    z-index: 2
+}
+
+.flownews_widget.fnwp_slider_posts .box-padding {
+    padding: 20px
+}
+
+.flownews_widget.fnwp_slider_posts .box-text h3 {
+    border: 0;
+    height: auto;
+    margin: 0 0 10px
+}
+
+.flownews_widget.fnwp_slider_posts .box-text h3 a {
+    color: #fff;
+    display: block;
+    font-size: 18px;
+    font-weight: 700;
+    line-height: 20px;
+    text-transform: uppercase
+}
+
+.flownews_widget.fnwp_slider_posts .box-text .data i {
+    margin-right: 10px
+}
+
+.flownews_widget.fnwp_slider_posts .box-text h3 a:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_slider_posts .flownews_widget-item.ad_one_one.ad_last.big-post .title-info-post .category a,.flownews_widget.fnwp_slider_posts .flownews_widget-item.ad_one_one.ad_last.big-post .title-info-post .category a:hover {
+    transition: background .3s ease 0s
+}
+
+.flownews_widget.fnwp_slider_posts .data {
+    color: #fff;
+    display: inline-block;
+    font-size: 12px;
+    font-weight: 400;
+    margin-top: 9px;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_slider_posts .data:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_slider_posts .icon-calendar {
+    color: #e7685d;
+    font-size: 14px;
+    margin: 0 10px 0 0;
+    padding: 0;
+    width: auto;
+    float: left
+}
+
+.flownews_widget.fnwp_slider_posts .flownews_widget-item.ad_one_one.ad_last.big-post i {
+    color: #fff;
+    float: left;
+    font-size: 18px;
+    margin: 0 10px 0 0;
+    transition: color .3s ease 0s
+}
+
+.fnwp_slider_posts .owl-controls {
+    opacity: 0;
+    transition: opacity .3s ease 0s;
+    margin-top: 0!important;
+    height: 0
+}
+
+.fnwp_slider_posts:hover .owl-controls {
+    opacity: 1;
+    transition: opacity .3s ease 0s
+}
+
+.fnwp_slider_posts .owl-prev {
+    position: absolute;
+    right: 44px;
+    top: 15px
+}
+
+.fnwp_slider_posts .owl-next {
+    position: absolute;
+    right: 15px;
+    top: 15px
+}
+
+.fnwp_slider_posts .owl-theme .owl-controls .owl-nav [class*=owl-] {
+    font-size: 14px;
+    padding: 6px 11px
+}
+
+.fnwp_slider_posts .owl-theme .owl-item .slider-pattern {
+    background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.4) 100%) rgba(0,0,0,0);
+    height: 100%;
+    left: 0;
+    position: absolute;
+    top: 0;
+    width: 100%;
+    z-index: 1
+}
+
+[class*=flownews-placeholder-] {
+    margin-top: 50px
+}
+
+.flownews_widget.fnwp_social .box_social {
+    display: inline-block;
+    padding: 0;
+    box-sizing: border-box;
+    width: calc(100% + 6px)
+}
+
+.flownews_widget.fnwp_social .flownews-widget-social-style1 .box-icon-social.ad_one_third {
+    height: 80px;
+    margin: 0 6px 6px 0;
+    width: calc(33.33% - 6px);
+    background-position: center center;
+    background-size: cover
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third:nth-child(7),.flownews_widget.fnwp_social .box-icon-social.ad_one_third:nth-child(8),.flownews_widget.fnwp_social .box-icon-social.ad_one_third:nth-child(9) {
+    margin-bottom: 0
+}
+
+.flownews-sidebar .widget_fnwp_social .flownews-widget-social-style1 .box_social.ad_one_one,.wpb_wrapper .widget_fnwp_social .flownews-widget-social-style1 .box_social.ad_one_one {
+    width: calc(100% + 6px)
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.facebook {
+    background: #3b5998
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.twitter {
+    background: #3b89c3
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.google-plus {
+    background: #d73d32
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.pinterest {
+    background: #cb2027
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.flickr {
+    background: #ff0084
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.instagram {
+    background: #32506d
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.linkedin {
+    background: #0077b5
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.youtube {
+    background: #cc181e
+}
+
+.flownews_widget.fnwp_social .box-icon-social.ad_one_third.vimeo {
+    background: #00adee
+}
+
+.fnwp_social .box-icon-social {
+    position: relative;
+    overflow: hidden
+}
+
+.flownews_widget.fnwp_social .flownews-widget-social-style1 .box-icon-social a {
+    color: #fff;
+    font-size: 18px;
+    left: 50%;
+    margin-left: -9px;
+    margin-top: -9px;
+    position: absolute;
+    top: 50%;
+    z-index: 3;
+    transition: top .3s ease 0s
+}
+
+.flownews_widget.fnwp_social .flownews-widget-social-style1 .box-icon-social p {
+    bottom: -20px;
+    color: #fff;
+    display: inline-block;
+    font-size: 10px;
+    font-weight: 600;
+    line-height: 1;
+    margin: 0;
+    position: absolute;
+    text-align: center;
+    width: 100%;
+    transition: bottom .3s ease 0s
+}
+
+.flownews_widget.fnwp_social .flownews-widget-social-style1 .box-icon-social:hover a {
+    top: 40%;
+    transition: top .3s ease 0s
+}
+
+.flownews_widget.fnwp_social .flownews-widget-social-style1 .box-icon-social:hover p {
+    bottom: 25%;
+    transition: bottom .3s ease 0s
+}
+
+.flownews_widget.fnwp_social .box_social.flownews-widget-social-style2 {
+    box-sizing: border-box;
+    display: inline-block;
+    margin-left: -8px;
+    padding: 0;
+    width: calc(100% + 16px)
+}
+
+.flownews-widget-social-style2 .box-icon-social {
+    margin: 0 8px 8px;
+    overflow: hidden;
+    position: relative;
+    width: calc(16.6667% - 16px)
+}
+
+.flownews-widget-social-style2 .box-icon-social:nth-child(6) {
+    margin-right: 0
+}
+
+.flownews-widget-social-style2 a {
+    background: #e7685d;
+    color: #fff;
+    padding: 9px 0;
+    text-align: center;
+    font-size: 14px;
+    transition: background .3s ease 0s;
+    width: 100%
+}
+
+.flownews-widget-social-style2 a:hover {
+    color: #FFF;
+    background: #c9564c;
+    transition: background .3s ease 0s
+}
+
+@media only screen and (min-width : 700px) and (max-width :1200px) {
+    .flownews-widget-social-style2 a {
+        height:50px;
+        line-height: 31px
+    }
+
+    .flownews-widget-social-style2 .box-icon-social {
+        width: calc(33.3333% - 16px);
+        margin: 0 8px 15px
+    }
+}
+
+@media only screen and (min-width : 360px) and (max-width :500px) {
+    .flownews-widget-social-style2 a {
+        height:50px;
+        line-height: 33px
+    }
+}
+
+@media only screen and (min-width : 501px) and (max-width :700px) {
+    .flownews-widget-social-style2 a {
+        height:60px;
+        line-height: 45px;
+        font-size: 14px!important
+    }
+}
+
+.flownews_widget.fnwp_tab .fnwp-title-widget {
+    cursor: pointer
+}
+
+.flownews_widget.fnwp_tab .widget-title .fnwp-title-widget span:hover {
+    background: #c9564c;
+    transition: all .3s ease 0s
+}
+
+.flownews_widget.fnwp_tab .fnwp_tab_active {
+    background: #c9564c!important
+}
+
+.flownews_widget.fnwp-tab-container,.fnwp-tab-container {
+    display: none
+}
+
+.fnwp_tab .widget-title .fnwp-title-widget span {
+    background: #e7685d;
+    margin-right: 2px;
+    padding: 8px;
+    position: relative;
+    transition: all .3s ease 0s
+}
+
+.fnwp_tab .fnwp-title-widget {
+    background: 0 0;
+    padding: 10px 0
+}
+
+.flownews_widget.fnwp_tab .box_post {
+    border-bottom: 1px solid #f4f4f4;
+    padding: 10px 0
+}
+
+.flownews_widget.fnwp_tab .box_post:first-child {
+    padding-top: 0
+}
+
+.flownews_widget.fnwp_tab .box_post:last-child {
+    border-bottom: 0 none;
+    padding-bottom: 0
+}
+
+.flownews_widget.fnwp_tab .container_post.ad_one_one {
+    display: inline-block
+}
+
+.flownews_widget.fnwp_tab .img-post.ad_one_third {
+    height: 100%;
+    background-position: center center;
+    background-size: cover;
+    float: left;
+    width: 40%
+}
+
+.flownews_widget.fnwp_tab .container_post.ad_one_one .box-info.ad_two_third {
+    box-sizing: border-box;
+    padding-left: 20px;
+    width: 60%;
+    float: left
+}
+
+.flownews_widget.fnwp_tab .container_post.ad_one_one .box-info h4 {
+    margin: 5px 0 0;
+    padding: 0;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    width: 100%
+}
+
+.flownews_widget.fnwp_tab .container_post.ad_one_one .box-info h4 a {
+    color: #333;
+    font-size: 14px;
+    letter-spacing: 1px;
+    text-transform: uppercase;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_tab .container_post.ad_one_one .box-info a:hover {
+    color: #b72a23;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_tab .container_post.ad_one_one .data {
+    color: #b7b7b7;
+    display: inline-block;
+    font-size: 12px;
+    font-weight: 300;
+    letter-spacing: .5px;
+    margin-top: 15px
+}
+
+.flownews_widget.fnwp_tab .container_post.ad_one_one .icon-calendar {
+    color: #e7685d;
+    float: left;
+    font-size: 14px;
+    margin: 0 10px 0 0;
+    padding: 0;
+    width: auto
+}
+
+.flownews_widget.fnwp_tab .content_tag {
+    border: 1px solid #f4f4f4;
+    color: #333;
+    display: inline-block;
+    font-size: 14px;
+    font-weight: 500;
+    margin: 0 10px 10px 0;
+    padding: 10px 25px;
+    transition: background .3s ease 0s
+}
+
+.flownews_widget.fnwp_tab .content_tag a {
+    color: #333;
+    font-size: 12px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    text-transform: uppercase;
+    transition: all .3s ease 0s
+}
+
+.flownews_widget.fnwp_tab .content_tag:hover {
+    background: #e7685d;
+    border: 1px solid #e7685d;
+    color: #fff;
+    transition: all .3s ease 0s;
+    cursor: pointer
+}
+
+.flownews_widget.fnwp_tab .content_tag:hover a {
+    color: #fff;
+    transition: all .3s ease 0s
+}
+
+.fnwp_tag .fnwp-title-widget {
+    cursor: pointer
+}
+
+h4.widget-title .fnwp_tag_active,h4.widget-title span:hover {
+    color: #b72a23
+}
+
+.fnwp-tag-container {
+    display: none
+}
+
+.fnwp-active {
+    display: block
+}
+
+.fnwp_title_popular,.fnwp_title_recent,.fnwp_title_tag {
+    margin-right: 2px;
+    position: relative
+}
+
+.fnwp_tag .widget-title .fnwp-title-widget span {
+    background: #e7685d;
+    margin-right: 2px;
+    padding: 8px;
+    position: relative
+}
+
+.flownews_widget.fnwp_tag .box_post {
+    border-bottom: 1px solid #f4f4f4;
+    padding: 10px 0
+}
+
+.flownews_widget.fnwp_tag .box_post:first-child {
+    padding-top: 0
+}
+
+.flownews_widget.fnwp_tag .box_post:last-child {
+    border-bottom: 0 none;
+    padding-bottom: 0
+}
+
+.flownews_widget.fnwp_tag .container_post.ad_one_one {
+    display: inline-block
+}
+
+.flownews_widget.fnwp_tag .img-post.ad_one_third {
+    height: 100%;
+    background-position: center center;
+    background-size: cover;
+    float: left;
+    width: 40%
+}
+
+.flownews_widget.fnwp_tag .container_post.ad_one_one .box-info.ad_two_third {
+    box-sizing: border-box;
+    padding-left: 20px;
+    width: 60%;
+    float: left
+}
+
+.flownews_widget.fnwp_tag .container_post.ad_one_one .box-info h4 {
+    margin: 5px 0 0;
+    padding: 0;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    width: 100%
+}
+
+.flownews_widget.fnwp_tag .container_post.ad_one_one .box-info h4 a {
+    color: #333;
+    font-size: 18px;
+    letter-spacing: 1px;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_tag .container_post.ad_one_one .box-info a:hover {
+    color: #b72a23;
+    transition: color .3s ease 0s
+}
+
+.flownews_widget.fnwp_tag .container_post.ad_one_one .data {
+    color: #b7b7b7;
+    display: inline-block;
+    font-size: 12px;
+    font-weight: 300;
+    letter-spacing: .5px;
+    margin-top: 15px
+}
+
+.flownews_widget.fnwp_tag .container_post.ad_one_one .icon-calendar {
+    color: #e7685d;
+    float: left;
+    font-size: 14px;
+    margin: 0 10px 0 0;
+    padding: 0;
+    width: auto
+}
+
+.flownews_widget.fnwp_tag .content_tag {
+    border: 1px solid #f4f4f4;
+    color: #333;
+    display: inline-block;
+    font-size: 14px;
+    font-weight: 500;
+    margin: 0 10px 10px 0;
+    padding: 10px 25px;
+    transition: all .3s ease 0s
+}
+
+.flownews_widget.fnwp_tag .content_tag a {
+    color: #333;
+    font-size: 12px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    text-transform: uppercase;
+    transition: all .3s ease 0s
+}
+
+.flownews_widget.fnwp_tag .content_tag:hover {
+    background: #e7685d;
+    color: #fff;
+    transition: all .3s ease 0s;
+    cursor: pointer
+}
+
+.flownews_widget.fnwp_tag .content_tag:hover a {
+    color: #fff;
+    transition: all .3s ease 0s
+}
+
+.flownews-sidebar .widget_flownews_instagram .instagram-image img,.wpb_wrapper .widget_flownews_instagram .instagram-image img {
+    height: 80px;
+    overflow: hidden;
+    width: 100%
+}
+
+.flownews-sidebar .widget_flownews_instagram .instagram-image a {
+    width: 33.3333%;
+    height: auto;
+    opacity: 1;
+    transition: all .3s ease 0s;
+    background: #000;
+    display: inline-block
+}
+
+.flownews-sidebar .widget_flownews_instagram .instagram-image a:hover {
+    opacity: .7;
+    transition: all .3s ease 0s
+}
+
+@media (max-width: 768px) {
+    .flownews_widget.fnwp_social .box-icon-social.ad_one_third {
+        width:calc(50% - 6px)!important;
+        box-sizing: border-box;
+        margin: 3px;
+        display: inline-block
+    }
+
+    .flownews_widget.fnwp_social .box_social {
+        padding: 3px;
+        font-size: 0
+    }
+
+    .flownews_widget.fnwp_mega_posts .img-post.ad_one_third,.flownews_widget.fnwp_tab .img-post.ad_one_third {
+        height: 120px
+    }
+
+    .flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info h4 a,.flownews_widget.fnwp_tab .container_post.ad_one_one .box-info h4 a {
+        line-height: 1.2
+    }
+}
+
+.flownews-element-posts {
+    margin-bottom: 50px
+}
+
+.flownews-element-posts article {
+    position: relative;
+    line-height: 1
+}
+
+.flownews-element-posts article h2 {
+    line-height: 1
+}
+
+.flownews-element-posts .article-image {
+    position: relative;
+    min-height: 50px
+}
+
+.flownews-element-posts .article-title a {
+    text-transform: uppercase;
+    font-size: 28px;
+    display: block
+}
+
+.flownews-element-posts .article-title a:hover {
+    color: #e7685d
+}
+
+.flownews-element-posts .article-category {
+    position: absolute;
+    left: 0;
+    bottom: 0;
+    font-size: 0
+}
+
+.flownews-element-posts .article-category a {
+    background: #e7685d;
+    color: #fff;
+    font-size: 10px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    padding: 6px 10px;
+    text-transform: uppercase;
+    line-height: 1.2;
+    margin-top: 4px;
+    display: inline-block;
+    margin-right: 2px
+}
+
+.flownews-element-posts .article-category a:hover {
+    background: #c9564c
+}
+
+.flownews-element-posts .article-comments,.flownews-element-posts .article-data,.flownews-element-posts .article-separator {
+    float: left
+}
+
+.flownews-element-posts .article-data {
+    color: #646464;
+    font-size: 12px;
+    letter-spacing: .5px;
+    margin-right: 20px
+}
+
+.flownews-element-posts .article-comments {
+    margin-left: 20px;
+    color: #646464;
+    font-size: 12px;
+    letter-spacing: .5px
+}
+
+.flownews-element-posts .article-comments a {
+    color: #646464
+}
+
+.flownews-element-posts .article-comments a:hover {
+    color: #c9564c
+}
+
+.flownews-element-posts i {
+    margin-right: 8px
+}
+
+.flownews-element-posts .article-category i {
+    margin-right: 0
+}
+
+.flownews-element-posts .article-info-bottom .article-excerpt a {
+    color: #e7685d
+}
+
+.flownews-element-posts .article-info-bottom .article-excerpt a:hover {
+    color: #333
+}
+
+.flownews-element-posts .article-read-more i {
+    margin-left: 10px;
+    margin-right: 0
+}
+
+.flownews-element-posts .article-info-top {
+    margin-top: 15px
+}
+
+.flownews-element-posts h3 a {
+    margin: 20px 0 10px
+}
+
+.flownews-element-posts-title-box {
+    border-bottom: 1px solid #f4f4f4;
+    border-right: 1px solid #e7685d;
+    border-top: 1px solid #f4f4f4;
+    height: 35px;
+    margin: 0 0 25px;
+    position: relative;
+    text-align: left
+}
+
+.flownews-element-posts-title-box h2 {
+    background: #e7685d;
+    color: #fff;
+    display: inline-block;
+    font-size: 14px;
+    font-weight: 600;
+    height: calc(100% + 2px);
+    height: -webkit-calc(100% + 2px);
+    left: 0;
+    letter-spacing: 1.5px;
+    padding: 10px;
+    position: absolute;
+    text-transform: uppercase;
+    top: -1px;
+    transition: color .3s ease 0s;
+    margin: 0
+}
+
+.flownews-element-posts #flownews-load-posts a,.flownews-pagination a {
+    color: #333;
+    display: inline-block;
+    padding: 10px 20px;
+    text-transform: uppercase
+}
+
+.flownews-element-posts #flownews-load-posts a,.flownews-pagination a,.flownews-pagination a:hover {
+    border: 1px solid #f4f4f4;
+    transition: all .3s ease 0s
+}
+
+.flownews-element-posts #flownews-load-posts {
+    margin-top: 50px;
+    text-align: center
+}
+
+.flownews-element-posts #flownews-load-posts a {
+    letter-spacing: 1px
+}
+
+.flownews-element-posts #flownews-load-posts a:hover {
+    background: #f4f4f4;
+    border: 1px solid #f4f4f4;
+    transition: all .3s ease 0s
+}
+
+.flownews-pagination {
+    margin-top: 50px
+}
+
+.flownews-pagination a:last-child {
+    float: right
+}
+
+.flownews-pagination a:hover {
+    background: #f4f4f4
+}
+
+.fnwp-numeric-pagination {
+    text-align: center
+}
+
+.fnwp-numeric-pagination .inactive {
+    font-size: 12px;
+    line-height: 1;
+    margin: 0 2px;
+    padding: 10px 13px
+}
+
+.fnwp-numeric-pagination .current,.fnwp-numeric-pagination i {
+    font-size: 12px;
+    line-height: 1;
+    padding: 10px 14px;
+    color: #333;
+    display: inline-block;
+    border: 1px solid #f4f4f4;
+    transition: all .3s ease 0s;
+    text-transform: uppercase
+}
+
+.fnwp-numeric-pagination .current {
+    margin: 0 2px;
+    background: #f4f4f4
+}
+
+.fnwp-numeric-pagination i {
+    margin-right: 0
+}
+
+.fnwp-numeric-pagination .fnwp-icon-left {
+    margin-right: 34px
+}
+
+.fnwp-numeric-pagination .fnwp-icon-right {
+    margin-left: 34px
+}
+
+.fnwp-numeric-pagination i:hover {
+    background: #f4f4f4;
+    border: 1px solid #f4f4f4;
+    transition: all .3s ease 0s
+}
+
+a.fnwp-pagination-numeric-arrow {
+    border: none!important;
+    padding: 0;
+    margin: 0
+}
+
+a.fnwp-pagination-numeric-arrow:hover {
+    background: 0 0!important
+}
+
+.fnwp-numeric-pagination .flownewsicon.fa-angle-double-left {
+    margin-right: 4px
+}
+
+.fnwp-numeric-pagination .flownewsicon.fa-angle-double-right {
+    margin-left: 4px
+}
+
+.flownews-pagination .fnwp-numeric-pagination a:last-child {
+    float: none!important
+}
+
+@media screen and (max-width: 700px) {
+    .flownews-container .flownews-pagination {
+        margin:25px
+    }
+
+    .flownews-pagination a {
+        margin-bottom: 10px
+    }
+}
+
+@media screen and (max-width: 400px) {
+    .flownews-element-posts .flownews-pagination-normal {
+        width:100%!important
+    }
+}
+
+.flownews-element-posts.flownews-posts-layout1.flownews-blog-2-col,.flownews-element-posts.flownews-posts-layout1.flownews-blog-3-col,.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col {
+    margin-left: -12.5px;
+    width: calc(100% + 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout1 .flownews-element-posts-title-box {
+    margin: 0 0 25px 12.5px;
+    width: calc(100% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts.col-xs-6 {
+    width: calc(50% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts.col-xs-4 {
+    width: calc(33.3333% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts.col-xs-3 {
+    width: calc(25% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts {
+    padding-top: 25px;
+    margin-top: 25px
+}
+
+.flownews-element-posts.flownews-posts-layout1.flownews-blog-2-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout1.flownews-blog-3-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts {
+    margin: 0 12.5px
+}
+
+.flownews-element-posts.flownews-posts-layout1.flownews-blog-1-col .item-posts.first-element-posts:first-child {
+    padding-top: 0;
+    margin-top: 0
+}
+
+.flownews-element-posts.flownews-posts-layout1.flownews-blog-2-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout1.flownews-blog-2-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout1.flownews-blog-3-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout1.flownews-blog-3-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout1.flownews-blog-3-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+    padding-top: 0
+}
+
+.flownews-element-posts.flownews-posts-layout1 h3 a {
+    line-height: 1.2
+}
+
+.flownews-element-posts.flownews-posts-layout1.flownews-blog-3-col h3 a {
+    font-size: 22px
+}
+
+.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col h3 a {
+    font-size: 20px;
+    margin: 15px 0 0
+}
+
+.flownews-element-posts.flownews-posts-layout1 .article-comments,.flownews-element-posts.flownews-posts-layout1 .article-data,.flownews-element-posts.flownews-posts-layout1 .article-separator {
+    font-size: 11px
+}
+
+.flownews-element-posts.flownews-posts-layout1 .article-comments {
+    margin-left: 12px
+}
+
+.flownews-element-posts.flownews-posts-layout1 .article-data {
+    margin-right: 12px
+}
+
+.flownews-element-posts.flownews-posts-layout1 .article-category a.article-icon-link {
+    padding: 6px 8px
+}
+
+.flownews-element-posts.flownews-posts-layout1 .article-category a.article-icon-link i {
+    font-size: 9px;
+    line-height: 12px
+}
+
+.flownews-element-posts.flownews-posts-layout1 .article-category a {
+    display: block;
+    float: left
+}
+
+@media screen and (max-width: 700px) {
+    .flownews-element-posts.flownews-posts-layout1 .flownews-element-posts-title-box.title-box-1,.flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts.col-xs-3,.flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts.col-xs-4 {
+        width:100%
+    }
+
+    .flownews-content .flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts.col-xs-3,.flownews-content .flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts.col-xs-4 {
+        width: calc(100% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        padding-top: 25px
+    }
+}
+
+@media screen and (max-width: 500px) {
+    .flownews-content .flownews-element-posts.flownews-posts-layout1.flownews-blog-2-col .item-posts.first-element-posts.col-xs-6 {
+        width:calc(100% - 25px)
+    }
+
+    .flownews-content .flownews-element-posts.flownews-posts-layout1.flownews-blog-2-col .item-posts.first-element-posts.col-xs-6:nth-child(2) {
+        padding-top: 25px
+    }
+}
+
+@media screen and (min-width: 701px) and (max-width:800px) {
+    .flownews-element-posts.flownews-posts-layout1.flownews-blog-2-col .article-comments,.flownews-element-posts.flownews-posts-layout1.flownews-blog-2-col .article-separator,.flownews-element-posts.flownews-posts-layout1.flownews-blog-3-col .article-comments,.flownews-element-posts.flownews-posts-layout1.flownews-blog-3-col .article-separator {
+        display:none
+    }
+}
+
+@media screen and (min-width: 951px) and (max-width:1040px) {
+    .flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .article-comments,.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .article-separator {
+        display:none
+    }
+}
+
+@media screen and (min-width: 580px) and (max-width:950px) {
+    .flownews-element-posts.flownews-posts-layout1 .item-posts.first-element-posts.col-xs-3 {
+        width:calc(50% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout1.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        padding-top: 25px
+    }
+}
+
+.flownews-element-posts.flownews-posts-layout2.flownews-blog-2-col,.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col,.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col {
+    margin-left: -12.5px;
+    width: calc(100% + 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout2 .flownews-element-posts-title-box {
+    margin: 0 0 25px 12.5px;
+    width: calc(100% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-6 {
+    width: calc(50% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-4 {
+    width: calc(33.3333% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-3 {
+    width: calc(25% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts {
+    border-top: 1px solid #f4f4f4;
+    padding-top: 25px;
+    margin-top: 25px
+}
+
+.flownews-element-posts.flownews-posts-layout2.flownews-blog-2-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts {
+    margin: 25px 12.5px 0
+}
+
+.flownews-element-posts.flownews-posts-layout2.flownews-blog-1-col .item-posts.first-element-posts:first-child,.flownews-element-posts.flownews-posts-layout2.flownews-blog-2-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout2.flownews-blog-2-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+    border-top: 0;
+    padding-top: 0;
+    margin-top: 0
+}
+
+.flownews-element-posts.flownews-posts-layout2 article h3 a {
+    margin-bottom: 0;
+    line-height: 1.2
+}
+
+.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col article h3 a {
+    font-size: 22px;
+    line-height: 1.2
+}
+
+.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col article h3 a {
+    font-size: 20px;
+    line-height: 1.2
+}
+
+.flownews-element-posts.flownews-posts-layout2 .article-category a {
+    font-size: 13px
+}
+
+.flownews-element-posts.flownews-posts-layout2 .flownews-pagination-normal {
+    margin-left: 12.5px;
+    width: calc(100% - 25px)
+}
+
+@media screen and (max-width: 700px) {
+    .flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts:first-child {
+        border-top:0;
+        padding-top: 0;
+        margin-top: 0
+    }
+
+    .flownews-element-posts.flownews-posts-layout2 .flownews-element-posts-article-container article:nth-child(2),.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .item-posts.first-element-posts:nth-child(4),.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        padding-top: 25px;
+        margin-top: 25px;
+        border-top: 1px solid #f4f4f4
+    }
+
+    .flownews-element-posts.flownews-posts-layout2,.flownews-element-posts.flownews-posts-layout2 .flownews-element-posts-title-box,.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-3,.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-4,.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-6 {
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-3,.flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-4 {
+        width: calc(100% - 25px)
+    }
+
+    .flownews-container .flownews-pagination {
+        margin-top: 50px
+    }
+
+    .flownews-container.flownews-sidebar-left .col-xs-9 {
+        margin-left: 0
+    }
+}
+
+@media screen and (min-width: 701px) and (max-width:850px) {
+    .flownews-element-posts.flownews-posts-layout2.flownews-blog-2-col .article-comments,.flownews-element-posts.flownews-posts-layout2.flownews-blog-2-col .article-separator {
+        display:none
+    }
+}
+
+@media screen and (min-width: 580px) and (max-width:950px) {
+    .flownews-element-posts.flownews-posts-layout2 .item-posts.first-element-posts.col-xs-3 {
+        width:calc(50% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2) {
+        padding-top: 0;
+        margin-top: 0;
+        border-top: 0
+    }
+
+    .flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        padding-top: 25px;
+        margin-top: 25px;
+        border-top: 1px solid #f4f4f4
+    }
+}
+
+.flownews-element-posts.flownews-posts-layout3.flownews-blog-2-col,.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col,.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col {
+    margin-left: -12.5px;
+    width: calc(100% + 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout3 .flownews-element-posts-title-box {
+    margin: 0 0 25px 12.5px;
+    width: calc(100% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts.col-xs-6 {
+    width: calc(50% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts.col-xs-4 {
+    width: calc(33.3333% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts.col-xs-3 {
+    width: calc(25% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts {
+    border-top: 1px solid #f4f4f4;
+    padding-top: 25px;
+    margin-top: 25px
+}
+
+.flownews-element-posts.flownews-posts-layout3.flownews-blog-2-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts {
+    margin: 25px 12.5px 0
+}
+
+.flownews-element-posts.flownews-posts-layout3.flownews-blog-1-col .item-posts.first-element-posts:first-child,.flownews-element-posts.flownews-posts-layout3.flownews-blog-2-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout3.flownews-blog-2-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+    border-top: 0;
+    padding-top: 0;
+    margin-top: 0
+}
+
+.flownews-element-posts.flownews-posts-layout3 article h3 a {
+    line-height: 1.2
+}
+
+.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col article h3 a {
+    font-size: 22px;
+    line-height: 1.2
+}
+
+.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col article h3 a {
+    font-size: 20px;
+    line-height: 1.2
+}
+
+.flownews-element-posts.flownews-posts-layout3 .article-category a {
+    font-size: 13px
+}
+
+.flownews-element-posts.flownews-posts-layout3 .flownews-pagination-normal {
+    margin-left: 12.5px;
+    width: calc(100% - 25px)
+}
+
+@media screen and (max-width: 700px) {
+    .flownews-element-posts.flownews-posts-layout3.item-posts.first-element-posts:first-child {
+        border-top:0;
+        padding-top: 0;
+        margin-top: 0
+    }
+
+    .flownews-element-posts.flownews-posts-layout3 .flownews-element-posts-article-container article:nth-child(2),.flownews-element-posts.flownews-posts-layout3.flownews-blog-2-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        padding-top: 25px;
+        margin-top: 25px;
+        border-top: 1px solid #f4f4f4
+    }
+
+    .flownews-element-posts.flownews-posts-layout3,.flownews-element-posts.flownews-posts-layout3 .flownews-element-posts-title-box,.flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts.col-xs-6 {
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts.col-xs-3,.flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts.col-xs-4,.flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts.col-xs-6 {
+        width: calc(100% - 25px)
+    }
+}
+
+@media screen and (min-width: 701px) and (max-width:900px) {
+    .flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .article-comments,.flownews-element-posts.flownews-posts-layout2.flownews-blog-3-col .article-separator,.flownews-element-posts.flownews-posts-layout3.flownews-blog-2-col .article-comments,.flownews-element-posts.flownews-posts-layout3.flownews-blog-2-col .article-separator,.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col .article-comments,.flownews-element-posts.flownews-posts-layout3.flownews-blog-3-col .article-separator {
+        display:none
+    }
+}
+
+@media screen and (min-width: 951px) and (max-width:1150px) {
+    .flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .article-comments,.flownews-element-posts.flownews-posts-layout2.flownews-blog-4-col .article-separator,.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .article-comments,.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .article-separator {
+        display:none
+    }
+}
+
+@media screen and (min-width: 580px) and (max-width:950px) {
+    .flownews-element-posts.flownews-posts-layout3 .item-posts.first-element-posts.col-xs-3 {
+        width:calc(50% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2) {
+        padding-top: 0;
+        margin-top: 0;
+        border-top: 0
+    }
+
+    .flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        padding-top: 25px;
+        margin-top: 25px;
+        border-top: 1px solid #f4f4f4
+    }
+}
+
+.flownews-posts-layout4 .article-category {
+    display: block;
+    position: relative;
+    margin-top: 10px
+}
+
+.flownews-element-posts.flownews-posts-layout4.flownews-blog-2-col,.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col,.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col {
+    margin-left: -12.5px;
+    width: calc(100% + 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout4 .flownews-element-posts-title-box {
+    margin: 0 0 25px 12.5px;
+    width: calc(100% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout4 .item-posts.first-element-posts.col-xs-6 {
+    width: calc(50% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout4 .item-posts.first-element-posts.col-xs-4 {
+    width: calc(33.3333% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout4 .item-posts.first-element-posts.col-xs-3 {
+    width: calc(25% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout4 .article-title a {
+    font-size: 18px;
+    line-height: 1.2
+}
+
+.flownews-element-posts.flownews-posts-layout4 .item-posts.first-element-posts {
+    border-top: 1px solid #f4f4f4;
+    padding-top: 25px;
+    margin-top: 25px
+}
+
+.flownews-element-posts.flownews-posts-layout4.flownews-blog-2-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts {
+    margin: 0 12.5px
+}
+
+.flownews-element-posts.flownews-posts-layout4.flownews-blog-1-col .item-posts.first-element-posts:first-child,.flownews-element-posts.flownews-posts-layout4.flownews-blog-2-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout4.flownews-blog-2-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(1),.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+    border-top: 0;
+    padding-top: 0;
+    margin-top: 0
+}
+
+.flownews-posts-layout4 article {
+    padding-bottom: 25px
+}
+
+.flownews-posts-layout4 .article-info.col-xs-8 {
+    padding: 0 15px!important
+}
+
+.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .article-image.col-xs-4,.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .article-info.col-xs-8,.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .article-image.col-xs-4,.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .article-info.col-xs-8 {
+    width: 100%
+}
+
+.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .article-info.col-xs-8,.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .article-info.col-xs-8 {
+    padding: 15px 0!important
+}
+
+.flownews-posts-layout4 .article-info-top,.flownews-posts-layout4 h3 a {
+    margin-top: 0
+}
+
+.flownews-element-posts.flownews-posts-layout4 .flownews-pagination-normal {
+    margin-left: 12.5px;
+    width: calc(100% - 25px)
+}
+
+@media screen and (max-width: 800px) {
+    .flownews-element-posts.flownews-posts-layout4 .article-data {
+        display:inherit
+    }
+
+    .flownews-element-posts.flownews-posts-layout4.item-posts.first-element-posts:first-child {
+        border-top: 0;
+        padding-top: 0;
+        margin-top: 0
+    }
+
+    .flownews-element-posts.flownews-posts-layout4 article.item-posts.first-element-posts:nth-child(2) {
+        border-top: 1px solid #f4f4f4;
+        padding-top: 25px;
+        margin-top: 25px
+    }
+
+    .flownews-element-posts.flownews-posts-layout4,.flownews-element-posts.flownews-posts-layout4 .flownews-element-posts-title-box {
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout4 .item-posts.first-element-posts.col-xs-6 {
+        width: calc(100% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-2-col .item-posts.first-element-posts:nth-child(2) {
+        border-top: 1px solid #f4f4f4;
+        padding-top: 25px
+    }
+}
+
+@media screen and (max-width: 700px) {
+    .flownews-element-posts.flownews-posts-layout4 .item-posts.first-element-posts.col-xs-4 {
+        width:calc(100% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        border-top: 1px solid #f4f4f4;
+        padding-top: 25px
+    }
+}
+
+@media screen and (min-width: 701px) and (max-width:950px) {
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        border-top:1px solid #f4f4f4;
+        padding-top: 25px
+    }
+}
+
+@media screen and (max-width: 640px) {
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts.col-xs-3 {
+        width:calc(100% - 25px)
+    }
+
+    .flownews-container .flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout4.flownews-blog-3-col .item-posts.first-element-posts:nth-child(3) {
+        border-top: 1px solid #f4f4f4;
+        padding-top: 25px
+    }
+
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .article-data {
+        display: block
+    }
+}
+
+@media screen and (min-width: 580px) and (max-width:950px) {
+    .flownews-element-posts.flownews-posts-layout4 .item-posts.first-element-posts.col-xs-3 {
+        width:calc(50% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-4-col .item-posts.first-element-posts:nth-child(2) {
+        padding-top: 0;
+        margin-top: 0;
+        border-top: 0
+    }
+
+    .flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(3),.flownews-element-posts.flownews-posts-layout3.flownews-blog-4-col .item-posts.first-element-posts:nth-child(4) {
+        padding-top: 25px;
+        margin-top: 25px;
+        border-top: 1px solid #f4f4f4
+    }
+}
+
+@media screen and (max-width: 450px) {
+    .flownews-element-posts.flownews-posts-layout4 .article-data {
+        display:none
+    }
+
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-1-col .article-image.col-xs-4,.flownews-element-posts.flownews-posts-layout4.flownews-blog-2-col .article-image.col-xs-4 {
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-1-col .article-info.col-xs-8,.flownews-element-posts.flownews-posts-layout4.flownews-blog-2-col .article-info.col-xs-8 {
+        padding: 15px 0!important;
+        width: calc(100% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout4.flownews-blog-2-col .article-image.col-xs-4 {
+        width: 100%
+    }
+}
+
+.flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col,.flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col,.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col {
+    margin-left: -12.5px;
+    width: calc(100% + 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout5 .flownews-element-posts-title-box {
+    margin: 0 0 25px 12.5px;
+    width: calc(100% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout5 .item-posts.first-element-posts.col-xs-6 {
+    width: calc(50% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout5 .item-posts.first-element-posts.col-xs-4 {
+    width: calc(33.3333% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout5 .item-posts.first-element-posts.col-xs-3 {
+    width: calc(25% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout5 .article-title a {
+    font-size: 18px
+}
+
+.flownews-element-posts.flownews-posts-layout5 .item-posts.first-element-posts {
+    border-top: 1px solid #f4f4f4;
+    margin: 25px 12.5px 0;
+    padding-top: 25px
+}
+
+.flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .item-posts.first-element-posts {
+    margin-bottom: 25px!important
+}
+
+.flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col .item-posts.first-element-posts.other-rows,.flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col .item-posts.first-element-posts.other-rows,.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .item-posts.first-element-posts.other-rows {
+    margin-bottom: 0!important;
+    margin-top: 10px
+}
+
+.flownews-element-posts.flownews-posts-layout5.flownews-blog-1-col .item-posts.first-element-posts {
+    margin-left: 0
+}
+
+.flownews-element-posts.flownews-posts-layout5 .flownews-pagination-normal {
+    margin-left: 12.5px;
+    width: calc(100% - 25px)
+}
+
+.flownews-element-posts.flownews-posts-layout5 article.item-posts.first-element-posts.first-row {
+    border-top: 0;
+    padding-top: 0;
+    margin-top: 0
+}
+
+.flownews-element-posts.flownews-posts-layout5.flownews-blog-1-col article.item-posts.first-element-posts.first-row {
+    margin: 0 0 50px
+}
+
+.flownews-element-posts.flownews-posts-layout5 article.item-posts.first-element-posts.first-row {
+    margin-bottom: 50px
+}
+
+.flownews-posts-layout5 .article-info.col-xs-8 {
+    padding: 0 15px!important
+}
+
+.flownews-posts-layout5.flownews-blog-1-col .first-row .article-title a {
+    font-size: 28px
+}
+
+.flownews-posts-layout5 .item-posts.first-element-posts .article-info.col-xs-8 .article-info-top,.flownews-posts-layout5 .item-posts.first-element-posts .article-info.col-xs-8 h3 a {
+    margin-top: 0
+}
+
+.flownews-posts-layout5 .item-posts.first-element-posts .article-info.col-xs-8 .article-category {
+    position: inherit;
+    margin-top: 10px
+}
+
+.flownews-element-posts.flownews-posts-layout5 .article-category a {
+    font-size: 13px
+}
+
+.flownews-posts-layout5 .item-posts.first-element-posts .article-info.col-xs-8 .article-category a {
+    font-size: 10px
+}
+
+.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .article-image.col-xs-4,.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .article-info.col-xs-8 {
+    width: 100%
+}
+
+.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .article-info.col-xs-8 {
+    padding: 15px 0!important
+}
+
+@media screen and (max-width: 1000px) {
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col .item-posts.first-element-posts.other-rows.col-xs-6 {
+        width:calc(100% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col article.item-posts.first-element-posts:nth-child(5) {
+        border-top: 1px solid #f4f4f4;
+        padding-top: 25px;
+        margin-top: 25px
+    }
+}
+
+@media screen and (max-width: 700px) {
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col,.flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col,.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col {
+        margin-left:0;
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-1-col article.item-posts.first-element-posts.first-row {
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout5 .item-posts.first-element-posts,.flownews-element-posts.flownews-posts-layout5.flownews-blog-1-col .item-posts.first-element-posts.other-rows.col-xs-12 {
+        width: 100%;
+        margin: 0 0 25px
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-1-col .article-image.col-xs-4 {
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-1-col .article-info.col-xs-8 {
+        padding: 15px 0 0!important;
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.item-posts.first-element-posts:first-child {
+        border-top: 0;
+        padding-top: 0;
+        margin-top: 0
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col article.item-posts.first-element-posts:nth-child(2) {
+        border-top: 0;
+        margin-top: 0;
+        padding-top: 0;
+        margin-bottom: 50px
+    }
+
+    .flownews-element-posts.flownews-posts-layout5 article.item-posts.first-element-posts:nth-child(2),.flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col article.item-posts.first-element-posts:nth-child(5) {
+        padding-top: 25px;
+        margin-top: 25px;
+        border-top: 1px solid #f4f4f4
+    }
+
+    .flownews-element-posts.flownews-posts-layout5,.flownews-element-posts.flownews-posts-layout5 .flownews-element-posts-title-box,.flownews-element-posts.flownews-posts-layout5 .item-posts.first-element-posts.col-xs-6 {
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col .item-posts.first-element-posts.col-xs-6,.flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col .item-posts.first-element-posts.col-xs-4,.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .item-posts.first-element-posts.col-xs-3 {
+        width: calc(100%)
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col article.item-posts.first-element-posts:nth-child(2) {
+        border-top: 0;
+        padding-top: 0;
+        margin-top: 0
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .col-xs-3 {
+        position: relative!important;
+        top: inherit!important
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .item-posts.first-element-posts.other-rows.col-xs-3.masonry-brick {
+        margin-bottom: 50px
+    }
+}
+
+.flownews-element-top-content .header-pattern,.flownews-top-content-layout1 .header-pattern {
+    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000', GradientType=0 );
+    top: 0
+}
+
+@media screen and (max-width: 500px) {
+    .flownews-element-posts.flownews-posts-layout5 article.item-posts.first-element-posts.first-row {
+        margin-bottom:0
+    }
+
+    .flownews-element-posts.flownews-posts-layout5 article.item-posts.first-element-posts.other-rows {
+        border-top: 1px solid #f4f4f4;
+        padding-top: 25px;
+        margin-top: 25px
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col .article-image.col-xs-4 {
+        width: 100%
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-2-col .article-info.col-xs-8 {
+        padding: 15px 0 0!important;
+        width: 100%
+    }
+}
+
+@media screen and (max-width: 900px) {
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col .item-posts.first-element-posts.col-xs-4 {
+        width:calc(100% - 25px)
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col article.item-posts.first-element-posts.first-row,.flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col article.item-posts.first-element-posts.other-rows {
+        border-top: 1px solid #f4f4f4;
+        margin-top: 25px;
+        padding-top: 25px
+    }
+
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-3-col article.item-posts.first-element-posts.first-row:first-child {
+        border-top: 0;
+        padding-top: 0;
+        margin-top: 0
+    }
+}
+
+@media screen and (min-width: 1024px) and (max-width:1150px) {
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .article-comments,.flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .article-separator {
+        display:none
+    }
+}
+
+@media screen and (min-width: 701px) and (max-width:1023px) {
+    .flownews-element-posts.flownews-posts-layout5.flownews-blog-4-col .item-posts.first-element-posts.col-xs-3 {
+        width:calc(50% - 25px)
+    }
+}
+
+.flownews-element-top-content:after {
+    clear: both;
+    content: "";
+    display: block
+}
+
+.flownews-element-top-content {
+    margin-bottom: 50px
+}
+
+.flownews-element-top-content article {
+    position: relative;
+    line-height: 1;
+    background: #000
+}
+
+.flownews-element-top-content article h2 {
+    line-height: 1
+}
+
+.flownews-element-top-content .article-info {
+    position: absolute;
+    bottom: 30px;
+    left: 30px;
+    z-index: 2;
+    margin-left: 0;
+    transition: all .4s ease 0s;
+    right: 30px;
+    max-width: calc(100% - 45px);
+    max-width: -webkit-calc(100% - 45px);
+    width: 100%
+}
+
+.flownews-element-top-content article:hover .article-info {
+    left: 45px;
+    transition: all .4s ease 0s
+}
+
+.flownews-element-top-content .header-pattern {
+    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.4) 100%);
+    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.4) 100%);
+    background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.4) 100%);
+    position: absolute;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    z-index: 1
+}
+
+.flownews-element-top-content article img {
+    opacity: 1;
+    transition: all .4s ease 0s
+}
+
+.flownews-element-top-content article:hover img {
+    opacity: .8;
+    transition: all .4s ease 0s
+}
+
+.flownews-element-top-content .article-info-top {
+    margin-bottom: 15px
+}
+
+.flownews-element-top-content .article-title {
+    float: left;
+    margin: 0 25px 0 0;
+    line-height: 30px
+}
+
+.flownews-element-top-content .article-title a {
+    color: #fff;
+    font-weight: 700;
+    text-transform: uppercase;
+    font-size: 30px;
+    display: block
+}
+
+.flownews-element-top-content .article-title a:hover {
+    color: #e7685d
+}
+
+.flownews-element-top-content .article-category {
+    line-height: 30px;
+    float: left
+}
+
+.flownews-element-top-content .article-category a {
+    background: #e7685d;
+    color: #fff;
+    font-size: 10px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    padding: 6px 10px;
+    text-transform: uppercase;
+    display: block;
+    line-height: 1;
+    margin-top: 4px
+}
+
+.flownews-element-top-content .article-category a:hover {
+    background: #c9564c
+}
+
+.flownews-element-top-content .article-comments,.flownews-element-top-content .article-data,.flownews-element-top-content .article-separator {
+    float: left
+}
+
+.flownews-element-top-content .article-data {
+    margin-right: 20px
+}
+
+.flownews-element-top-content .article-comments {
+    margin-left: 20px
+}
+
+.flownews-element-top-content .article-info-bottom {
+    color: #fff;
+    font-size: 13px;
+    margin-right: 20px;
+    letter-spacing: .4px
+}
+
+.flownews-element-top-content .article-info-bottom i {
+    margin-right: 10px
+}
+
+.flownews-element-top-content .article-info-bottom a {
+    color: #FFF
+}
+
+.flownews-element-top-content .article-info-bottom a:hover {
+    color: #e7685d
+}
+
+.flownews-top-content-layout1 {
+    height: 400px;
+    overflow: hidden
+}
+
+.flownews-top-content-layout1 article {
+    height: 100%;
+    overflow: hidden;
+    background: #000
+}
+
+.flownews-top-content-layout1 article.col-xs-5 {
+    height: 248px;
+    max-width: calc(41.66666667% - 4px);
+    max-width: -webkit-calc(41.66666667% - 4px);
+    width: 41.66666667%;
+    margin-left: 4px;
+    margin-bottom: 4px
+}
+
+.flownews-top-content-layout1 article.col-xs-2 {
+    height: 150px;
+    max-width: calc(20.833333335% - 4px);
+    max-width: -webkit-calc(20.833333335% - 4px);
+    width: 20.833333335%;
+    margin-left: 4px
+}
+
+.flownews-top-content-layout1 .article-info {
+    position: absolute;
+    bottom: 30px;
+    left: 30px;
+    z-index: 2;
+    margin-left: 0;
+    transition: all .4s ease 0s;
+    right: 30px;
+    max-width: calc(100% - 45px);
+    max-width: -webkit-calc(100% - 45px);
+    width: 100%
+}
+
+.flownews-top-content-layout1 article:hover .article-info {
+    left: 45px;
+    transition: all .4s ease 0s
+}
+
+.flownews-top-content-layout1 .header-pattern {
+    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.4) 100%);
+    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.4) 100%);
+    background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.4) 100%);
+    position: absolute;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    z-index: 1
+}
+
+.flownews-top-content-layout1 article img {
+    opacity: 1;
+    transition: all .4s ease 0s;
+    width: 100%
+}
+
+.flownews-top-content-layout1 article:hover img {
+    opacity: .8;
+    transition: all .4s ease 0s
+}
+
+.flownews-top-content-layout1 .article-info-top {
+    margin-bottom: 15px
+}
+
+.flownews-top-content-layout1 .article-title {
+    float: left;
+    margin: 0 25px 0 0;
+    line-height: 30px
+}
+
+.flownews-top-content-layout1 .article-title a {
+    color: #fff;
+    font-weight: 700;
+    text-transform: uppercase;
+    font-size: 30px;
+    display: block
+}
+
+.flownews-top-content-layout1 .article-title a:hover {
+    color: #e7685d
+}
+
+.flownews-top-content-layout1 .article-category {
+    line-height: 30px;
+    float: left
+}
+
+.flownews-top-content-layout1 .article-category a {
+    background: #e7685d;
+    color: #fff;
+    font-size: 10px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    padding: 6px 10px;
+    text-transform: uppercase;
+    display: block;
+    line-height: 1;
+    margin-top: 5px
+}
+
+.flownews-top-content-layout1 .article-category a:hover {
+    background: #c9564c
+}
+
+.flownews-top-content-layout1 .article-comments,.flownews-top-content-layout1 .article-data,.flownews-top-content-layout1 .article-separator {
+    float: left
+}
+
+.flownews-top-content-layout1 .article-data {
+    margin-right: 20px
+}
+
+.flownews-top-content-layout1 .article-comments {
+    margin-left: 20px
+}
+
+.flownews-top-content-layout1 .article-info-bottom {
+    color: #fff;
+    font-size: 13px;
+    margin-right: 20px;
+    letter-spacing: .4px
+}
+
+.flownews-top-content-layout1 .article-info-bottom i {
+    margin-right: 10px
+}
+
+.flownews-top-content-layout1 .article-info-bottom a {
+    color: #FFF
+}
+
+.flownews-top-content-layout1 .article-info-bottom a:hover {
+    color: #e7685d
+}
+
+.flownews-top-content-layout1 .second-element-header .article-title {
+    line-height: 22px
+}
+
+.flownews-top-content-layout1 .second-element-header .article-title a {
+    font-size: 22px
+}
+
+.flownews-top-content-layout1 .second-element-header .article-category a {
+    margin-top: 3px;
+    padding: 4px 10px
+}
+
+.flownews-top-content-layout1 .others-element-header .article-title {
+    line-height: 16px
+}
+
+.flownews-top-content-layout1 .others-element-header .article-title a {
+    font-size: 16px
+}
+
+.flownews-top-content-layout1 .others-element-header .article-category a {
+    padding: 3px 10px;
+    margin-top: 7px;
+    font-size: 8px
+}
+
+@media screen and (max-width: 1200px) {
+    .flownews-top-content-layout1 {
+        height:350px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-5 {
+        height: 220px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-2 {
+        height: 130px
+    }
+}
+
+@media screen and (max-width: 1150px) {
+    .flownews-top-content-layout1 {
+        height:300px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-5 {
+        height: 180px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-2 {
+        height: 120px
+    }
+
+    .flownews-top-content-layout1 .others-element-header .article-info-bottom {
+        display: none
+    }
+}
+
+@media screen and (min-width: 1000px) and (max-width:1150px) {
+    .flownews-top-content-layout1 .others-element-header .article-info {
+        bottom:0
+    }
+}
+
+@media screen and (min-width: 810px) and (max-width:1000px) {
+    .flownews-top-content-layout1 .others-element-header .article-category a,.flownews-top-content-layout1 .others-element-header .article-info-bottom,.flownews-top-content-layout1 .second-element-header .article-comments,.flownews-top-content-layout1 .second-element-header .article-separator {
+        display:none
+    }
+
+    .flownews-top-content-layout1 {
+        height: 250px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-5 {
+        height: 150px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-2 {
+        height: 100px
+    }
+
+    .flownews-top-content-layout1 .article-info {
+        position: absolute;
+        bottom: 10px;
+        left: 10px;
+        z-index: 2;
+        margin-left: 0;
+        transition: all .4s ease 0s;
+        right: 50px
+    }
+
+    .flownews-top-content-layout1 article:hover .article-info {
+        left: 10px;
+        transition: all .4s ease 0s
+    }
+}
+
+@media screen and (min-width: 650px) and (max-width:810px) {
+    .flownews-top-content-layout1 {
+        height:200px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-5 {
+        height: 130px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-2 {
+        height: 70px
+    }
+
+    .flownews-top-content-layout1 .article-info {
+        position: absolute;
+        bottom: 10px;
+        left: 10px;
+        z-index: 2;
+        margin-left: 0;
+        right: 50px
+    }
+
+    .flownews-top-content-layout1 article:hover .article-info {
+        left: 10px
+    }
+
+    .flownews-top-content-layout1 .first-element-header .article-info-bottom,.flownews-top-content-layout1 .others-element-header .article-category a,.flownews-top-content-layout1 .others-element-header .article-info-bottom,.flownews-top-content-layout1 .second-element-header .article-category a,.flownews-top-content-layout1 .second-element-header .article-info-bottom {
+        display: none
+    }
+
+    .flownews-top-content-layout1 .second-element-header .article-title {
+        line-height: 14px
+    }
+
+    .flownews-top-content-layout1 .second-element-header .article-title a {
+        font-size: 14px
+    }
+
+    .flownews-top-content-layout1 .others-element-header .article-title {
+        line-height: 10px
+    }
+
+    .flownews-top-content-layout1 .others-element-header .article-title a {
+        font-size: 10px
+    }
+}
+
+@media screen and (max-width: 650px) {
+    .flownews-top-content-layout1 .first-element-header .article-info-bottom,.flownews-top-content-layout1 .others-element-header .article-category a,.flownews-top-content-layout1 .others-element-header .article-info-bottom,.flownews-top-content-layout1 .second-element-header .article-category a,.flownews-top-content-layout1 .second-element-header .article-info-bottom {
+        display:none
+    }
+}
+
+@media screen and (min-width: 530px) and (max-width:650px) {
+    .flownews-top-content-layout1 .others-element-header .article-title,.flownews-top-content-layout1 .second-element-header .article-title {
+        line-height:10px
+    }
+
+    .flownews-top-content-layout1 .others-element-header .article-title a,.flownews-top-content-layout1 .second-element-header .article-title a {
+        font-size: 10px
+    }
+
+    .flownews-top-content-layout1 .article-info {
+        position: absolute;
+        bottom: 10px;
+        left: 10px;
+        z-index: 2;
+        margin-left: 0;
+        right: 50px
+    }
+
+    .flownews-top-content-layout1 article:hover .article-info {
+        left: 10px
+    }
+
+    .flownews-top-content-layout1 {
+        height: auto
+    }
+
+    .flownews-top-content-layout1 .col-xs-7 {
+        width: 100%;
+        height: 250px;
+        margin-bottom: 4px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-5 {
+        width: 34%;
+        max-width: 34%;
+        margin-left: 0;
+        height: 80px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-2 {
+        max-width: calc(33% - 4px);
+        max-width: -webkit-calc(33% - 4px);
+        width: 33%;
+        margin-left: 4px;
+        height: 80px
+    }
+
+    .flownews-top-content-layout1 .first-element-header .article-info-bottom,.flownews-top-content-layout1 .others-element-header .article-category a,.flownews-top-content-layout1 .others-element-header .article-info-bottom,.flownews-top-content-layout1 .second-element-header .article-category a,.flownews-top-content-layout1 .second-element-header .article-info-bottom {
+        display: none
+    }
+}
+
+@media screen and (min-width: 400px) and (max-width:529px) {
+    .flownews-top-content-layout1 .article-info {
+        position:absolute;
+        bottom: 10px;
+        left: 10px;
+        z-index: 2;
+        margin-left: 0;
+        right: 50px
+    }
+
+    .flownews-top-content-layout1 article:hover .article-info {
+        left: 10px
+    }
+
+    .flownews-top-content-layout1 {
+        height: auto
+    }
+
+    .flownews-top-content-layout1 .col-xs-7 {
+        width: 100%;
+        height: 200px;
+        margin-bottom: 4px
+    }
+
+    .flownews-top-content-layout1 article.col-xs-5 {
+        width: 100%;
+        max-width: 100%;
+        height: 150px;
+        margin-bottom: 4px;
+        margin-left: 0;
+        margin-right: 0
+    }
+
+    .flownews-top-content-layout1 article.col-xs-2 {
+        max-width: calc(50% - 2px);
+        max-width: -webkit-calc(50% - 2px);
+        width: 50%;
+        height: 100px;
+        margin-right: 2px;
+        margin-left: 0
+    }
+
+    .flownews-top-content-layout1 article.col-xs-2:last-child {
+        margin-left: 2px;
+        margin-right: 0
+    }
+
+    .flownews-top-content-layout1 .others-element-header .article-category a,.flownews-top-content-layout1 .others-element-header .article-info-bottom {
+        display: none
+    }
+
+    .flownews-top-content-layout1 .second-element-header .article-title {
+        line-height: 22px
+    }
+
+    .flownews-top-content-layout1 .second-element-header .article-title a {
+        font-size: 22px
+    }
+
+    .flownews-top-content-layout1 .others-element-header .article-title {
+        line-height: 10px
+    }
+
+    .flownews-top-content-layout1 .others-element-header .article-title a {
+        font-size: 10px
+    }
+}
+
+@media screen and (max-width: 399px) {
+    .flownews-top-content-layout1 {
+        height:auto
+    }
+
+    .flownews-top-content-layout1 .col-xs-7,.flownews-top-content-layout1 article.col-xs-2,.flownews-top-content-layout1 article.col-xs-5 {
+        width: 100%;
+        max-width: 100%;
+        height: auto;
+        margin: 0 0 4px
+    }
+
+    .flownews-top-content-layout1 .article-title {
+        float: none
+    }
+
+    .flownews-top-content-layout1 .first-element-header .article-title a,.flownews-top-content-layout1 .second-element-header .article-title a {
+        font-size: 16px;
+        line-height: 16px
+    }
+
+    .flownews-top-content-layout1 .article-category a {
+        padding: 3px 10px;
+        margin-top: 7px;
+        font-size: 8px;
+        display: block
+    }
+
+    .flownews-top-content-layout1 .article-info-bottom {
+        display: none
+    }
+}
+
+.flownews-top-content-layout2 .first-element-header {
+    height: 400px;
+    overflow: hidden;
+    margin-bottom: 6px
+}
+
+.flownews-top-content-layout2 .others-element-header {
+    width: 33.33333333%;
+    max-width: calc(33.33333333% - 4px);
+    max-width: -webkit-calc(33.33333333% - 4px)
+}
+
+.flownews-top-content-layout2 article:nth-child(2) {
+    margin-right: 4px
+}
+
+.flownews-top-content-layout2 article:nth-child(3) {
+    margin-right: 2px;
+    margin-left: 2px
+}
+
+.flownews-top-content-layout2 article:last-child {
+    margin-left: 4px
+}
+
+.flownews-top-content-layout2 .first-element-header img {
+    position: relative;
+    top: 50%;
+    transform: translateY(-50%)
+}
+
+.flownews-top-content-layout2 .first-element-header .article-title a {
+    font-size: 42px;
+    line-height: 42px
+}
+
+.flownews-top-content-layout2 .first-element-header .article-category a {
+    margin-top: 8px;
+    padding: 10px 15px
+}
+
+.flownews-top-content-layout2 .others-element-header .article-title {
+    line-height: 22px
+}
+
+.flownews-top-content-layout2 .others-element-header .article-title a {
+    font-size: 22px
+}
+
+.flownews-top-content-layout2 .others-element-header .article-category a {
+    margin-top: 3px;
+    padding: 4px 10px
+}
+
+@media screen and (max-width: 1100px) {
+    .flownews-top-content-layout2 .others-element-header .article-separator {
+        display:none
+    }
+
+    .flownews-top-content-layout2 .others-element-header .article-comments,.flownews-top-content-layout2 .others-element-header .article-data {
+        float: none;
+        display: block;
+        margin: 0
+    }
+
+    .flownews-top-content-layout2 .others-element-header .article-comments {
+        margin-top: 3px
+    }
+}
+
+@media screen and (min-width: 550px) and (max-width:900px) {
+    .flownews-top-content-layout2 .first-element-header {
+        height:300px
+    }
+
+    .flownews-top-content-layout2 .others-element-header .article-title {
+        line-height: 15px
+    }
+
+    .flownews-top-content-layout2 .others-element-header .article-title a {
+        font-size: 15px
+    }
+
+    .flownews-top-content-layout2 .others-element-header .article-category a {
+        padding: 3px 10px;
+        margin-top: 8px
+    }
+
+    .flownews-top-content-layout2 .others-element-header .article-category a,.flownews-top-content-layout2 .others-element-header .article-info-bottom {
+        display: none
+    }
+}
+
+@media screen and (max-width: 549px) {
+    .flownews-top-content-layout2 {
+        height:auto
+    }
+
+    .flownews-top-content-layout2 .col-xs-12,.flownews-top-content-layout2 article.col-xs-4 {
+        width: 100%;
+        max-width: 100%;
+        height: auto;
+        margin: 0 0 4px
+    }
+
+    .flownews-top-content-layout2 .first-element-header img {
+        top: 0;
+        transform: translateY(0)
+    }
+
+    .flownews-top-content-layout2 .article-title {
+        float: none
+    }
+
+    .flownews-top-content-layout2 .first-element-header .article-title a,.flownews-top-content-layout2 .others-element-header .article-title a {
+        font-size: 16px;
+        line-height: 16px
+    }
+
+    .flownews-top-content-layout2 .article-category a,.flownews-top-content-layout2 .first-element-header .article-category a {
+        padding: 3px 10px;
+        margin-top: 7px;
+        font-size: 8px;
+        display: block
+    }
+
+    .flownews-top-content-layout2 .article-info-bottom {
+        display: none
+    }
+}
+
+.flownews-top-content-layout3 .first-element-header {
+    height: 500px;
+    overflow: hidden;
+    margin-bottom: 6px
+}
+
+.flownews-top-content-layout3 .others-element-header {
+    width: 33.33333333%;
+    max-width: calc(33.33333333% - 4px);
+    max-width: -webkit-calc(33.33333333% - 4px);
+    height: 100px;
+    overflow: hidden;
+    background: #ececec
+}
+
+.flownews-top-content-layout3 article:nth-child(2) {
+    margin-right: 4px
+}
+
+.flownews-top-content-layout3 article:nth-child(3) {
+    margin-right: 2px;
+    margin-left: 2px
+}
+
+.flownews-top-content-layout3 article:last-child {
+    margin-left: 4px
+}
+
+.flownews-top-content-layout3 .first-element-header img {
+    position: relative;
+    top: 50%;
+    transform: translateY(-50%)
+}
+
+.flownews-top-content-layout3 .first-element-header .article-title a {
+    font-size: 42px;
+    line-height: 42px;
+    margin-right: 10px
+}
+
+.flownews-top-content-layout3 .first-element-header .article-category a {
+    margin-top: 8px;
+    padding: 10px
+}
+
+.flownews-top-content-layout3 .others-element-header img {
+    width: 40%;
+    float: left;
+    position: relative;
+    top: 50%;
+    transform: translateY(-50%)
+}
+
+.flownews-top-content-layout3 article.others-element-header:hover img {
+    opacity: 1
+}
+
+.flownews-top-content-layout3 .others-element-header .article-info-type3 {
+    width: 60%;
+    float: left;
+    padding: 20px;
+    box-sizing: border-box;
+    height: 100%
+}
+
+.flownews-top-content-layout3 .others-element-header .article-info-type3 .article-info-top {
+    height: 100%;
+    overflow: hidden
+}
+
+.flownews-top-content-layout3 .others-element-header .article-title {
+    line-height: 18px;
+    width: 100%
+}
+
+.flownews-top-content-layout3 .others-element-header .article-title a {
+    font-size: 18px;
+    color: #333;
+    white-space: nowrap;
+    width: 95%;
+    overflow: hidden;
+    text-overflow: ellipsis
+}
+
+.flownews-top-content-layout3 .others-element-header .article-title a:hover {
+    color: #c9564c
+}
+
+.flownews-top-content-layout3 .others-element-header .article-category a {
+    padding: 3px 10px;
+    margin-top: 8px
+}
+
+@media screen and (min-width: 800px) and (max-width:900px) {
+    .flownews-top-content-layout3 .first-element-header {
+        height:300px
+    }
+
+    .flownews-top-content-layout3 .others-element-header {
+        height: 80px
+    }
+
+    .flownews-top-content-layout3 .others-element-header .article-title {
+        line-height: 14px
+    }
+
+    .flownews-top-content-layout3 .others-element-header .article-title a {
+        font-size: 14px
+    }
+}
+
+@media screen and (max-width: 900px) {
+    .flownews-top-content-layout3 .others-element-header .article-title {
+        margin-bottom:0
+    }
+}
+
+@media screen and (max-width: 799px) {
+    .flownews-top-content-layout3 .first-element-header {
+        height:auto
+    }
+
+    .flownews-top-content-layout3 .first-element-header img {
+        top: 0;
+        transform: translateY(0)
+    }
+
+    .flownews-top-content-layout3 article.col-xs-4 {
+        width: 100%;
+        max-width: 100%;
+        height: auto;
+        margin: 0 0 4px
+    }
+
+    .flownews-top-content-layout3 .others-element-header img {
+        float: none;
+        width: 100%;
+        top: 0;
+        transform: translateY(0)
+    }
+
+    .flownews-top-content-layout3 .others-element-header .article-info-type3 {
+        float: none;
+        width: 100%
+    }
+
+    .flownews-top-content-layout3 .others-element-header .article-title {
+        float: none;
+        margin: 0
+    }
+
+    .flownews-vc-element-header .article-info-top {
+        margin: 0
+    }
+
+    .flownews-top-content-layout3 .first-element-header .article-info-bottom {
+        display: none
+    }
+}
+
+.flownews-top-content-layout4.owl-carousel .owl-controls {
+    opacity: 0;
+    transition: opacity .3s ease 0s;
+    height: 0;
+    margin: 0
+}
+
+.flownews-top-content-layout4 .article-info-top h2 {
+    margin-bottom: 0
+}
+
+.flownews-top-content-layout4 .article-title a {
+    margin-right: 10px
+}
+
+.flownews-top-content-layout4.owl-carousel:hover .owl-controls {
+    opacity: 1;
+    transition: opacity .3s ease 0s
+}
+
+.flownews-top-content-layout4 .owl-controls i {
+    background: #fff;
+    font-size: 20px;
+    line-height: 20px;
+    margin-top: -10px;
+    padding: 10px;
+    position: absolute;
+    top: 50%;
+    width: 40px
+}
+
+.flownews-top-content-layout4 .owl-prev i {
+    left: 0
+}
+
+.flownews-top-content-layout4 .owl-next i {
+    right: 0
+}
+
+.flownews-top-content-layout4.owl-theme .owl-controls .owl-nav [class*=owl-] {
+    background: 0 0
+}
+
+.flownews-top-content-layout4 .owl-controls i,.flownews-top-content-layout4 .owl-controls i:hover {
+    transition: all .3s ease 0s
+}
+
+@media screen and (max-width: 600px) {
+    .flownews-top-content-layout4 .article-title {
+        float:none
+    }
+
+    .flownews-top-content-layout4 .first-element-header .article-title a {
+        font-size: 16px;
+        line-height: 16px
+    }
+
+    .flownews-top-content-layout4 .article-category a {
+        padding: 3px 10px;
+        margin-top: 7px;
+        font-size: 8px;
+        display: block
+    }
+
+    .flownews-top-content-layout4 .article-info-bottom {
+        display: none
+    }
+}
+
+@media screen and (max-width: 800px) {
+    .flownews-top-content-layout4 .first-element-header .article-info-bottom {
+        display:none
+    }
+}
+
+.flownews-top-content-layout5 {
+    height: 400px;
+    overflow: hidden
+}
+
+.flownews-top-content-layout5 article {
+    height: 100%;
+    overflow: hidden;
+    background: #000
+}
+
+.flownews-top-content-layout5 article.col-xs-5 {
+    height: 198px;
+    max-width: calc(41.66666667% - 4px);
+    max-width: -webkit-calc(41.66666667% - 4px);
+    width: 41.66666667%;
+    margin-left: 4px;
+    margin-bottom: 4px
+}
+
+.flownews-top-content-layout5 .second-element-header img {
+    width: 100%
+}
+
+.flownews-element-top-content.flownews-top-content-layout5 .article-category a {
+    margin-top: 5px;
+    padding: 6px 10px
+}
+
+.flownews-element-top-content.flownews-top-content-layout5 .article-info-top h2 {
+    margin-right: 10px;
+    margin-bottom: 5px
+}
+
+@media screen and (max-width: 1200px) {
+    .flownews-top-content-layout5 {
+        height:350px
+    }
+
+    .flownews-top-content-layout5 article.col-xs-5 {
+        height: 175px
+    }
+}
+
+@media screen and (max-width: 1100px) {
+    .flownews-element-top-content.flownews-top-content-layout5 .article-category a {
+        display:inherit
+    }
+
+    .flownews-element-top-content.flownews-top-content-layout5 .article-title {
+        float: none
+    }
+
+    .flownews-top-content-layout5 {
+        height: 300px
+    }
+
+    .flownews-top-content-layout5 article.col-xs-5 {
+        height: 150px
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-info-bottom {
+        display: none
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-title {
+        line-height: 20px
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-title a {
+        font-size: 20px
+    }
+}
+
+@media screen and (min-width: 650px) and (max-width:810px) {
+    .flownews-top-content-layout5 {
+        height:200px
+    }
+
+    .flownews-top-content-layout5 article.col-xs-5 {
+        height: 100px
+    }
+
+    .flownews-top-content-layout5 .article-info {
+        position: absolute;
+        bottom: 10px;
+        left: 10px;
+        z-index: 2;
+        margin-left: 0;
+        right: 50px
+    }
+
+    .flownews-top-content-layout5 article:hover .article-info {
+        left: 10px
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-category a,.flownews-top-content-layout5 .second-element-header .article-info-bottom {
+        display: none
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-title {
+        line-height: 14px
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-title a {
+        font-size: 14px
+    }
+}
+
+@media screen and (max-width: 805px) {
+    .flownews-top-content-layout5 .first-element-header .article-info-bottom {
+        display:none
+    }
+}
+
+@media screen and (min-width: 530px) and (max-width:650px) {
+    .flownews-top-content-layout5 .article-info-bottom,.flownews-top-content-layout5 .second-element-header .article-category a,.flownews-top-content-layout5 .second-element-header .article-info-bottom {
+        display:none
+    }
+
+    .flownews-top-content-layout5 .article-info {
+        position: absolute;
+        bottom: 10px;
+        left: 10px;
+        z-index: 2;
+        margin-left: 0;
+        right: 50px
+    }
+
+    .flownews-top-content-layout5 article:hover .article-info {
+        left: 10px
+    }
+
+    .flownews-top-content-layout5 {
+        height: auto
+    }
+
+    .flownews-top-content-layout5 .col-xs-7 {
+        width: 100%;
+        height: 250px;
+        margin-bottom: 4px
+    }
+
+    .flownews-top-content-layout5 article.col-xs-5 {
+        max-width: calc(50% - 2px);
+        max-width: -webkit-calc(50% - 2px);
+        width: 50%;
+        margin-right: 2px;
+        margin-left: 0;
+        height: 80px
+    }
+
+    .flownews-top-content-layout5 article.col-xs-5:last-child {
+        margin-left: 2px;
+        margin-right: 0
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-title {
+        line-height: 10px
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-title a {
+        font-size: 10px
+    }
+}
+
+@media screen and (min-width: 400px) and (max-width:529px) {
+    .flownews-top-content-layout5 .article-info {
+        position:absolute;
+        bottom: 10px;
+        left: 10px;
+        z-index: 2;
+        margin-left: 0;
+        right: 50px
+    }
+
+    .flownews-top-content-layout5 article:hover .article-info {
+        left: 10px
+    }
+
+    .flownews-top-content-layout5 {
+        height: auto
+    }
+
+    .flownews-top-content-layout5 .col-xs-7 {
+        width: 100%;
+        height: 200px;
+        margin-bottom: 4px
+    }
+
+    .flownews-top-content-layout5 article.col-xs-5 {
+        width: 100%;
+        max-width: 100%;
+        height: 150px;
+        margin-bottom: 4px;
+        margin-left: 0;
+        margin-right: 0
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-title {
+        line-height: 22px
+    }
+
+    .flownews-top-content-layout5 .second-element-header .article-title a {
+        font-size: 22px
+    }
+
+    .flownews-top-content-layout5 .article-info-bottom {
+        display: none
+    }
+}
+
+@media screen and (max-width: 399px) {
+    .flownews-top-content-layout5 {
+        height:auto
+    }
+
+    .flownews-top-content-layout5 .col-xs-7,.flownews-top-content-layout5 article.col-xs-2,.flownews-top-content-layout5 article.col-xs-5 {
+        width: 100%;
+        max-width: 100%;
+        height: auto;
+        margin: 0 0 4px
+    }
+
+    .flownews-top-content-layout5 .article-title {
+        float: none
+    }
+
+    .flownews-top-content-layout5 .first-element-header .article-title a,.flownews-top-content-layout5 .second-element-header .article-title a {
+        font-size: 16px;
+        line-height: 16px
+    }
+
+    .flownews-top-content-layout5 .article-category a {
+        padding: 3px 10px;
+        margin-top: 7px;
+        font-size: 8px;
+        display: block
+    }
+
+    .flownews-top-content-layout5 .article-info-bottom {
+        display: none
+    }
+}
+
+.flownews-top-content-layout6 .item-header {
+    height: 500px;
+    overflow: hidden
+}
+
+.flownews-element-top-content.flownews-top-content-layout6 .article-info {
+    top: 50%;
+    left: 50%;
+    bottom: inherit;
+    -webkit-transform: translate(-50%,-50%);
+    -moz-transform: translate(-50%,-50%);
+    -ms-transform: translate(-50%,-50%);
+    -o-transform: translate(-50%,-50%);
+    transform: translate(-50%,-50%);
+    text-align: center;
+    text-transform: uppercase
+}
+
+.flownews-element-top-content.flownews-top-content-layout6 article:hover .article-info {
+    left: 50%
+}
+
+.flownews-element-top-content.flownews-top-content-layout6 .article-comments,.flownews-element-top-content.flownews-top-content-layout6 .article-data,.flownews-element-top-content.flownews-top-content-layout6 .article-features-category,.flownews-element-top-content.flownews-top-content-layout6 .article-separator,.flownews-element-top-content.flownews-top-content-layout6 .article-title {
+    float: none;
+    display: inline-block
+}
+
+.flownews-element-top-content.flownews-top-content-layout6 .article-comments {
+    margin-right: 20px
+}
+
+.flownews-element-top-content.flownews-top-content-layout6 .article-features-category {
+    margin-left: 20px
+}
+
+@media screen and (max-width: 850px) {
+    .flownews-top-content-layout6 .item-header {
+        height:300px;
+        overflow: hidden
+    }
+
+    .flownews-element-top-content.flownews-top-content-layout6 .article-title a {
+        font-size: 16px
+    }
+
+    .flownews-element-top-content.flownews-top-content-layout6 .article-info-bottom {
+        font-size: 12px
+    }
+}
+
+@media screen and (max-width: 550px) {
+    .flownews-top-content-layout6 .item-header {
+        height:200px;
+        overflow: hidden
+    }
+
+    .flownews-element-top-content.flownews-top-content-layout6 .article-title a {
+        font-size: 13px
+    }
+
+    .flownews-element-top-content.flownews-top-content-layout6 .article-info-bottom {
+        font-size: 10px
+    }
+
+    .flownews-element-top-content.flownews-top-content-layout6 .article-info-bottom .article-comments,.flownews-element-top-content.flownews-top-content-layout6 .article-info-bottom div:nth-child(4) {
+        display: none
+    }
+}
+
+.flownews-footer-wrap .flownews-footer-top,.flownews-footer-wrap .flownews-wrap-container {
+    background: #282828
+}
+
+.flownews-footer-top .flownews_widget.fnwp_social .box_social,.flownews-footer-top .flownews_widget.fnwp_tab .box_tag,.flownews-footer-top .flownews_widget.fnwp_tag .box_tag {
+    background: 0 0
+}
+
+.flownews-footer-wrap .flownews-footer-top .flownews-wrap-container {
+    padding: 50px
+}
+
+.flownews-footer-wrap .flownews-footer-top .widget li {
+    padding: 0
+}
+
+.flownews-footer-top .col-xs-4:nth-child(1) {
+    margin-right: 34px;
+    max-width: calc(33.3333% - 34px);
+    max-width: -web-kit(33.3333% - 34px)
+}
+
+.flownews-footer-top .col-xs-4:nth-child(3) {
+    margin-left: 34px;
+    width: calc(33.3333% - 34px);
+    max-width: -web-kit(33.3333% - 34px)
+}
+
+.flownews-footer-top .col-xs-4:nth-child(2) {
+    margin: 0 16px;
+    width: calc(33.33333333% - 32px);
+    max-width: -web-kit(33.3333% - 34px)
+}
+
+.flownews-posts-content-embed-wrap-post-layout-1 iframe,.flownews-posts-content-embed-wrap-post-layout-2 iframe,.flownews-posts-content-embed-wrap-post-layout-3 iframe {
+    max-width: 100%
+}
+
+.flownews-footer-top h3.widget-title,.flownews-footer-top h3.widget-title a {
+    border-bottom: 0!important;
+    border-right: 0!important;
+    border-top: 0!important;
+    color: #fff;
+    font-size: 20px;
+    font-weight: 400;
+    height: auto;
+    letter-spacing: 1.5px;
+    margin: 0 0 25px;
+    position: relative;
+    text-align: left;
+    text-transform: uppercase
+}
+
+.flownews-footer-top .flownews_widget.fnwp_archivies .box_archivies .box_archivies_item,.flownews-footer-top .flownews_widget.fnwp_categories .box_categories .cat-item,.flownews-footer-top .widget.widget_nav_menu .menu-item,.flownews-footer-wrap .flownews-footer-top .widget li {
+    border-bottom: 1px solid #454545
+}
+
+.flownews-footer-top .widget.widget_nav_menu .menu-item,.flownews-footer-wrap .flownews-footer-top .widget li {
+    padding-bottom: 15px;
+    margin-bottom: 15px
+}
+
+.flownews-footer-top .flownews_widget.fnwp_archivies .box_archivies .box_archivies_item,.flownews-footer-top .flownews_widget.fnwp_archivies a,.flownews-footer-top .flownews_widget.fnwp_categories .box_categories .cat-item,.flownews-footer-top .flownews_widget.fnwp_categories a,.flownews-footer-top .widget.widget_nav_menu .menu-item a,.flownews-footer-wrap .flownews-footer-top .widget li a {
+    color: #fff;
+    font-size: 12px;
+    font-weight: 400;
+    letter-spacing: 1.5px;
+    text-transform: uppercase;
+    transition: color .3s ease 0s
+}
+
+.flownews-footer-top .flownews_widget.fnwp_archivies .box_archivies .box_archivies_item:hover,.flownews-footer-top .flownews_widget.fnwp_archivies a:hover,.flownews-footer-top .widget.widget_nav_menu .menu-item a:hover,.flownews-footer-wrap .flownews-footer-top .widget li a:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.flownews-footer-top .sub-menu,.flownews-footer-wrap .flownews-footer-top .widget li ul.children {
+    margin-left: 25px;
+    margin-top: 25px
+}
+
+.flownews-footer-top #wp-calendar {
+    text-align: center;
+    width: 100%;
+    color: #fff
+}
+
+.flownews-footer-top #wp-calendar caption,.flownews-footer-top #wp-calendar th {
+    text-align: center
+}
+
+.flownews-footer-top .calendar_wrap tr {
+    margin-bottom: 5px;
+    padding-bottom: 5px
+}
+
+.flownews-footer-top caption {
+    border: 1px solid #454545;
+    color: #fff;
+    font-size: 16px;
+    font-weight: 700;
+    letter-spacing: 1.5px;
+    margin: 0 0 25px;
+    padding: 12px;
+    text-transform: uppercase
+}
+
+.flownews-footer-top .calendar_wrap td {
+    padding: 10px 0
+}
+
+.flownews-footer-top .flownews_widget.fnwp_mega_posts .box_post,.flownews-footer-top .flownews_widget.fnwp_tab .box_post {
+    border-bottom: 1px solid #454545;
+    padding: 10px 0
+}
+
+.flownews-footer-top .flownews_widget.fnwp_mega_posts .box_post:first-child,.flownews-footer-top .flownews_widget.fnwp_tab .box_post:first-child {
+    padding-top: 0
+}
+
+.flownews-footer-top .flownews_widget.fnwp_mega_posts .box_post:last-child,.flownews-footer-top .flownews_widget.fnwp_tab .box_post:last-child {
+    padding-bottom: 0;
+    border-bottom: 0
+}
+
+.flownews-footer-top .flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info h4 a,.flownews-footer-top .flownews_widget.fnwp_tab .container_post.ad_one_one .box-info h4 a {
+    color: #fff;
+    font-weight: 400;
+    transition: color .3s ease 0s
+}
+
+.flownews-footer-top .flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info h4 a:hover,.flownews-footer-top .flownews_widget.fnwp_tab .container_post.ad_one_one .box-info h4 a:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.flownews-footer-top .widget_author .ab-image img {
+    float: left;
+    margin-right: 15px;
+    width: 40%
+}
+
+.flownews-footer-top .about-me .ad-text {
+    text-align: left;
+    padding: 0
+}
+
+.flownews-footer-top .about-me .ad-text p {
+    color: #b9b9b9;
+    font-size: 14px
+}
+
+.flownews_widget_contact .flownews-widget-contact-image img {
+    height: 40px;
+    margin-bottom: 16px
+}
+
+.flownews_widget_contact .flownews-widget-contact-text {
+    border-bottom: 1px solid #333;
+    margin-bottom: 21px;
+    padding-bottom: 21px
+}
+
+.flownews_widget_contact .flownews-widget-contact-address-title h4 {
+    color: #fff;
+    font-size: 22px;
+    margin-bottom: 16px
+}
+
+.flownews-widget-contact-address,.flownews-widget-contact-cell-number,.flownews-widget-contact-mail,.flownews-widget-contact-tel-number {
+    font-weight: 300;
+    letter-spacing: .5px;
+    margin-bottom: 10px
+}
+
+.flownews-footer-top .widget_search input,.flownews-widget-contact-cell-number i {
+    margin-bottom: 0
+}
+
+.flownews-widget-contact-address i,.flownews-widget-contact-cell-number i,.flownews-widget-contact-mail i,.flownews-widget-contact-tel-number i {
+    color: #fff;
+    margin-right: 10px
+}
+
+.flownews-footer-top .flownews_widget.fnwp_mega_posts .img-post.ad_one_third,.flownews-footer-top .flownews_widget.fnwp_tab .img-post.ad_one_third {
+    width: 30%
+}
+
+.flownews-footer-top .flownews_widget.fnwp_mega_posts .container_post.ad_one_one .box-info.ad_two_third,.flownews-footer-top .flownews_widget.fnwp_tab .container_post.ad_one_one .box-info.ad_two_third {
+    width: 70%
+}
+
+.flownews-footer-top .flownews_widget.fnwp_tab .content_tag,.flownews-footer-top .flownews_widget.fnwp_tag .content_tag {
+    border: 1px solid #454545;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-top .flownews_widget.fnwp_tab .content_tag a,.flownews-footer-top .flownews_widget.fnwp_tag .content_tag a {
+    color: #fff;
+    letter-spacing: 1.5px;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-top .flownews_widget.fnwp_tab .content_tag:hover a,.flownews-footer-top .flownews_widget.fnwp_tag .content_tag:hover a {
+    color: #fff;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-top .flownews_widget.fnwp_tab .content_tag:hover,.flownews-footer-top .flownews_widget.fnwp_tag .content_tag:hover {
+    border: 1px solid #e7685d;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-top .flownews_widget.fnwp_social .box-icon-social.flownews-widget-social-style1 a {
+    color: #fff;
+    font-size: 26px;
+    left: 50%;
+    margin-left: -13px;
+    margin-top: -13px;
+    position: absolute;
+    top: 50%;
+    z-index: 3;
+    transition: top .3s ease 0s
+}
+
+.flownews-footer-top .flownews_widget.fnwp_social .box-icon-social.ad_one_third {
+    height: 100px
+}
+
+.flownews-footer-top .flownews_widget.fnwp_social .box-icon-social:hover a {
+    top: 40%;
+    transition: top .3s ease 0s
+}
+
+.flownews-footer-top .widget.widget_meta li a {
+    color: #fff;
+    transition: color .3s ease 0s
+}
+
+.flownews-footer-top .widget.widget_meta li a:hover {
+    color: #e7685d;
+    transition: color .3s ease 0s
+}
+
+.flownews-footer-top .widget.widget_meta ul li {
+    border-bottom: 1px solid #454545;
+    box-sizing: border-box;
+    color: #333;
+    display: inline-block;
+    font-size: 14px;
+    letter-spacing: 1px;
+    padding: 15px 0;
+    transition: background .3s ease 0s;
+    width: 100%
+}
+
+.flownews-footer-top .widget.widget_meta ul li:first-child {
+    padding-top: 0
+}
+
+.flownews-footer-top .widget.widget_meta ul li:last-child {
+    padding-bottom: 0;
+    border-bottom: 0
+}
+
+.flownews-footer-top .fnwp_tab h3.widget-title {
+    border: 1px solid #454545;
+    font-size: 14px;
+    line-height: 1
+}
+
+.flownews-footer-top .fnwp_tab .fnwp_title_popular,.flownews-footer-top .fnwp_tab .fnwp_title_recent,.flownews-footer-top .fnwp_tab .fnwp_title_tag {
+    border-right: 1px solid #454545;
+    cursor: pointer;
+    display: inline-block;
+    line-height: 1;
+    margin-right: 0;
+    padding: 8px;
+    position: relative;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-top .fnwp_tab span:last-child {
+    border-right: 0;
+    margin-right: 0
+}
+
+.flownews-footer-top .fnwp_tab span:hover {
+    background: #e7685d;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-top .flownews_widget.fnwp_tab .fnwp_tab_active {
+    background: #e7685d!important;
+    color: #fff!important
+}
+
+.flownews-footer-top .widget.widget_recent_comments {
+    color: #fff;
+    letter-spacing: 1px
+}
+
+.flownews-footer-top .widget label {
+    background: #FFF;
+    display: block
+}
+
+.flownews-footer-top .widget.widget_search label {
+    width: 70%
+}
+
+.flownews-footer-top .widget select {
+    background: #fff;
+    border: 1px solid #f4f4f4;
+    letter-spacing: 1px;
+    max-width: 100%;
+    padding: 10px;
+    width: 100%
+}
+
+.flownews-footer-top .post-password-form input,.flownews-footer-top .widget_search input {
+    border: 0;
+    font-weight: 100;
+    height: 35px;
+    padding: 5px 7px;
+    text-align: left;
+    width: 100%
+}
+
+.flownews-footer-top .search-form .search-submit {
+    background: #e7685d;
+    color: #fff;
+    text-align: center;
+    width: 28%;
+    font-weight: 700;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-top .search-form .search-submit:hover {
+    background: #c9564c!important;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-top .search-form .screen-reader-text {
+    display: none
+}
+
+.flownews-footer-top .widget_search input.search-submit:hover {
+    background: #9c8156;
+    color: #FFF
+}
+
+.flownews-footer-top .widget_search label {
+    display: inline-block
+}
+
+.flownews-footer-top .widget_tag_cloud .tagcloud a {
+    color: #fff;
+    font-weight: 400
+}
+
+.flownews-footer-top .widget_text .textwidget {
+    color: #b9b9b9;
+    font-weight: 100;
+    letter-spacing: .5px;
+    line-height: 24px;
+    margin: 0
+}
+
+.flownews-footer-top .widget_flownews_instagram .instagram-image a {
+    width: 25%;
+    height: auto;
+    opacity: 1;
+    transition: all .3s ease 0s;
+    background: #000;
+    display: inline-block
+}
+
+.flownews-footer-top .widget_flownews_instagram .instagram-image a:hover {
+    opacity: .7;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-bottom,.flownews-footer-bottom .flownews-wrap-container {
+    background: #000
+}
+
+.flownews-footer-bottom .flownews-footer-social a {
+    font-size: 12px;
+    color: #b9b9b9;
+    line-height: 32px;
+    padding: 0 10px
+}
+
+.flownews-footer-bottom .flownews-footer-social a:first-child {
+    padding-left: 0
+}
+
+.flownews-footer-bottom .flownews-footer-social a:last-child {
+    padding-right: 0
+}
+
+.flownews-footer-bottom .col-xs-12,.flownews-footer-bottom .col-xs-4,.flownews-footer-bottom .col-xs-6 {
+    padding: 5px 0;
+    font-size: 12px;
+    letter-spacing: 1px;
+    line-height: 32px;
+    text-align: center
+}
+
+.flownews-footer-bottom .col-xs-4:nth-child(1) {
+    text-align: left
+}
+
+.flownews-footer-bottom .col-xs-4:nth-child(2) {
+    color: #b9b9b9;
+    font-size: 12px;
+    letter-spacing: 1px;
+    line-height: 32px;
+    text-align: center;
+    border-left: 1px solid #282828;
+    border-right: 1px solid #282828
+}
+
+.flownews-footer-bottom .col-xs-4:nth-child(3) {
+    color: #b9b9b9;
+    font-size: 12px;
+    letter-spacing: 1px;
+    line-height: 32px;
+    text-align: right
+}
+
+.flownews-footer-bottom .flownews-top-menu li a {
+    color: #b9b9b9;
+    font-size: 12px;
+    font-weight: 400;
+    letter-spacing: 1.5px;
+    padding: 0 0 0 15px;
+    text-transform: inherit
+}
+
+.flownews-footer-bottom a:hover {
+    color: #e7685d!important;
+    transition: all .3s ease 0s
+}
+
+.flownews-footer-bottom a {
+    transition: all .3s ease 0s
+}
+
+.backtotop {
+    bottom: 15px;
+    color: #d9d9d9;
+    font-size: 12px;
+    letter-spacing: 1px;
+    line-height: 30px;
+    position: fixed;
+    right: 15px;
+    cursor: pointer;
+    transition: all .3s ease 0s;
+    z-index: 999
+}
+
+.backtotop:hover {
+    color: #e7685d;
+    transition: all .3s ease 0s
+}
+
+.backtotop .flownewsicon.fa-angle-up {
+    background: #e7685d;
+    color: #fff;
+    font-size: 20px;
+    line-height: 1;
+    padding: 12px 15px;
+    transition: all .3s ease 0s
+}
+
+.backtotop .flownewsicon.fa-angle-up:hover {
+    background: #c9564c;
+    transition: all .3s ease 0s
+}
+
+.flownews-fullwidth .flownews-search form {
+    margin-right: 0
+}
+
+.flownews-one-page-wrap-container {
+    width: 1180px;
+    margin: 0 auto
+}
+
+@media screen and (max-width: 1180px) {
+    .flownews-one-page-wrap-container {
+        width:100%
+    }
+}
+
+.flownews_advertisement_content_banner {
+    margin: 50px auto;
+    text-align: center;
+    display: block
+}
+
+.flownews-content-no-padding .flownews-container {
+    padding: 50px 0
+}
+
+.flownews-banner-footer {
+    text-align: center
+}
+
+.content_top_banner {
+    margin-top: 0
+}
+
+.flownews-posts-content-embed-wrap {
+    position: relative;
+    padding-bottom: 56.25%;
+    padding-top: 25px;
+    height: 0
+}
+
+.flownews-posts-content-embed-wrap iframe {
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%
+}
+
+.flownews-posts-content-embed-wrap-post-layout-1 {
+    font-size: 0;
+    line-height: 1
+}
+
+.flownews-boxed .flownews-posts-content-embed-wrap-post-layout-1 iframe {
+    height: 550px
+}
+
+@media (max-width: 1000px) {
+    .flownews-boxed .flownews-posts-content-embed-wrap-post-layout-1 iframe {
+        height:auto
+    }
+}
+
+.flownews-posts-content-embed-wrap-post-layout-2 {
+    width: 100%;
+    margin-bottom: 50px
+}
+
+.flownews-posts-content-embed-wrap-post-layout-3 {
+    width: 100%;
+    margin: 50px 0
+}
+
+.flownews-load-more-type6.flownews-vc-posts-2-col .flownews-vc-element-posts-article-container .flownews-load-more-container .item-posts.first-element-posts {
+    padding-top: 0;
+    margin-top: 25px;
+    border-top: 0
+}
+
+#flownews-user-modal.modal {
+    position: fixed;
+    top: 0;
+    right: 0;
+    bottom: 0;
+    left: 0;
+    z-index: 1050;
+    display: none;
+    overflow: hidden;
+    -webkit-overflow-scrolling: touch;
+    outline: 0
+}
+
+#flownews-user-modal.fade {
+    opacity: 0;
+    -webkit-transition: opacity .15s linear;
+    -o-transition: opacity .15s linear;
+    transition: opacity .15s linear
+}
+
+#flownews-user-modal.fade.in {
+    opacity: 1
+}
+
+#flownews-user-modal .modal-dialog {
+    position: relative;
+    width: auto;
+    margin: 30px 10px
+}
+
+#flownews-user-modal.modal.fade .modal-dialog {
+    -webkit-transition: -webkit-transform .3s ease-out;
+    -o-transition: -o-transform .3s ease-out;
+    transition: transform .3s ease-out;
+    -webkit-transform: translate(0,-25%);
+    -ms-transform: translate(0,-25%);
+    -o-transform: translate(0,-25%);
+    transform: translate(0,-25%)
+}
+
+#flownews-user-modal.modal.in .modal-dialog {
+    -webkit-transform: translate(0,0);
+    -ms-transform: translate(0,0);
+    -o-transform: translate(0,0);
+    transform: translate(0,0)
+}
+
+#flownews-user-modal .modal-content {
+    background: #fff;
+    border: 3px solid #e7685d;
+    outline: 0;
+    position: relative;
+    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
+    box-shadow: 0 3px 9px rgba(0,0,0,.5)
+}
+
+#flownews-user-modal .modal-body {
+    position: relative;
+    padding: 10% 20%
+}
+
+#flownews-user-modal .modal-footer {
+    padding: 20px 40px;
+    text-align: center;
+    border-top: 1px solid #e5e5e5
+}
+
+#flownews-user-modal .modal-backdrop {
+    position: fixed;
+    top: 0;
+    right: 0;
+    bottom: 0;
+    left: 0;
+    z-index: 1040;
+    background-color: #000
+}
+
+#flownews-user-modal .modal-backdrop.fade {
+    filter: alpha(opacity=0);
+    opacity: 0
+}
+
+#flownews-user-modal .modal-backdrop.in {
+    filter: alpha(opacity=50);
+    opacity: .5
+}
+
+.flownews-login,.flownews-login-footer,.flownews-register,.flownews-register-footer,.flownews-reset-password {
+    display: none
+}
+
+div[data-active-tab="#flownews-reset-password"] .flownews-login-footer,div[data-active-tab="#flownews-reset-password"] .flownews-reset-password,div[data-active-tab="#flownews-login"] .flownews-login,div[data-active-tab="#flownews-login"] .flownews-register-footer,div[data-active-tab="#flownews-register"] .flownews-login-footer,div[data-active-tab="#flownews-register"] .flownews-register {
+    display: block
+}
+
+.flownews-loading {
+    display: none
+}
+
+#flownews-user-modal .alert {
+    padding: 15px;
+    margin-bottom: 20px;
+    border: 1px solid transparent;
+    border-radius: 4px
+}
+
+#flownews-user-modal .alert>p,#flownews-user-modal .alert>ul {
+    margin-bottom: 0
+}
+
+#flownews-user-modal .alert-danger {
+    color: #a94442;
+    background-color: #f2dede;
+    border-color: #ebccd1
+}
+
+#flownews-user-modal .alert-warning {
+    color: #8a6d3b;
+    background-color: #fcf8e3;
+    border-color: #faebcc
+}
+
+#flownews-user-modal .alert-success {
+    color: #3c763d;
+    background-color: #dff0d8;
+    border-color: #d6e9c6
+}
+
+#flownews-user-modal .alert-info {
+    color: #31708f;
+    background-color: #d9edf7;
+    border-color: #bce8f1
+}
+
+#flownews-user-modal .close {
+    float: right;
+    font-size: 21px;
+    font-weight: 700;
+    line-height: 1;
+    color: #000;
+    text-shadow: 0 1px 0 #fff;
+    filter: alpha(opacity=20);
+    opacity: .2
+}
+
+#flownews-user-modal h3 {
+    clear: none;
+    font-weight: 400;
+    line-height: 1.4;
+    margin-bottom: 20px;
+    text-align: center
+}
+
+.flonews-login-register .form-field {
+    margin: 20px 0;
+    position: relative
+}
+
+.flownews-register-footer {
+    color: #282828;
+    font-size: 14px
+}
+
+.flownews-register-footer>a {
+    color: #282828;
+    font-weight: 700
+}
+
+.form-control.input-lg.required {
+    border: 1px solid #f4f4f4;
+    border-radius: 0;
+    box-shadow: none;
+    margin-bottom: 20px;
+    margin-top: 5px
+}
+
+#flownews_login_form .alignright {
+    display: block;
+    font-size: 12px;
+    margin-top: 8px;
+    text-align: center
+}
+
+#flownews_login_form label {
+    color: #282828;
+    font-weight: 400;
+    letter-spacing: 1.5px
+}
+
+#flownews-user-modal .btn.btn-theme.btn-lg {
+    background: #f4f4f4;
+    border-radius: 0;
+    color: #282828;
+    font-size: 14px;
+    font-weight: 700;
+    height: 50px;
+    margin-top: 10px;
+    letter-spacing: 1.5px;
+    line-height: 1;
+    text-transform: uppercase;
+    width: 100%
+}
+
+.flownews-login>hr {
+    border-color: #f4f4f4;
+    margin-bottom: 15%
+}
+
+#flownews-user-modal button.close {
+    -webkit-appearance: none;
+    background: rgba(0,0,0,0);
+    border: 0;
+    cursor: pointer;
+    padding: 0;
+    position: absolute;
+    right: 10px;
+    top: 4px
+}
+
+.flonews-login-register.col-sm-2 .flonews-login-register-logged {
+    color: #fff;
+    font-size: 12px;
+    letter-spacing: 1.2px
+}
+
+.flonews-login-register.col-sm-2 .flonews-login-register-logged a {
+    margin-left: 5px;
+    color: #747474;
+    transition: all .3s ease 0s
+}
+
+.flonews-login-register.col-sm-2 .flonews-login-register-logged a:hover {
+    color: #e7685d;
+    transition: all .3s ease 0s
+}
+
+.flonews-login-register.col-sm-2 .flonews-login-register-logout a {
+    color: #fff;
+    font-size: 12px;
+    letter-spacing: 1.5px;
+    line-height: 19px;
+    transition: all .3s ease 0s
+}
+
+.flonews-login-register.col-sm-2 .flonews-login-register-logout a:hover {
+    color: #e7685d;
+    transition: all .3s ease 0s
+}
+
+@media (min-width: 768px) {
+    #flownews-user-modal .modal-dialog {
+        margin:6% auto 0;
+        width: 520px
+    }
+
+    #flownews-user-modal .modal-content {
+        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
+        box-shadow: 0 5px 15px rgba(0,0,0,.5)
+    }
+}
+
+.flownews-format-type {
+    color: #fff;
+    font-size: 25px!important;
+    opacity: .8;
+    padding: 15px;
+    position: absolute;
+    right: 0;
+    top: 0
+}
+
+.flownews-header-type3 .others-element-header .flownews-format-type,.flownews-top-content-layout3 .others-element-header .flownews-format-type,.slider-posts-item .flownews-format-type {
+    left: 0;
+    right: inherit
+}
+
+.flownews-posts-layout4 .flownews-format-type,.flownews-posts-layout5 .other-rows .flownews-format-type,.flownews-posts-type1 .others-element-header .flownews-format-type,.flownews-posts-type5 .flownews-format-type,.flownews-posts-type6 .others-post .flownews-format-type,.fnwp-tab-container .flownews-format-type,.mega-posts .flownews-format-type {
+    padding: 8px
+}
+
+.flownews-page .flownews-content ol,.flownews-page .flownews-content ul,.flownews-post .flownews-content ol,.flownews-post .flownews-content ul,ul.flownews_arrow {
+    margin: 0 0 25px 5.5%;
+    padding: 0;
+    letter-spacing: .5px
+}
+
+.flownews-page .flownews-content li,.flownews-post .flownews-content li {
+    line-height: 25px
+}
+
+.flownews-post .flownews-content ol ol,.flownews-post .flownews-content ol ul,.flownews-post .flownews-content ul ol,.flownews-post .flownews-content ul ul {
+    margin-bottom: 0
+}
+
+.comment-description li {
+    letter-spacing: 1px;
+    font-weight: 400
+}
+
+ul.flownews_arrow li {
+    list-style: none;
+    line-height: 25px
+}
+
+ul.flownews_arrow li:before {
+    display: inline-block;
+    font: normal normal normal 14px/1 flownews-FontAwesome;
+    font-size: inherit;
+    text-rendering: auto;
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: grayscale;
+    content: "\f105";
+    margin-right: 10px
+}
+
+ul.flownews_line {
+    margin: 0 0 25px 5.5%;
+    padding: 0
+}
+
+ul.flownews_line li {
+    list-style: none;
+    line-height: 26px;
+    padding-left: 20px;
+    position: relative
+}
+
+ul.flownews_line li:before {
+    content: "";
+    margin-right: 10px;
+    width: 10px;
+    border-bottom: 1px solid #e7685d;
+    position: absolute;
+    top: 13px;
+    left: 0
+}
+
+.flownews-blockquotes {
+    padding: 30px;
+    margin: 20px 0;
+    border-left-width: 2px;
+    border-left-style: solid;
+    display: block
+}
+
+.flownews-blockquotes-left {
+    text-align: left
+}
+
+.flownews-blockquotes-right {
+    text-align: right
+}
+
+.flownews-blockquotes-center {
+    text-align: center
+}
+
+.flownews-dropcaps.flownews-dropcaps-left span {
+    font-size: 50px;
+    line-height: 50px;
+    margin: 0 13px 0 0;
+    padding: 20px
+}
+
+.flownews-dropcaps.flownews-dropcaps-right span {
+    font-size: 50px;
+    line-height: 50px;
+    margin: 0 0 0 13px;
+    padding: 20px
+}
+
+.flownews-dropcaps-left span {
+    float: left
+}
+
+.flownews-dropcaps-right span {
+    float: right
+}
+
+.flownews-dropcaps:after {
+    content: "";
+    clear: both;
+    display: block
+}
+
+.flownews-dropcaps.flownews-dropcaps-right {
+    text-align: right
+}
+
+.flownews-columns-row [class*=col-] {
+    padding-left: 15px!important;
+    padding-right: 15px!important
+}
+
+@media screen and (max-width: 1024px) {
+    .flownews-content-no-padding .flownews-container {
+        padding:25px
+    }
+}
+
+@media (max-width: 750px) {
+    .vc_column_container>.vc_column-inner {
+        padding-left:15px!important;
+        padding-right: 15px!important
+    }
+
+    .vc_row[class*=vc_custom_] {
+        padding-left: 10px!important;
+        padding-right: 10px!important;
+        margin-left: 0!important;
+        margin-right: 0!important
+    }
+}
+
+@media (max-width: 1000px) {
+    .children .comments-list:before {
+        width:0
+    }
+
+    .comments-list ul.children {
+        padding-left: 20px!important
+    }
+
+    .comment-date,.comment-name {
+        clear: both;
+        text-align: left;
+        float: none;
+        display: block
+    }
+
+    .comment-date {
+        margin: 5px 0
+    }
+
+    .comments-list ul.children ul.children .comments-list {
+        padding-bottom: 25px
+    }
+}
+
+.flownews-menu-center .flownews-menu,.page-links {
+    text-align: center
+}
+
+@media (max-width: 400px) {
+    .comment-description td {
+        display:block
+    }
+}
+
+@media (max-width: 450px) {
+    .comment-image-author {
+        display:block;
+        float: none
+    }
+
+    .comment-info {
+        display: block;
+        width: 100%;
+        margin-left: 0;
+        margin-top: 10px
+    }
+
+    .comments-list ul.children {
+        padding-left: 10px!important
+    }
+}
+
+.flownews-footer-top .widget label.screen-reader-text,.page-links .page-links-title,.page-links .screen-reader-text {
+    display: none
+}
+
+.comment-closed {
+    margin-top: 20px
+}
+
+.related-item-container.owl-carousel .owl-item img {
+    max-height: 300px;
+    margin: 0 auto;
+    width: auto
+}
+
+.related-item-container .article-image {
+    max-height: 300px
+}
+
+.flownews-footer-top #wp-calendar caption {
+    padding: 10px 0
+}
+
+.flownews-footer-top .widget {
+    margin-bottom: 25px
+}
+
+.flownews-footer-top .children li:last-child {
+    border: 0!important;
+    margin: 0
+}
+
+.flownews-footer-top .rssSummary {
+    line-height: 20px;
+    margin-top: 10px
+}
+
+.page-links {
+    margin-top: 50px
+}
+
+.page-links a span {
+    background: rgba(0,0,0,0);
+    color: #333
+}
+
+.page-links span,.page-links span:hover {
+    background: #f4f4f4;
+    transition: all .3s ease 0s
+}
+
+.page-links span {
+    border: 1px solid #f4f4f4;
+    font-size: 12px;
+    line-height: 1;
+    margin: 0 2px;
+    padding: 10px 14px
+}
+
+.wpcf7 label {
+    font-weight: inherit
+}
+
+.wpcf7-submit {
+    background: #e7685d;
+    border: none;
+    color: #fff;
+    font-weight: 700;
+    height: 40px;
+    text-transform: uppercase
+}
+
+#review.review-wrapper {
+    margin-top: 50px
+}
+
+#review.review-wrapper ul {
+    margin: 0
+}
+
+.mc4wp-form-fields input[type=submit] {
+    background: #e7685d;
+    border: 0;
+    color: #fff;
+    font-weight: 700;
+    padding: 5px;
+    transition: all .3s ease 0s;
+    width: 100%
+}
+
+.mc4wp-form-fields input[type=email] {
+    border: 1px solid #f4f4f4;
+    margin-bottom: 5px;
+    padding: 5px;
+    text-align: center;
+    width: 100%
+}
+
+.mc4wp-form-fields input[type=submit]:hover {
+    background: #c9564c;
+    transition: all .3s ease 0s
+}
+
+.flownews-post-sticky .article-info {
+    background: #f4f4f4;
+    padding: 25px
+}
+
+.flownews-post-sticky .flownews-element-posts .article-info-top {
+    margin-top: 0
+}
+
+.theiaStickySidebar .flownews-element-posts:last-child,.theiaStickySidebar .widget:last-child {
+    margin-bottom: 0
+}
+
+.post-password-form input,.post-password-form label {
+    margin-top: 20px
+}
+
+.gallery.gallery-size-thumbnail .gallery-item img {
+    border: 0!important
+}
+
+.gallery.gallery-size-thumbnail .gallery-item .gallery-caption {
+    line-height: 22px;
+    margin-bottom: 20px;
+    margin-top: 10px
+}
+
+.flownews-no-comment-data .article-info .article-comments,.flownews-no-comment-data .article-info .article-data,.flownews-no-comment-data .article-info .article-separator,.flownews-no-comment-data .fnwp-widget .data {
+    display: none!important
+}
+
+@media screen and (min-width: 1400px) {
+    .flownews-layout-1400 .flownews-wrap-container,.flownews-layout-1600 .flownews-wrap-container {
+        width:1400px
+    }
+}
+
+@media screen and (min-width: 1600px) {
+    .flownews-layout-1600 .flownews-wrap-container {
+        width:1600px
+    }
+}
+
+.menu-item>a i.flownewsicon {
+    padding: 0;
+    font-size: 13px
+}
+
+.menu-item>a i.flownewsicon:hover {
+    background: 0 0!important
+}
+
+.flownews-menu-lefet .flownews-menu {
+    text-align: left
+}
+
+.flownews-menu-right .flownews-menu {
+    text-align: right
+}
+
+.flownews-menu-style2 nav ul li a:hover {
+    color: #FFF;
+    background: 0 0;
+    border-bottom: 0
+}
+
+.flownews-menu-style2 ul.submenu li:first-child .submenu {
+    border-top: 1px solid transparent
+}
+
+.flownews-menu-style2 nav li ul.submenu li.current-menu-ancestor>a:hover,.flownews-menu-style2 nav li ul.submenu li.current-menu-item>a:hover,.flownews-menu-style2 nav ul.submenu li a:hover {
+    color: #e7685d
+}
+
+.flownews-menu-style2 nav li ul.submenu li.current-menu-ancestor>a,.flownews-menu-style2 nav li ul.submenu li.current-menu-item>a {
+    color: #333;
+    background: #FFF
+}
+
+.flownews-menu-style2 nav>ul>li.current-menu-ancestor:before,.flownews-menu-style2 nav>ul>li.current-menu-item:before,.flownews-menu-style2 nav>ul>li.current_page_item:before,.flownews-menu-style2 nav>ul>li:hover:before {
+    background-color: #e7685d;
+    width: 100%;
+    content: '';
+    height: 3px;
+    position: absolute;
+    bottom: 0;
+    left: 0;
+    right: 0;
+    margin: 0 auto;
+    -webkit-transform: translate3d(0,0,0);
+    transform: translate3d(0,0,0);
+    -webkit-transition: width .2s ease;
+    -moz-transition: width .2s ease;
+    -o-transition: width .2s ease;
+    transition: width .2s ease
+}
+
+.flownews-menu-style2 nav li ul.submenu li.current-menu-ancestor,.flownews-menu-style2 nav li ul.submenu li.current-menu-item,.flownews-menu-style2 nav ul li.current-menu-ancestor,.flownews-menu-style2 nav ul li.current-menu-item,.flownews-menu-style2 nav ul li.current_page_item,.flownews-menu-style3 nav li ul.submenu li.current-menu-ancestor,.flownews-menu-style3 nav li ul.submenu li.current-menu-item,.flownews-menu-style3 nav ul li.current-menu-ancestor,.flownews-menu-style3 nav ul li.current-menu-item,.flownews-menu-style3 nav ul li.current_page_item {
+    background: 0 0
+}
+
+.flownews-menu-style2 .flownews-header-bottom,.flownews-menu-style2 .flownews-header-bottom .flownews-wrap-container,.flownews-menu-style2 .flownews-header-sticky {
+    border: 0
+}
+
+.flownews-menu-style2 .flownews-menu .menu-item-object-category .flownews-mega-menu,.flownews-menu-style2 .submenu,.flownews-menu-style2 ul.submenu {
+    border: 0;
+    border-top: 0
+}
+
+.flownews-menu-style3 nav ul li a:hover {
+    color: #e7685d;
+    background: 0 0;
+    border-bottom: 0
+}
+
+.flownews-menu-style3 .flownews-element-posts .article-category a:hover {
+    color: #FFF
+}
+
+.flownews-menu-style3 nav li ul.submenu li.current-menu-ancestor>a,.flownews-menu-style3 nav li ul.submenu li.current-menu-ancestor>a:hover,.flownews-menu-style3 nav li ul.submenu li.current-menu-item>a,.flownews-menu-style3 nav li ul.submenu li.current-menu-item>a:hover,.flownews-menu-style3 nav li.current-menu-ancestor>a,.flownews-menu-style3 nav ul.submenu li a:hover {
+    color: #e7685d
+}
+
+.flownews-menu-style3 nav li ul.submenu li.current-menu-ancestor>a,.flownews-menu-style3 nav li ul.submenu li.current-menu-item>a {
+    background: #FFF
+}
+
+.flownews-top-news-ticker .ticker-wrapper.has-js {
+    margin: 0;
+    padding: 0;
+    width: 100%;
+    height: 32px;
+    display: block;
+    font-size: .75em
+}
+
+.flownews-top-news-ticker .ticker {
+    width: 90%;
+    display: block;
+    position: relative;
+    overflow: hidden;
+    background-color: #000
+}
+
+.flownews-top-news-ticker .ticker-title {
+    color: #900;
+    font-weight: 700;
+    background-color: #000;
+    text-transform: uppercase;
+    position: relative;
+    z-index: 10;
+    padding: 5px 10px 0 0
+}
+
+.flownews-top-news-ticker .ticker-content {
+    font-weight: 700;
+    line-height: 15px;
+    margin-left: -8px;
+    overflow: hidden;
+    padding-top: 9px;
+    position: absolute;
+    white-space: nowrap
+}
+
+.flownews-top-news-ticker .ticker-content:focus {
+    text-decoration: none
+}
+
+.flownews-top-news-ticker .ticker-content a {
+    text-decoration: none;
+    overflow: hidden;
+    color: #fff;
+    transition: all .3s ease 0s
+}
+
+.flownews-top-news-ticker .ticker-content a:hover {
+    color: #e7685d;
+    transition: all .3s ease 0s;
+    text-decoration: none
+}
+
+.flownews-top-news-ticker .ticker-swipe {
+    padding-top: 9px;
+    position: absolute;
+    top: 0;
+    background-color: #000;
+    display: block;
+    width: 500px;
+    height: 23px
+}
+
+.flownews-top-news-ticker .ticker-swipe span {
+    margin-left: 1px;
+    background-color: #FFF;
+    height: 12px;
+    width: 1px;
+    display: block
+}
+
+.flownews-top-news-ticker .ticker-controls {
+    padding: 0;
+    list-style-type: none;
+    float: left;
+    text-align: right
+}
+
+.flownews-top-news-ticker .ticker-controls li {
+    cursor: pointer;
+    display: inline-block;
+    margin-left: 10px;
+    padding: 0
+}
+
+.flownews-top-news-ticker .js-hidden,.flownews-top-news-ticker .ticker-controls li.jnt-play-pause,.flownews-top-news-ticker .ticker-controls li.jnt-play-pause.paused {
+    display: none
+}
+
+.flownews-top-news-ticker .ticker-controls li.jnt-prev:before {
+    font: normal normal normal 14px/1 flownews-FontAwesome;
+    content: "\f104";
+    color: #FFF
+}
+
+.flownews-top-news-ticker .ticker-controls li.jnt-prev.over:before {
+    color: #e7685d
+}
+
+.flownews-top-news-ticker .ticker-controls li.jnt-next:before {
+    font: normal normal normal 14px/1 flownews-FontAwesome;
+    content: "\f105";
+    color: #FFF
+}
+
+.flownews-top-news-ticker .ticker-controls li.jnt-next.over:before {
+    color: #e7685d
+}
+
+.flownews-top-news-ticker .no-js-news {
+    padding: 10px 0 0 45px;
+    color: #F8F0DB
+}
+
+.flownews-top-news-ticker .left .ticker-content,.flownews-top-news-ticker .left .ticker-controls,.flownews-top-news-ticker .left .ticker-title,.left .ticker {
+    float: left
+}
+
+.flownews-top-news-ticker .left .ticker-controls {
+    line-height: 16px;
+    margin: 8px 0 0;
+    width: 10%
+}
+
+.flownews-top-news-ticker .right .ticker-content,.flownews-top-news-ticker .right .ticker-controls,.flownews-top-news-ticker .right .ticker-title,.right .ticker {
+    float: right
+}
+
+.flownews-top-news-ticker .right .ticker-controls {
+    padding-right: 6px
+}
+
+.flownews-top-news-ticker .right .ticker-title {
+    padding: 0 0 0 20px
+}
+
+.flownews-top-news-ticker .ticker-title span {
+    background: #e7685d;
+    color: #fff;
+    display: block;
+    font-size: 10px;
+    font-weight: 700;
+    letter-spacing: 1px;
+    line-height: 1;
+    text-transform: uppercase;
+    padding: 6px 10px
+}