/*
Theme Name: UpVote
Theme URI: http://themeforest.net/user/ThemeWarriors/portfolio
Description: WordPress theme to create site like Hacker News
Author: ThemeWarrior
Author URI: http://www.themewarrior.com
Version: 2.1.0
License: GPL
License URI: license.txt
Text Domain: upvote
Tags: one-column, two-columns, right-sidebar, custom-menu, featured-images, translation-ready
*/


/**
 * Table of Contents:
 *
 * 1.0 - Imported Styles
 * 2.0 - Common Styles
 *   2.1 - Heading
 * 3.0 - Main Layout
 * 4.0 - Header Layout
 *   4.1 - Logo
 *   4.2 - Menu Navigations
 *   4.3 - Slideshow
 * 4.0 - Main Layout
 * 5.0 - Articles
 *   5.1 - Common
 *   5.3 - Comments
 *   5.4 - Gallery
 *   5.5 - History Timeline
 * 6.0 - Widgets
 *   6.1 - Commons
 *   6.2 - About Author Widget
 *   6.3 - Search Widget
 *   6.4 - Popular Posts Widget
 *   6.5 - Category Widget
 *   6.6 - Tags Cloud
 *   6.7 - Instagram Feeds Widget
 *   6.8 - Article Widget
 * 7.0 - Forms
 * 8.0 - Footer
 * 9.0 - Standard WordPress Styles
 * ----------------------------------------------------------------------------
 */


/* -----------------------------------
    1.0 - Imported Styles
-----------------------------------*/


/* -----------------------------------
    2.0 - Common Styles
-----------------------------------*/

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    background: #fff;
    font: 14px/180% 'Roboto', Helvetica, Arial, sans-serif;
    color: #656565;
}

html.jPanelMenu {
    margin-top: 0 !Important;
}

p {
    margin-bottom: 25px;
}

p:last-child {
    margin-bottom: 0;
}

input,
textarea,
select {
    font: 14px 'Roboto', Helvetica, Arial, sans-serif;
}

input[type="submit"],
button {
    font: 16px 'Roboto', Helvetica, Arial, sans-serif;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 50px;
}

a {
    transition: all ease-in .3s;
    text-decoration: none
}

a:hover {
    text-decoration: none !important
}

a:hover {
    color: #fb9c1b;
}

blockquote {
    color: #9e9e9e;
    margin: 30px 7%;
    padding-left: 20px;
    border-left: 5px solid #ddd;
}

address {
    margin-bottom: 20px
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: ""
}

pre,
code {
    font: .9em/120% 'Courier New', Courier, monospace;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 30px 0;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

th {
    text-align: left
}

table>thead>tr>th,
table>tbody>tr>th,
table>tfoot>tr>th,
table>thead>tr>td,
table>tbody>tr>td,
table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #dddddd;
}

table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #dddddd;
}

table>caption+thead>tr:first-child>th,
table>colgroup+thead>tr:first-child>th,
table>thead:first-child>tr:first-child>th,
table>caption+thead>tr:first-child>td,
table>colgroup+thead>tr:first-child>td,
table>thead:first-child>tr:first-child>td {
    border-top: 0
}

table>tbody+tbody {
    border-top: 2px solid #dddddd
}

img,
embed,
iframe,
object,
video {
    max-width: 100%;
}

.embed #video {
    height: auto;
}

.video-player .video-embed {
    margin-top: 10px;
    position: relative;
}

article.hentry .video-player {
    display: block;
    margin-left: 0;
    margin-top: 20px;
    margin-left: 110px;
}

article.hentry.format-video .video-player .video-embed .vids>div {
    max-width: 100%;
}

.video-player .video-embed>img {
    max-width: 100%;
}

.video-embed .vids {}

.video-embed .vids iframe,
.video-embed .vids embed,
.video-embed .vids object,
.video-embed .vids video {
    width: 100%;
}

.video-embed .vids video {
    min-height: inherit;
    height: auto;
}

.single .video-embed .vids iframe,
.single .video-embed .vids embed,
.single .video-embed .vids object {
    height: 100%;
    width: 100%;
}

.video-embed .vids iframe.vine-embed {
    min-height: 480px;
}

img {
    height: auto;
    display: block;
}

::selection {
    background-color: #f66767;
    color: #fff;
}

.thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.clear {
    float: left;
    clear: both;
    width: 100%;
}

.clearfix {
    *zoom: 1
}

.clearfix:before,
.clearfix:after,
article.hentry:after,
.row:after,
.input-wrapper:after {
    display: table;
    content: "";
    width: 100%;
}

.tagsinput {
    border: 1px solid #ccc;
    background: #FFF;
    width: 100% !important;
    height: auto !important;
    min-height: inherit !important;
    overflow: hidden !important;
}

.tagsinput input {
    font-family: inherit !important;
    width: 100% !important;
}

.tagsinput span.tag {
    padding: 1px 6px !important;
}

div.tagsinput span.tag {
    line-height: 1.5;
    margin-bottom: 0;
}

div.tagsinput input {
    margin-bottom: 0;
    padding: 0;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
}

.tablecell {
    display: table-cell;
    vertical-align: middle;
}



/**
 * 2.1 Heading
 * ----------------------------------------------------------------------------
 */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 20px;
    font-weight: 500;
    font-style: normal;
    color: #000000;
    font-family: "Roboto";
}

h1 {
    font-size: 2.2em;
}

h2 {
    font-size: 1.7em;
}

h3 {
    font-size: 1.4em;
}

h4 {
    font-size: 1.17em;
}

h5 {
    font-size: .83em;
}

h6 {
    font-size: .75em;
    margin-bottom: 10px;
}



/* -----------------------------------
    3.0 - Main Layout
-----------------------------------*/

.container {
    width: 100%;
    max-width: 1600px;
    padding: 0 20px;
    margin: 0 auto;
}

#header-display {
    margin-bottom: 30px;
}

.header-ads img {
    margin-bottom: 40px;
    display: block;
}

.row .column {
    float: left;
}

.row .column.column-1 {
    width: 48%;
    margin-right: 4%;
}

.row .column.column-1:nth-child(2n+2),
.row .column.column-1:last-child,
.active-users-widget ul li:nth-child(2n+2) {
    margin-right: 0;
}

.row.column-2 .column {
    width: 30.666666%;
    margin-right: 4%;
}

.row.column-2 .column:nth-child(3n+3) {
    margin-right: 0;
}



/* -----------------------------------
    4.0 - Header
-----------------------------------*/


/**
 * 4.1 Header
 * ----------------------------------------------------------------------------
 */




/**
* 4.2 Menu Navigations
* ----------------------------------------------------------------------------
*/



#user-menu .user-nav ul {
    display: block;
    position: absolute;
    top: 61px;
    width: 200px;
    right: 0;
    z-index: 100;
    text-align: right;
    display: none;
    margin-top: 1px;
    background: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.05), 0 0 7px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
}

.mobile-menu .user-nav ul {
    margin-top: 0;
    position: relative;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu .user-nav ul.active {
    max-height: 1000px;
    transition: all ease-in .3s;
}

.user-menu-toggle:hover {
    background: #fb9c1b;
}

.mobile-menu .user-nav ul li {
    position: relative;
    z-index: 1;
}


.site-navigation ul li {
    float: left;
    position: relative;
}

.site-navigation ul li.menu-item-has-children ul.sub-menu {
    position: absolute;
    width: 250px;
    top: 100%;
    background: #fff;
    z-index: 5;
    max-height: 0;
    box-shadow: 0 6px 4px 0 rgba(0,0,0,.16);
    transition: all ease-in .3s;
    -webkit-transition: all ease-in .3s;
    -moz-transition: all ease-in .3s;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.site-navigation ul li.menu-item-has-children>a:after {
    display: inline-block;
    vertical-align: middle;
    font: normal normal normal 12px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    margin-left: 8px;
    content: "\f107";
}

.site-navigation ul.sub-menu li.menu-item-has-children>a:after {
    float: right;
    transform: rotate(-90deg)
}

.mobile-menu .site-navigation ul li.menu-item-has-children>a:after {
    content: none;
}

#masthead .site-navigation ul li.menu-item-has-children:hover ul.sub-menu,
.mobile-menu .site-navigation ul li.menu-item-has-children ul.sub-menu.opened {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
}

.mobile-menu .site-navigation ul li.menu-item-has-children ul.sub-menu li a {
    padding-left: 10px !important;
}

.site-navigation ul li.menu-item-has-children ul.sub-menu li {
    display: block;
    width: 100%;
}
nav#main-menu.site-navigation ul li.menu-item-has-children ul.sub-menu li, nav#user-menu.site-navigation ul li{
    border-bottom: 1px solid #f5f5f5;
}

nav#main-menu.site-navigation ul li.menu-item-has-children ul.sub-menu li:last-child, nav#user-menu.site-navigation ul li:last-child{
    border-bottom: none;
}

nav#main-menu.site-navigation ul li.menu-item-has-children ul.sub-menu li a,
nav#user-menu.site-navigation ul li a {
    color: #000 !important;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
    font-weight: normal;
}


nav#main-menu.site-navigation ul li.menu-item-has-children ul.sub-menu li:hover a,
nav#main-menu.site-navigation ul li.menu-item-has-children ul.sub-menu li a:hover {
    background: none !important;
    color: #fb9c1b !important;
}

.site-navigation ul li a {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

#main-header nav#main-menu.site-navigation ul li:hover>a,
#main-header nav#user-menu ul li:hover>a {
    color: #fb9c1b;
}

#main-header nav#main-menu.site-navigation ul.sub-menu li a,
#main-header nav#user-menu ul li a {
    color: #555;
}

.mobile-menu {
    display: none;
}

body.admin-bar .mobile-menu {
    margin-top: 32px;
}

nav#main-menu.site-navigation ul li a {
    color: #fff !important;
    font-size: 18px;
    line-height: 23px;
    padding: 30px 15px;
     margin-bottom: 0;
}

.mobile-menu nav#main-menu.site-navigation ul li a {
    color: #333333;
}

nav#main-menu.site-navigation ul li a .icon {
    margin-left: 10px;
}

nav#user-menu.site-navigation>ul li a,
ul.user-menu li a {
    color: #fff;
}

.mobile-menu ul.user-menu {
    margin-top: 10px;
    display: none;
}

.mobile-menu ul.user-menu li {
    margin-bottom: 10px;
}

.mobile-menu ul.user-menu li a {
    margin-bottom: 0;
}

nav#user-menu.site-navigation ul li a.btn.btn-block {
    margin-bottom: 0;
}

#main-header nav#user-menu ul li.login a {
    background-color: transparent !important;
    font-size: 18px !important;
    padding: 0;
}

#main-header nav#user-menu ul li.login:hover a, 
#main-header nav#user-menu ul li.login a:hover {
    color: #fb9c1b !important;
}

#main-header nav#user-menu ul li.submit a,
#main-header nav#user-menu ul li.login a {
    color: #fff !important;
}

#main-header nav#user-menu ul li.submit a {
    width: 130px;
    height: 30px;
    font-size: 20px !important;
    padding: 0;
    line-height: 30px;
    margin-left: 0;
    font-family: Arial;
    font-weight: bold;
}

nav#user-menu.site-navigation>ul li a,
ul.user-menu li a {
    background-color: #039be5;
}

#main-header nav#user-menu ul li.submit a i {
    font-size: 18px;
    line-height: 30px;
}

.panel-trigger {
    padding: 10px;
    font-size: 30px;
    float: right;
    display: none;
    cursor: pointer;
}

#jPanelMenu-menu .widget h3.post-title {
    font-family: Roboto;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    color: #000000;
    font-size: 14px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.24s ease-in-out;
    -moz-transition: opacity 0.24s ease-in-out;
    transition: opacity 0.24s ease-in-out;
    margin-left: 70px;
}

#jPanelMenu-menu .widget li {
    float: none;
}

#jPanelMenu-menu .warrior_popular_posts ul li .thumbnail,
#jPanelMenu-menu .warrior_trending_topic ul li .thumbnail,
#jPanelMenu-menu .recent-post-widget ul li .thumbnail {
    width: 50px;
    height: 50px;
    position: relative;
}

.mobile-menu #main-menu.site-navigation ul li {
    display: block;
    background-color: #fff;
}

.mobile-menu .site-navigation ul li a,
.mobile-menu .user-nav ul li a {
    border-bottom: solid 1px #eee;
    display: block;
    font-family: "Roboto";
    font-weight: 700;
    font-style: normal;
    color: #fff;
    font-size: 12px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.24s ease-in-out;
    -moz-transition: opacity 0.24s ease-in-out;
    transition: opacity 0.24s ease-in-out;
}

.mobile-menu .site-navigation ul li a {
    padding: 15px 10px !Important;
    line-height: 7px;
}

.mobile-menu .user-nav ul li a {
    color: #555;
    display: block;
    padding: 10px 15px;
    background: #fff;
}

.mobile-menu .site-navigation ul li.menu-item-has-children ul.sub-menu {
    position: relative;
    top: 0;
    width: auto;
}

.dropdown-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    line-height: 36px;
    cursor: pointer;
    z-index: 1;
    color: grey;
    text-align: center;
}



/**
* 4.3 Logo
* ----------------------------------------------------------------------------
*/

#logo {
    float: left;
    max-width: 250px;
    position: relative;
}

h2.site-title {
    margin-bottom: 0;
    color: #fff;
}

#footer-logo {
    float: none;
    display: inline-block;
}

#logo img,
#footer-logo span {
    position: relative;
    z-index: 1;
}

#logo .site-title a,
#footer-logo .site-title a {
    position: relative;
    z-index: 1;
}

.mobile-menu nav#main-menu,
.mobile-menu nav#user-menu {
    float: none;
    margin: 0;
}

.mobile-menu nav#user-menu {
    padding: 20px 0;
    background-color: #fff;
}



/* -----------------------------------
    5.0 - Articles
-----------------------------------*/


/**
 * 5.1 Commons
 * ----------------------------------------------------------------------------
 */

.sort {
    float: right;
}

.sort select {
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.page-user {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.widget::marker {display: none !important;font-size: 0em;}

body.page-template-page-submit .page-user {
    width: 70%;
    max-width: 800px;
}

article.hentry,
.inner,
.pagination span,
.pagination a,
.pagination span a {
    position: relative;
}

article.hentry .entry-content {
    margin-top: 20px;
}

article.hentry .entry-content p:last-child {
    margin-bottom: 0;
}

.gallery a {
    display: inline-block;
    margin-bottom: 15px;
}

.entry-content .gallery {
    text-align: justify;
}

.entry-content .gallery:after {
    content: '';
    display: inline-block;
    width: 100%;
}

#maincontent article.hentry .entry-content h1 {
    font-size: 30px;
    line-height: 120%;
}

#maincontent article.hentry .entry-content h2 {
    font-size: 25px;
    line-height: 120%;
}

#maincontent article.hentry .entry-content h3 {}

#maincontent article.hentry .entry-content h4 {}

#maincontent article.hentry .entry-content h5 {
    font-size: 12px;
    line-height: 100%;
}

#maincontent article.hentry .entry-content h6 {
    font-size: 10px;
    line-height: 100%;
}

.entry-content dl dt {
    font-weight: bold;
}

.entry-content dl dd {
    padding-left: 20px;
    margin-bottom: 10px;
}

.entry-content dl dd:before {
    content: '-';
    position: absolute;
    left: 0;
}

.entry-content ul,
.entry-content ul li,
.entry-content ol,
.entry-content ol li {
    list-style-type: inherit;
}

.entry-content ul,
.entry-content ol {
    margin-left: 20px;
    margin-bottom: 30px;
}

.entry-content ol ul,
.entry-content ul ol {
    margin-bottom: 0;
}

.entry-content ol li {
    list-style-type: decimal;
}

.entry-content ol li ul>li {
    list-style-type: disc;
}

.entry-content ul li ol>li {
    list-style-type: decimal;
}

.page-links {
    margin-bottom: 30px;
}

.pagination span,
.pagination a,
.pagination span a {
    padding: 4px 10px;
    min-width: 20px;
    display: block;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
}

.pagination {
    margin-top: 50px;
    margin-left: -15px;
}

.pagination a,
.pagination span {
    display: inline-block;
    margin: 5px;
    font-size: 14px;
    border: none;
    font-weight: normal !Important;
}

.pagination a {
    color: #000;
    line-height: 20px;
    border: none;
    font-weight: bold !important;
}

.wp-pagenavi a:hover {
    background-color: #000;
    border-color: #000 !important;
    color: #fb9c1b;
}

.wp-pagenavi span.current {
    line-height: 20px;
    background: #efefef;
    border: solid 1px #dadada;
}

.wp-pagenavi .pages {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: normal;
}

.post-lists article.hentry {
    margin-bottom: 20px;
    padding-bottom: 20px;
}


.post-lists article.hentry.sticky {
    background-color: #fffde7;
    padding: 30px;
}

#maincontent article.blog .entrymeta {
    margin-left: 0;
}

span.rank {
    font-size: 30px;
    color: #aaa;
    vertical-align: middle;
    margin-right: 20px;
}

.points {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.votes {
    padding: 0 5px;
    border-radius: 3px;
    margin-top: 10px;
}

.voters ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
    vertical-align: middle;
}

.voters ul li img {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: auto;
    border-radius: 16px;
}

.voters>span {
    float: left;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    width: 80px;
}

.voters ul li a {
    display: inline-block;
    border-radius: 13px;
    position: relative;
}

.voters ul li a span {
    position: absolute;
    bottom: 100%;
    background: #555;
    line-height: 100%;
    padding: 5px;
    border-radius: 3px;
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in .2s;
    z-index: 1;
    display: block;
    white-space: nowrap;
    color: #fff;
    left: 0;
}

.voters ul li a span:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #555 transparent transparent;
    left: 12px;
}

.voters ul li:hover a span {
    visibility: visible;
    opacity: 1;
}

.voters>ul {
    display: block;
    margin-left: 80px !important;
}

.votes a {
    padding: 5px;
    display: inline-block;
    line-height: 10px;
}

h1.page-title {
    font: 700 30px 'Roboto', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 40px;
    text-transform: none !important;
    letter-spacing: 0;
}

.detail h1.page-title {
    margin-bottom: 20px;
}

h1.page-title>a:before {
    display: inline-block;
    content: '\f08e';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: #fb9c1b;
    margin-right: 10px;
}

body.single-post #maincontent article.hentry .entrycontent,
body.single-story #maincontent article.hentry .entrycontent,
#maincontent article.blog .entrycontent {
    margin-left: 0 !important;
}

#maincontent article.hentry .thumbnail,
#sidebar article.hentry .thumbnail{
    width: 90px;
    float: left;
    margin-right: 20px;
    overflow: hidden;
    position: relative;
}

#sidebar article.hentry .thumbnail img {
    max-height: 90px;
}

.post-lists article.hentry .entrycontent.clearfix:before,
.post-lists article.hentry .entrycontent.clearfix:after {
    content: none;
}

body.single-post #maincontent article.hentry .thumbnail .overlays,
body.single-story #maincontent article.hentry .thumbnail .overlays,
#maincontent article.blog .thumbnail .overlays {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 40%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc212121', GradientType=0);
    /* IE6-9 */
    left: 0;
    pointer-events: none;
}

article.hentry .thumbnail img {}

article.hentry .about-profile-widget .detail {
    margin-left: 120px;
}

.commented-article article.hentry .detail {
    margin-left: 110px;
}

.commented-article article.hentry .no-thumbnail .detail {
    margin-left: 0;
}

.commented-article article.hentry .no-thumbnail .thumbnail {
    display: none;
}

article.blog.hentry .detail,
body.single article.hentry .detail {
    margin-left: 0 !important;
}

.error404 article.hentry .detail {
    margin-left: 0;
}

article.format-video .thumbnail:after,
article.format-audio .thumbnail:after,
#sidebar .widget article.format-video .thumbnail:after,
#sidebar .widget article.format-audio .thumbnail:after,
.yarpp-related li.format-audio .thumbnail:after,
.yarpp-related li.format-video .thumbnail:after {
    display: inline-block;
    font: normal normal normal 14px/1 icomoon;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    font-family: fontawesome;
    content: '\f04b';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    pointer-events: none;
    font-size: 30px;
    border-radius: 50%;
    color: #ffffff;
    text-shadow: 0px 1px 1px #333;
    text-indent: 6px;
}

article.format-standard .yarpp-related li.format-standard .thumbnail:after,
article.format-image .yarpp-related li.format-image .thumbnail:after,
article.format-video .yarpp-related li.format-standard .thumbnail:after,
article.format-video .yarpp-related li.format-image .thumbnail:after,
article.format-audio .yarpp-related li.format-standard .thumbnail:after,
article.format-audio .yarpp-related li.format-image .thumbnail:after {
    display: none;
}



.single-post article.format-video .thumbnail:after,
.single-post article.format-audio .thumbnail:after,
article.blog .thumbnail:after,
article.blog .thumbnail:after {
    font-size: 62px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-top: -40px;
    margin-left: -40px;
}

.active-users-widget ul li {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
}

.active-users-widget ul li>a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    overflow: hidden;
    transition: all ease-in .3s;
    backface-visiility: hidden;
}

.active-users-widget ul li>a:hover {
    opacity: .8;
}

.widget article.format-video .thumbnail:after,
.widget article.format-audio .thumbnail:after {
    font-size: 30px !important;
}

article.hentry .detail.no-thumbnail {
    margin-left: 0 !important;
}

article.hentry .detail.no-thumbnail .entrymeta {
    padding-left: 0;
}

article.hentry .post-title {
    font-size: 24px;
    margin-bottom: 5px;
}

article.hentry p.excerpt {
    margin-bottom: 15px;
}

.vids .fluidvids {
    margin-bottom: 30px;
}

.tags a {
    display: inline-block;
    background-color: #eee;
    font-size: 12px;
    line-height: 1;
    margin: 0 5px 10px 0;
    padding: 5px 10px;
    border-radius: 50px;
}

#trending-tags{width: 100%; float: left; border-bottom: 1px solid #dee2e6; padding: 30px 0 40px; margin: 0 0 60px 0;}

ul.trending-tags li {
    display: inline-block;
    margin-right: 10px;
    line-height: 100%;
    margin-bottom: 10px;
    vertical-align: middle;
}

#sidebar ul.trending-tags li {
    display: inline-block !Important;
    width: auto;
    float: none;
    margin-right: 0;
    margin-bottom: 0;
}

#sidebar ul.trending-tags li a {
    text-decoration: none;
}

ul.trending-tags li.first {
   width: 100%;
   color: #000;
   font-size: 20px;
   font-weight: 500;
   font-family: 'Oswald', sans-serif;
   margin: 0 0 20px 0;
}

ul.trending-tags li.first:before {
    content: '\f097';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

ul.trending-tags li a {
    float: left;
    background: #fb9c1b;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border-radius: 3px;
    padding: 5px 10px;
    margin: 0;
}

ul.trending-tags li a:hover {
    background: #000;
}

span.domain {
    font: 12px/100% "Roboto", Arial, helvetica;
    font-style: italic;
    color: #aaa;
}

.entrymeta,
.entry-meta {
    font-size: 12px;
}

.entrymeta span:last-child {
    margin-right: 0;
}

.comment-header .entrymeta {
    display: inline-block;
}

.comment-avatar {
    float: left;
    margin-right: 20px;
}

.comment-avatar img {
    width: 30px;
    border-radius: 50px;
}

.entrymeta span,
.entry-meta span {
    margin-right: 10px;
    display: inline-block;
}

.entrymeta span a,
.entry-meta span a {}

.entrymeta span i.fa {
    margin-right: 3px;
}

.entrymeta span.avatar {
    margin-right: 10px;
}

.entrymeta span.avatar a,
.entrymeta span.date a,
.entrymeta span.comments a {
    color: #aaa !important;
}




/**
 * 5.2 Comments
 * ----------------------------------------------------------------------------
 */

#respond {}

.comments-list ul li {
    position: relative;
}

ul.children li {
    margin-left: 20px;
}

ul.children li .comment-header,
ul.children li .comment-detail,
ul.children li .comment-footer {
    padding-left: 70px;
}

ul.children li .comment-vote a {
    margin-left: 20px
}

ul.children .comment-parent {
    margin-bottom: 40px !important;
}

.comment-header,
.comment-detail,
.comment-footer {
    padding-left: 50px;
    float: left;
    width: 100%;
}

p.moderate {
    padding: 10px;
    font-size: 12px;
    background: #ecffec;
    border-radius: 5px;
    line-height: 100%;
    color: green;
    border: solid 1px green;
}

#comment-widget {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 50px;
}

.comment-widget {
    clear: both;
}

.comment-header {
    padding-bottom: 10px;
    padding-left: 0;
    margin-bottom: 10px;
    position: relative;
    float: left;
    width: 100%;
}

.comment-header .entrymeta span.author {
    font-weight: 700;
}

.comment-parent:after {
    content: '';
    display: block;
    width: 1px;
    top: 50px;
    bottom: 0;
    background-color: #eee;
    position: absolute;
    left: 15px;
    z-index: 0;
}

ul.children .comment-parent:after {
    top: 80px;
    left: 40px;
}

.comment-vote a {
    position: absolute;
    padding: 10px;
    line-height: 10px;
    margin-top: -10px;
    top: 0;
    left: 2px;
    font-size: 18px;
    background-color: #fff;
    z-index: 2;
}

.comment-vote a:last-child {
    top: 100%;
    margin-top: 10px;
    padding-bottom: 20px;
}

.show-comment,
.comment-footer a {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    color: #99A43E;
    margin-left: 30px;
    cursor: pointer;
}

.comment-footer {
    margin-left: -30px;
    margin-top: 20px;
}

.comment-header .show-comment {
    position: absolute;
    top: 0;
    right: 0;
}

.comments-list>ul>li {
    margin-bottom: 40px;
}

.comments-list ul li:last-child {
    margin-bottom: 0;
}



/* -----------------------------------
    6.0 - Widgets
-----------------------------------*/

#sidebar .widget {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 50px;
}

#sidebar .widget:last-child {
    margin-bottom: 0;
}

.widget {
    margin-bottom: 50px;
}

#sidebar .widget .inner {
    padding-top: 0;
}

.categories ul {}

.widget ul,
.widget_archive ul,
.widget_categories ul,
.widget_pages ul,
.widget_rss ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget ol,
.widget_archive ol,
.widget_categories ol,
.widget_pages ol,
.widget_rss ol,
.widget_meta ol,
.widget_nav_menu ol,
.widget_recent_comments ol,
.widget_recent_entries ol {
    margin: 0 !important
}

.widget li,
.widget_archive li,
.widget_categories li,
.widget_pages li,
.widget_rss li,
.widget_meta li,
.widget_nav_menu li,
.widget_recent_comments li,
.widget_recent_entries li {
    float: left;
    clear: both;
    width: 100%;
    list-style: none;
    margin: 0 0 15px 0;
    position: relative;
}

.widget_rss li .rss-date {
    color: #ccc;
    font-size: 13px;
}

.widget_pages li,
.widget_meta li {
    margin-bottom: 10px;
    border-bottom: solid 1px #eee
}

.widget li:last-child,
.stories-categories-widget .categories ul ul.children li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.widget ul ul,
.widget ol ol {
    margin: 20px 0 !important;
    padding: 20px 0;
}

.widget ul ul li,
.widget ol ol li {
    margin-left: 0;
}

.widget_recent_comments li.recentcomments,
.widget_recent_entries ul li,
.widget_pages ul li,
.widget_categories ul li,
.widget_nav_menu ul li,
.widget_display_topics ul li {
    padding-left: 0;
}

.widget_recent_comments li.recentcomments>a {
    display: block;
}

.widget_recent_comments li.recentcomments span {
    color: #b3b3b3;
}

.widget_recent_comments li.recentcomments:before,
.widget_recent_entries li:before,
.widget_pages li:before,
.widget_categories li:before,
.widget_nav_menu li:before,
.widget_display_topics li:before {}

.widget_recent_comments li.recentcomments:before {}

.widget_archive li a,
.widget_categories li a,
.widget_pages li a,
.widget_rss li a,
.widget_meta li a,
.widget_nav_menu li a,
.widget_recent_comments li a,
.widget_recent_entries li a {}

.widget_nav_menu ul li,
.widget_categories ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_archive li,
.stories-categories-widget .categories ul li,
.widget_rss li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px #eee;
}

.widget_pages ul,
.widget_nav_menu ul li ul.sub-menu {
    float: left;
    width: 100%;
}

.widget_nav_menu ul li ul.sub-menu {
    padding-top: 5px;
}

.widget_pages ul li ul.children,
.widget_nav_menu ul li ul.sub-menu {

    margin-top: 0 !important;

    margin-bottom: 0 !important;

    padding-bottom: 0 !important;
}

.widget_nav_menu ul li ul.sub-menu ul.sub-menu {
    padding-left: 15px;
}

.widget_pages ul li ul.children ul.children {
    padding-left: 15px;
}

.widget_pages ul li ul.children>li>a:before {
    content: '-';
    margin-right: 10px;
}

.stories-categories-widget .categories ul li {
    margin-bottom: 15px;
    padding-left: 40px;
}

.widget_archive li {
    text-align: right;
}

.widget_archive li a {
    float: left;
}

.widget_nav_menu ul li:last-child,
.widget_categories ul li:last-child,
.stories-categories-widget .categories ul li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.widget_categories ul.children li,
.stories-categories-widget .categories ul ul.children li {
    padding: 5px 0 5px 30px;
    border-left: solid 1px #ddd;
    margin-bottom: 0;
}

.widget_categories ul li ul.children,
.stories-categories-widget .categories ul ul.children {
    margin-left: 15px !Important;
    padding: 0;
}

.widget_categories ul li ul.children ul.children {
    margin-left: 0px !important;
    margin-top: 0 !important;
}

.stories-categories-widget .categories ul ul.children {
    margin-top: -30px !important;
    float: left;
    background: #fff;
    margin-left: 0 !Important;
    padding-left: 15px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.widget_categories ul.children li:before,
.stories-categories-widget .categories ul ul.children li:before {
    content: '-';
    position: absolute;
    left: 0;
    color: #ddd;
    margin-left: -1px;
}

.stories-categories-widget .categories ul ul.children li:before {
    margin-right: 10px;
}

.widget_categories>ul,
.stories-categories-widget .categories>ul {
    counter-reset: widget-list-counter;
}

.widget_categories>ul>li:before,
.stories-categories-widget .categories>ul>li:before {
    content: counter(widget-list-counter);
    counter-increment: widget-list-counter;
    position: absolute;
    left: 0;
    width: 30px;
    top: -3px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #eee;
    border-radius: 50%;
    font-size: 12px;
    color: #aaa;
    transition: all ease-in .3s;
    z-index: 2;
}

.widget_categories>ul>li:hover:before,
.stories-categories-widget .categories>ul>li:hover:before {
    background: #000;
    color: #fff;
}

.widget_categories>ul>li>a {
    text-align: right;
    padding-left: 45px;
}

.widget_categories ul li a,
.stories-categories-widget .categories ul li a {
    float: left;
    margin-right: 10px;
}

.widget_nav_menu ul li ul.sub-menu li {
    padding-bottom: 5px;
    margin-bottom: 5px
}

.widget_nav_menu ul li ul.sub-menu li:last-child {
    margin: 0;
    padding: 0;
}

.widget_nav_menu ul li ul.sub-menu li:before {
    font-family: 'FontAwesome';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\f107';
    margin-right: 10px;
}

.widget_nav_menu ul li ul.sub-menu li:hover:before {
    color: #fb9c1b !important;
}

.widget.about-profile-widget {
    display: inline-block;
}

.widget.about-profile-widget .detail p:last-child {
    margin-bottom: 0;
}

#popup .widget {
    margin-bottom: 0;
}

#popup .widget .inner {
    padding-top: 0;
}

.about-profile-widget .thumbnail {
    float: left;
    overflow: hidden;
    border-radius: 50%;
}

.about-profile-widget .detail {
    margin-left: 190px;
}

.statistic-widget {
    margin-bottom: 50px;
}

.statistic-widget ul li .inner {
    border: solid 1px #ddd;
    text-align: center;
    padding: 30px;
}

.statistic-widget ul li .inner h4.widget-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none !important;
}

.statistic-number {
    font-size: 48px;
    font-weight: 700;
    color: #525252;
    margin: 50px 0;
}

.warrior-tab-nav ul li {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    vertical-align: bottom;
}

.warrior-tab-nav ul li a {
    color: #aaa;
    cursor: pointer;
    font-size: 14px;
    padding: 15px;
    display: inline-block;
}

.warrior-tab-nav ul li.active a {
    color: #00BCD4;
}

.warrior-tab-nav {
    border-bottom: solid 1px #E5F3F4;
    margin-bottom: 50px;
}

.warrior-tab-content{
    position: relative;
}

.warrior-tab-content-content {
    width: 100%;
    background: #fff;
}

.warrior_popular_posts ul li .thumbnail,
.warrior_trending_topic ul li .thumbnail,
.recent-post-widget ul li .thumbnail {
    float: left;
    width: 60px;
    margin-right: 15px;
    overflow: hidden;
}



/**
 * 6.1 Homepage Widget (Post Widget)
 * ----------------------------------------------------------------------------
 */

#dashboard-header #account-widget {
    float: right;
    margin-top: -50px;
}

nav#dashboard-menu ul li {
    display: inline-block;
}

nav#dashboard-menu ul li a {
    font-weight: bold;
    color: #99A43E;
    padding: 10px;
    display: block;
    line-height: 20px;
}

nav#dashboard-menu {
    border-bottom: solid 1px #99A43E;
}

nav#dashboard-menu ul li:hover a,
nav#dashboard-menu ul li.active a {
    background-color: #99A43E;
    color: #fff;
}

#dashboard-header #account-widget .thumbnail {
    float: right;
    border: solid 1px #99A43E;
}

#dashboard-header #account-widget .detail {
    margin-left: 0;
    margin-right: 130px;
}

.commented-articles ul li {
    margin-bottom: 20px;
}

.commented-articles .share-widget ul li {
    margin-bottom: 0;
}

.commented-articles ul li .commented-article-thumb {
    float: left;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
}

.commented-articles ul li .commented-article-detail {
    margin-left: 50px;
}

.commented-articles ul li article.hentry {
    margin-left: 50px;
}

.commented-articles ul li article.hentry .entrycontent {
    margin-left: 0 !Important;
}

.commented-articles ul li article.hentry .thumbnail {
    width: 70px;
}



/**
 * 6.2 Sliders and Carousels
 * ----------------------------------------------------------------------------
 */

#featured-widget .owl-controls {
    border-top: solid 1px #D0663C;
    text-align: right;
}

.trending-label,
.trending-slider {
    font-size: 14px;
    display: inline-block !Important;
    vertical-align: middle;
}

.trending-slider.owl-carousel article,
#featured-slider.owl-carousel article {
    display: none;
}

#featured-slider.owl-carousel article {
    width: 100% !important;
}

#featured-slider article {
    float: left;
    width: 32%;
    margin-right: 2%;
}

#featured-slider:after {
    content: '';
    display: table;
    width: 100%;
}

#featured-slider article:nth-child(3n+3) {
    margin-right: 0;
}

.trending-slider.owl-loaded article,
#featured-slider.owl-loaded article {

    display: block;
}

.trending-label {
    width: 150px;
    font-size: 15px;
    font-weight: 600;
    color: #fb9c1b;
    text-transform: uppercase;
    line-height: 50px;
}

div#trending-bar {
    width: 100%;
    float: left;
    background: #fff;
    position: relative;
    overflow: hidden;
}

article.hentry.trending-news h3 {
    font-family: Roboto;
    font-size: 13px;
    margin-bottom: 0;
}

article.hentry.trending-news h3 a {
    display: block;
    padding: 13px 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

article.hentry.trending-news h3 a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+65,ffffff+100&0+0,1+65,1+100 */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 65%, rgba(255, 255, 255, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 65%, rgba(255, 255, 255, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 65%, rgba(255, 255, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
    content: '';
    display: block;
}

.trending-slider .owl-controls {
    position: absolute;
    left: 0;
    top: 0;
    width: 61px;
    text-align: center;
    border-right: solid 1px #dedede;
}

div#trending-bar .container {
    position: relative;
}

.trending-slider .owl-controls .owl-nav .owl-next,
.trending-slider .owl-controls .owl-nav .owl-prev {
    float: left;
    width: 30px;
    font-size: 21px;
    line-height: 50px;
    color: #000;
}

.trending-slider .owl-controls .owl-nav .owl-next:hover,
.trending-slider .owl-controls .owl-nav .owl-prev:hover {
    color: #fb9c1b;
}

.owl-nav {
    display: block;
}

.trending-slider {
    padding-left: 80px;
    position: relative;
    border-left: solid 1px #dedede;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 150px;
}

article.hentry.features-posts .detail .category {
    font-size: 11px;
    font-weight: 500;
    color: #fb9c1b;
}

article.hentry.features-posts .detail h3 {
    font-family: 'Poppins';
    font-size: 13px;
    line-height: 18px;
    color: #000;
}

#recommended-stories {
    margin-bottom: 30px;
}

#featured-slider .owl-controls {
    display: none;
    text-align: center;
    margin-bottom: 50px;
}

#featured-slider .owl-controls .owl-dot {
    display: inline-block;
    background: #ccc;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    margin: 0 5px;
}

#featured-slider .owl-controls .owl-dot:hover {
    background: #fb9c1b;
}

#featured-slider .owl-controls .owl-dot.active {
    background: #b6b6b6;
}


/**
 * 6.3 Search-widget
 * ----------------------------------------------------------------------------
 */

#search-widget .btn.search-btn {
    display: none;
}

.search-form-trigger {
    color: #fff;
    cursor: pointer;
    position: relative;
    font-size: 22px;
}

#search-widget {
    position: relative;
}

#masthead #search-widget {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: all ease-in .3s;
}

#masthead #search-widget.active {
    max-height: 60px;
}

.search-form {
    position: relative;
}

/* info search */

.archive-header {
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    border: solid 1px #dfdfdf;
}



/**
 * 6.4 Sidebar Widget
 * ----------------------------------------------------------------------------
 */

#account-widget .thumbnail {
    width: 100px;
    overflow: hidden;
    float: left;
}

#account-widget .detail {
    padding-top: 10px;
    margin-left: 130px;
}

#account-widget .detail .user a {
    font-weight: 600;
    color: #000;
    font-style: italic;
}

#account-widget .detail .user-menu a {
    font-size: 12px;
    font-weight: 600;
    color: #00BCD4;
    padding-right: 10px;
    margin-right: 10px;
}

.recents ul li {}

.recents ul li:last-child {
    padding-bottom: 0;
}

.widget_recent_entries ul li:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    content: "\f1ea";
    position: absolute;
    left: 0;
    top: 5px;
}

.widget_recent_entries ul li {
    padding-left: 30px;
}

.widget_recent_entries ul li a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recents ul li h3 {
    margin-bottom: 0;
    margin-left: 110px;
}

.recents ul li .no-thumbnail h3 {
    margin-left: 0;
}



/**
* 6.6 Share Widget
* ----------------------------------------------------------------------------
*/

.share-trigger {
    display: inline-block;
    border-style: solid;
    padding: 10px;
    width: 40px;
    text-align: center;
    max-height: 30px;
    color: #aaa;
    font-size: 20px;
    border-color: #fff;
    border-width: 1px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.share-trigger.active {
    border-color: #dfdfdf #dfdfdf #fff #dfdfdf;
}

.share-widget {
    position: absolute;
    top: 0;
    right: 10px;
}

.share-widget ul {
    position: absolute;
    top: 30px;
    right: 0;
    width: 110px;
    font-size: 12px;
    font-weight: bold;
    padding: 10px;
    background-color: #fff;
    border: solid 1px #dfdfdf;
    margin-top: -1px;
    z-index: 1;
    display: none;
}

.share-widget ul li .icon {
    display: inline-block;
    margin-right: 5px;
}



/**
* 6.7 Accordio Widget
* ----------------------------------------------------------------------------
*/

.inner {
    position: relative;
    padding-top: 50px;
}

h4.widget-title,
.header-title {
    color: #ababab;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: "Roboto";
    border-bottom: solid 1px #dedede;
    padding-bottom: 0;
}

.accordion ul li {
    padding-bottom: 10px;
}

.accordion ul li .acc-title {
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    font-size: 13px;
}

.accordion ul li .acc-description {
    max-height: 0;
    overflow: hidden;
}

.accordion ul li.active .acc-title {
    color: #99a43e;
}

div.tagsinput span.tag {}



/**
* 6.8 FOoter Widget
* ----------------------------------------------------------------------------
*/

.subscribe-widget button.submit-btn {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    bottom: 0;
    min-width: 40px;
    font-size: 24px;
    padding: 10px;
    background: 0;
    color: #aaa;
}

.widget-content {
    position: relative;
}

.tagcloud a,
#sidebar ul.trending-tags li a {
    display: inline-block;
    font-size: 12px !Important;
    padding: 5px 10px;
    border: solid 1px #dedede;
    line-height: 12px;
    border-radius: 11px;
    margin: 0 10px 10px 0;
}

.tagcloud a:hover,
.widget .mc4wp-form input[type=submit],
#sidebar ul.trending-tags li a:hover {
    background: #00bcd4;
    color: #fff !important;
    border-color: #00bcd4;
}



/* -----------------------------------
    7.0 - Forms
-----------------------------------*/

.input-wrapper {
    display: block;
    margin-bottom: 30px;
}

.input-wrapper:last-child,
#search-widget .input-wrapper {
    margin-bottom: 0;
}

.widget_search .btn.search-btn {
    margin-bottom: 0;
    position: relative;
}

.input-wrapper label {
    display: block;
    font-weight: 400;
}

/*.input-wrapper label span {
    color: #000;
    margin-bottom: 10px;
    display: block;
}*/

form .input-auto input,
form .input-auto textarea {
    max-width: 300px;
}

form.post-password-form input {
    margin-bottom: 30px;
}

form input:not(.input-radio),
form textarea,
select,
#tags_url_tagsinput,
.tags_url_tag {
    border: none;
    background-color: #f9f9f9;
    padding: 10px;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    line-height: 20px;
}

#submit-topic input[type="submit"] {background: #fb9c1b !important;}

select {
    background-image: url(images/arrow-down.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
}

form input:focus,
form textarea:focus,
select:focus,
#tags_url_tagsinput:focus,
.tags_url_tag:focus {}

form .radio-checkbox input {
    display: inline-block;
    width: auto;
}

.input-wrapper input[type="file"],
.input-wrapper input[type="file"]:focus {
    background-color: transparent;
}

a.forgot {
    float: right;
    color: #D0663C;
    padding: 10px 0;
}

.btn,
input.btn,
#wp-submit,
form .submit,
input[type="submit"] {
    width: auto;
    text-align: center;
    border: none;
    text-transform: none;
    font-weight: 400;
    font-size: 14px !important;
    color: #fff;
    padding: 15px 30px;
    background-color: #fb9c1b;
    line-height: 14px;
}


.btn:hover,
input.btn:hover,
#wp-submit:hover,
form .submit:hover,
input[type="submit"]:hover {
    background-color:#f78518;
}

.btn.btn-block {
    display: block;
    margin-bottom: 30px;
}

.btn.secondary-btn {
    background-color: #ddd;
    color: #333;
}

.btn .icon {
    font-size: 14px;
    vertical-align: middle;
}

.btn.search-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

a.btn:hover {
    color: #fff;
}

.btn.search-btn i.icon {
    margin-left: 10px;
}

.login-area.column,
.register-area.column {
    padding: 0 15px;
}

p.login-submit {
    /*margin-bottom: 40px;*/
}

a.lost-password-link {
    margin-top: 20px;
}

.facebook-login.btn.btn-block,
.linkedin-login.btn.btn-block,
.twitter-login.btn.btn-block {
    padding: 10px;
    font-size: 12px !important;
    margin: 10px 0;
}

.facebook-login.btn.btn-block:first-child,
.linkedin-login.btn.btn-block:first-child,
.twitter-login.btn.btn-block:first-child {
    margin-top: 30px;
}

.lost-password-link {
    float: left;
    width: 100%;
}

.widget .mc4wp-form input {
    padding: 15px 20px;
    background: #F9F9F9;
    border: none;
    width: 100%;
}

.widget .mc4wp-form label {
    font-size: 12px;
    display: block;
}

.widget .mc4wp-form input[type=submit] {
    font-size: 14px;
    text-transform: none;
    padding: 15px 30px;
    font-weight: normal;
    width: auto;
}



/* Edit Profile */

.input-wrapper #edit_avatar {
    display: inline-block;
    width: auto;
    vertical-align: top;
}



/* Register */

.result-message {
    padding: 20px;
}



/* Submit Url Alert */

.warning-msg {
    color: #C71B1B;
}

.submit-topic-success {
    color: #25C021;
}

form#submit-topic .loading,
.video-loader {
    background: url(images/loader.gif) no-repeat;
    width: 24px;
    height: 24px;
    background-size: contain;
    display: none;
    margin: 10px 0 0 0;
}



/* Alerts */

.alert {
    display: none;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-success,
.alert-danger.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d0e9c6;
    display: block;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bcdff1;
    display: block;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faf2cc;
    display: block;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebcccc;
    display: block;
}

.alert ul li {
    list-style: disc;
    margin: 0 24px;
}



/* -----------------------------------
    8.0 - Footer
-----------------------------------*/

footer#colofon {
    clear: both;
    background-color: #000;
    color: #fff;
}

#footer-logo {
    padding: 0;
    max-width: inherit;
    margin-bottom: 30px;
}

#footer-logo span a {
    display: block;
}

#footer-logo a {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

#footer-logo img {
    width: auto;
}

#footer-logo .footer-site-title span,
#footer-logo .footer-site-title .site-title {
    float: left;
}

#footer-menu {
    display: block;
}

#footer-menu ul li a {
    padding: 0 10px;
    font-size: 14px;
}

#backtotop {
    width: 40px;
    height: 40px;
    z-index: 2;
    position: fixed;
    right: 20px;
    background: #ffffff;
    color: #fb9c1b;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: -20px;
    border-radius: 20px;
    border: solid 1px;
    bottom: 90px;
    transition: all ease-in .3s;
}

#backtotop:hover {
    color: #fff;
    background-color: #fb9c1b;
}

ul.social li {
    display: inline-block;
    color: #aaa;
}

ul.social li a {
    padding: 10px 10px 10px 0;
    font-size: 16px;
}

#popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, .7);
    overflow: auto;
}

.popup-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    overflow: auto;
}

.popup-content {
    padding: 30px;
    background-color: #fff;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 200;
}

.close-popup {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 101;
}

.warrior-tabs .warrior-header a {
    float: left;
    width: 50%;
    text-align: center;
    padding: 10px;
}

.warrior-header {
    margin-bottom: 40px;
    background: #eee;
    text-align: center;
}

.warrior-tabs .warrior-header a.active {
    background: #000;
    color: #fff;
}

.warrior-tabs-contents {
    position: relative;
}

.warrior-tabs-contents .tab-content {
    width: 100%;
    display: none;
}

.thumbs-rating-container {
    font-size: 22px;
    color: #333;
    padding: 2px 0;
    display: block;
}

.thumbs-rating-container span {
    cursor: pointer;
}

.thumbs-rating-up:before {
    font-family: 'FontAwesome';
    content: '\f0d8';
    margin-right: 5px;
    position: relative;
    left: 2px;
}

.thumbs-rating-down:before {
    font-family: 'FontAwesome';
    content: '\f0d7';
    margin-right: 5px;
}

.thumbs-rating-container span:hover {
    color: #343434;
}

.thumbs-rating-container a {
    position: relative;
    padding: 28px 0px;
}

.thumbs-rating-up,
.thumbs-rating-down {
    padding: 0;
    color: #aaa;
    font-size: 22px;
    position: absolute;
    top: 26px;
    left: -7px;
}

.thumbs-rating-container .thumbs-rating-already-voted {
    padding-top: 1em;
    font-size: 0.9em;
    display: none;
    -webkit-transition: (all 0.3s);
    transition: (all 0.3s);
}

.thumbs-rating-container .thumbs-rating-already-voted:before {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 0;
}

.points a {
    width: 100%;
    display: block;
    line-height: 1;
    color: #0277bd;
    position: relative;
}

.points a.liked {
    color: #999;
    cursor: default;
    position: relative;
}

.points a i {
    display: block;
    font-size: 20px;
}

.info-author {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #fff;
    border: solid 1px #ccc;
    border-bottom: solid 3px #99A43E;
    font-weight: bold;
}

.info-author a,
.info-author span {
    font-weight: normal;
    margin-left: 15px;
}

.info-author img {
    float: left;
    margin-right: 20px;
}

.icheckbox_flat,
.iradio_flat {
    vertical-align: text-top !important;
    margin: 0 10px !important;
}

form#submit-topic .input-wrapper.format label {
    display: inline-block;
}

i.label-important {
    color: red;
}



/* 9.0 - Standard WordPress Styles
-------------------------------------------------------------- */

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 10px 2px 10px 12px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

#sidebar .wp-caption.alignnone {
    margin: 0 0 20px 0;
    max-width: 100%;
    padding: 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 16px 4px 5px;
}

#sidebar .wp-caption p.wp-caption-text {
    padding-top: 0;
    margin-top: -22px;
}

.gallery {
    margin: 1.2rem 0;
}

.gallery img {
    display: block;
    width: 100%;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

.bypostauthor {
    visibility: visible;
}

/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* ------------------------ social share button --------*/

.social-share-widget {
    line-height: 0;
    margin-bottom: 50px;
}

.social-share-widget:last-child {
    padding-left: 0;
}

.article-widget.share-widget ul li {
    display: inline-block;
    margin: 10px;
}

.social-share-widget ul li {
    display: inline-block;
}

.social-share-widget ul li a {
    color: #fff;
    display: block;
}

.social-share-widget ul li a span {
    line-height: 40px;
    display: inline-block;
    padding: 0 15px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.social-share-widget ul li a i {
    padding: 0 10px;
    line-height: 40px;
    width: 40px;
    text-align: center;
}

.exit-text {
    text-align: center;
    color: #fb9c1b;
    margin-bottom: 10px;
}

span#exit-page-countdown {
    font-size: 24px;
    font-weight: 700;
}

body.page-template-page-exit.page-template-page-exit-php .post-lists article.hentry {
    padding-bottom: 0;
}

body.page-template-page-exit.page-template-page-exit-php .post-lists article.hentry {
    margin-bottom: 0;
}

#exit-page-wrapper .tablecell {
    padding: 60px 0;
}

.input-wrapper.format .iradio_flat,
.input-wrapper.format label {
    cursor: pointer;
}

.loader img,
.loader p {
    display: inline-block;
    line-height: 1;
}

.loader img {
    width: 20px;
    height: auto;
}

.loader p {
    padding: 20px 10px;
}

#one-week.tab-content,
#one-month.tab-content,
#six-months.tab-content {
    display: none;
}

.fb-comments {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 40px;
}

#featured-slider article .thumbnail {
    margin-right: auto !important;
    width: 100% !Important;
}

.toolbar-detail {
    padding: 13px 20px;
    width: calc(100% - 770px);
    max-width: 480px;
    float: left;
    white-space: nowrap;
    overflow: hidden;
}

#iframe {
    display: none;
    margin:0;
    padding:0;
    border:0;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
}

#loader span {
    font-size: 11px;
    text-transform: uppercase;
    color: #9e9e9e;
    letter-spacing: 5px;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

#loader-spinner   {
    width: 150px;
    height: 150px;
    position: relative;
}
  
  
#loader-spinner:before {
    position: absolute;
    content: '';
    display: block;
    border-radius: 50%;
    top: 0;
    left: 0;
    width: 150px;
      transform: scale(0);
      opacity: 0;
    height: 150px;
    border: solid 2px #fb9c1b;
    top: 0px;
    left: 0px;
    animation: scale-2 1s linear 0s infinite;
}

#loader-spinner:after {
    position: absolute;
    content: '';
    display: block;
    border-radius: 50%;
    top: 0;
    left: 0;
      transform: scale(0);
      opacity: 0;
    width: 150px;
    height: 150px;
    border: solid 2px #fb9c1b;
    top: 0;
    left: 0;
    opacity: 0;
    animation: scale-2 1s linear .5s infinite;
}

@keyframes scale-2 {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    
    50% {
      transform: scale(0.85);
      opacity: 1;
    }
    
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }

header#upvote-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 102;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.27);
    background-color: #fb9c1b;
}

.admin-bar header#upvote-toolbar {
    top: 32px;
    background: #fb9c1b;
}

header#upvote-toolbar #logo {
    border-right: solid 1px rgba(0,0,0,0.1);
    padding: 20px 20px;
    width: 240px;
}

.toolbar-detail .entry-detail h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 15px;
}

.toolbar-detail .entry-detail h3 a {
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.toolbar-detail .entrymeta span img.avatar {
    vertical-align: middle;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    line-height: 0;
}

header#upvote-toolbar .rankpoint {
    width: 70px;
    height: 70px;
    border: 0;
    transition: co;
    padding: 10px 20px;
    margin-right: 0;
    border-right: solid 1px rgba(0,0,0,0.1);
    line-height: 50px;
}

header#upvote-toolbar .story-nav {
    float: left;
    font-size: 0;
    padding: 15px 0;
}

header#upvote-toolbar .story-nav .story-nav-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .1);
}

header#upvote-toolbar .story-nav .story-nav-item+.story-nav-item {margin-left: 15px;}

header#upvote-toolbar .story-nav .story-nav-item:hover {
    background-color: rgba(0,0,0,0.1);
    border-color: transparent;
}

header#upvote-toolbar .rankpoint .points {
    line-height: 70px;
}

header#upvote-toolbar .rankpoint .points .liked {
    display: block;
    line-height: 25px;
}

header#upvote-toolbar .social-share-widget ul li a span {
    display: none;
}

header#upvote-toolbar .social-share-widget {
    float: right;
    margin-bottom: 0;
    padding: 15px 15px 15px 0;
    font-size: 0;
}
header#upvote-toolbar .social-share-widget ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 61, 94, 0.3);
    z-index: 0;
    transition: top ease-in .2s;
    top: 100%;
}
header#upvote-toolbar .social-share-widget ul {
    margin-bottom: 0;
}

header#upvote-toolbar .social-share-widget ul li a i.fa {position: relative;z-index: 1;text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.0);transition: text-shadow ease-in .2s;}

header#upvote-toolbar .social-share-widget ul li a {position: relative;}

header#upvote-toolbar .social-share-widget ul li a:hover i.fa {color: #ffffff;text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);}

header#upvote-toolbar .social-share-widget ul li a:hover:after {
    top: calc(100% - 5px);
}

header#upvote-toolbar .social-share-widget ul li {
    margin-left: 10px;
    font-size: 14px;
}

header#upvote-toolbar .social-share-widget ul li:first-child {
    margin-left: 0;
}

.toolbar-detail .entrymeta span, .toolbar-detail .entrymeta span a {
    color: rgba(255, 255, 255, .4) !important;
    line-height: 10px;
    display: inline-block;
}

a#close-toolbar {
    display: block;
    float: right;
    font-size: 0;
    line-height: 1;
    border-left: solid 1px rgba(0,0,0,0.1);
    cursor: pointer;
}

a#close-toolbar i.fa {
    font-size: 20px;
    line-height: 30px;
    display: block;
    padding: 20px;
    color: #ffffff;
    width: 60px;
    text-align: center;
}

a#close-toolbar:hover {
    background: rgba(0,0,0,0.1);
}

#upvote-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 100;
}

#upvote-viewer iframe {
    width: 100% !important;
    height: 100% !important;
}
header#upvote-toolbar .social-share-widget:before {
    content: 'Share this';
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
    color: #ffffff;
    line-height: 10px;
    padding-right: 10px;
}

header#upvote-toolbar .social-share-widget ul {
    display: inline-block;
    vertical-align: middle;
}

header#upvote-toolbar+#upvote-viewer {
    top: 70px;
}

.admin-bar #upvote-viewer {
    top: 32px;
}

.admin-bar header#upvote-toolbar+#upvote-viewer {
    top: 102px;
}
.front_desc {font-family:poppins;    font-size: 15px;font-weight: normal;}
.entry-content p a {color:#fb9c1b !important;}
.entry-content p a:hover {color:#000 !important;}
#disqus_thread {border: 1px solid #ccc !important;padding: 20px !important;}

.home_content p {color:#000000;}

.top-nav-btn {
    color: #fff !important;
    background-color: #fb9c1b;
    display: inline-block;
    padding: 15px 26px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 10px 10px 0 0;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
    cursor: pointer;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    position: fixed;
    right: 20px;
    bottom: 0;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
    z-index: 99;
}
.top-nav-btn:hover{background-color: #000;}
@keyframes example{
    0%{background-color:#fb9c1b;right:0}
    50%{background-color:#000000;right:8px;color:#fff}
    100%{background-color:#fb9c1b;right:0}
}
*@keyframes examplehover{
    0%{background-color:#fb9c1b;right:0;color:#fff}
    50%{background-color:#fb9c1b;right:0;color:#fff}
    100%{background-color:#fb9c1b;right:0;color:#fff}
}


.site-header{width: 100%; float: left; box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 2px 4px 0 rgba(0, 0, 0, 0.06);}
#main-header{width: 100%; float: left; background-color: #000 !important;}
.header-wraper{width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;}
.header-lft{display: inline-flex; align-items: center;}
.header-rgt{display: inline-flex; align-items: center;}
.search-form-trigger{border: none !important;}
.header-btm{width: 100%; float: left;}
#main-menu{margin: 0 0 0 30px;}
.site-navigation ul > li:hover > a{background: #fb9c1b;}
.search-form-trigger{width: 20px; height: 20px; cursor: pointer;
background: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 52' width='52' height='52'%3E%3Ctitle%3E4781817_brows_browsing_find_search_seo_icon%3C/title%3E%3Cdefs%3E%3Cimage width='52' height='52' id='img1' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAMAAADypuvZAAAAAXNSR0IB2cksfwAAAS9QTFRF+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wbyXVFwAAAAGV0Uk5TAAM5eq3V7vrUOAIdiOT/44ccFZn5lxRa7exYBZvxpmQ1ZafymAq22WJj2rX2cwR197Qs5lvO0Vfn6xP4lX4MaeIL8zaoeGarN9IWBgdneap34d2GGzqTEhpVt/xoqepW+11T5UtHihtKAAACF0lEQVR4nO2V11YiQRCGW0AlKGEERccwqKyKeRcRHAOgSJg15xzf/xms6nHPTkcMV3vO1uX/13empqq6mxBvdPj8gc6u7u6uYMAfCpOPRKSnN+qJWDzRFjH6klEukql+PTOQ5hGMwSENYg67SSOjY5ZhmoaVGZ9wlUlTxWR/0ISp6axHm8lRcTYrZ0zKzM0vcPLiEurL8m/R2nI/RSP0C52UjMmjs2LIrEQBvVXRMLBvOSkDVBHM0pqg9+H/SGp7r9AGe51XIzjTeRVDyAbYNr8bPdjrBWk+jU0sMM5qHbhv02qGkC1IKLPb68M9UMzPjUoVUrYZyQ/KqI4hZAdSaowSAGVMD+1CSp1RgqBYeqgBKU1Gwcm2OTUtnC+j4JQcPfQbJ/V96EvlBYUhCBESGoEtz+ihPaHl+6CM66EDSDkUvj3Rfo0sRgrHQJrRQRlIOOKu2zieW+U9RYhzDAknnJjASS2qoRpO6ZRXU6AuhVTMGR73c0G+KIFcjMiZSzyjg5LpD+E1VZA+EZEmelcyaxKdoqRCH94P0WtpDeYsevZGhZWdfZve5jd5KZWlVLS45cEqu8d/HhwFZaZcu7qz12g5Tqtxe1d1lesbNUVWS7JH7f6KPDwi9SSn1tZtHrHPL8DQUuQ0XvYi5ZP3PdBTJLxdqzfTyWS6UD+0/u5oG0oR/6l/i8rT7X3+CvXySYhSn4bIcyz2+gZKf1jMC20h4QAAAABJRU5ErkJggg=='/%3E%3C/defs%3E%3Cstyle%3E%3C/style%3E%3Cuse id='Background' href='%23img1' x='0' y='0'/%3E%3C/svg%3E") no-repeat center;
background-size: 100% auto !important; filter: brightness(100);
margin: 0 0 0 20px; transition: all ease-in .3s;}
.search-form-trigger:hover{filter: none;}
.search-form-trigger.active{background: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' width='40' height='40'%3E%3Ctitle%3E4115230_cancel_close_delete_icon%3C/title%3E%3Cdefs%3E%3Cimage width='40' height='40' id='img1' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAAXNSR0IB2cksfwAAAC1QTFRF+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb3KsVTgAAAA90Uk5TTOVTAFHk//tXVPxcVVv9dtWZdwAAAN1JREFUeJxt070JwkAYxvHHDcQlHOCaCGlcIhvkFSys5LC3cATBAWyCVYYI2DqGuIO5r/cjXMo/v5DwcIfVxi2e/Rrd4Wpb43t0dLHxRj22ZGnj6Yydp0HHiY4fuDsdR2mtp5eDszTAORoaYYiaRhiiognGKDTBGJlmmGKhGaaYaYE5JlpgjpEyLDFQhiXO9PQskONMGXJ0D6KfW8Y30XcZ2/D6uIhT+NBgY/hHGQsyj4wFhmpXMFS7QqBQCBQKBZlCQabQsFBoWCgMzBQGZgoLE60f2urxrl6E2pX5AyWf74vJqwMgAAAAAElFTkSuQmCC'/%3E%3C/defs%3E%3Cstyle%3E%3C/style%3E%3Cuse id='Background' href='%23img1' x='0' y='0'/%3E%3C/svg%3E") no-repeat center;
filter: none;}
header #search-widget{width: 100%; float: left; background: #f9f9f9; padding: 0 20px;}
#masthead #search-widget .input-wrapper input{height: 60px; color: #000; font-family: Roboto; border: none; padding: 0;}
#trending-news{position: relative;}
article.hentry.trending-news h3 a:hover{color: #fb9c1b !important;}

#footer-bottom{background: none !important;}
.ft-top{width: 100%; float: left; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 40px 0;}
.copyright-info{width: 100%; float: left; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
border-top: 1px solid rgba(255,255,255,0.3); padding: 15px 0;}
.copyright-info a{color: #fff !important; text-decoration: underline;}
.copyright-info a:hover{color: #fb9c1b !important; text-decoration: underline;}
#menu-footer-menu li{float: left;}
#menu-footer-menu li + li{margin: 0 0 0 20px;}
#menu-footer-menu li a{color: #fff !important; padding: 0 !important;}
#menu-footer-menu li:hover a{background: none !important; color: #fb9c1b !important;}
.ft-social{display: inline-flex; align-items: center;}
.ft-social p{margin: 0 15px 0 0;}
#social-menu ul li{float: left;}
#social-menu ul li + li{margin: 0 0 0 15px;}
nav#social-menu ul li a{color: #fff; float: left; font-size: 21px;}
nav#social-menu ul li:hover a{background: none !important; color: #fb9c1b !important;}
#footer-bottom .copyright-info{font-size: 12px;}

#content{width: 100%; float: left; margin: 60px 0;}
.header-ads{width: 100%; float: left; text-align: center; margin: 0 0 60px 0 !important;}
.header-ads a{display: inline-block; vertical-align: top;}
.header-ads a img{float: left; margin: 0;}
.content-wraper{width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between;}
#maincontent{width: calc(100% - 280px); float: left; padding: 0 50px 0 0;}
#maincontent.full-width{width: 100%; padding: 0;}
#sidebar{width: 280px; float: left;}

.other-sites{width: 100%; float: left; text-align: center; margin: 0 0 30px 0;}
.other-sites h2{width: 100%; float: left; color: #000; font-size: 30px !important; font-weight: 600 !important; font-family: 'Oswald', sans-serif;
line-height: 35px !important; margin: 0 0 30px 0 !important;}
.other-sites h2 span{display: inline-block; vertical-align: top; position: relative;}
.other-sites h2 span:before{width: 70px; height: 1px; background: #000; position: absolute; top: 50%; left: -80px; content: "";}
.other-sites h2 span:after{width: 70px; height: 1px; background: #000; position: absolute; top: 50%; right: -80px; content: "";}
.other-site-wraper{width: 70%; display: inline-block; vertical-align: top;}
.other-site-wraper ul{display: flex; flex-wrap: wrap; margin: 0 -30px;}
.other-site-wraper ul li{width: 33.33%; padding: 0 30px; position: relative;}
.other-site-wraper ul li:before{width: 1px; height: 21px; background: #ccc; position: absolute; top: 50%; left: 0; content: "";
transform: translateY(-50%);}
.other-site-wraper ul li:first-child:before{display: none;}
.other-site-wraper ul li a{width: 100%; height: 100%; display: inline-flex; align-items: center;}

#sidebar .widget{margin: 0;}
#sidebar .widget + .widget{margin: 50px 0 0 0;}
#sidebar .widget .widget-title{width: 100%; float: left; background: #fb9c1b; color: #fff; font-size: 18px; font-weight: 600; font-family: 'Oswald', sans-serif; line-height: 25px; letter-spacing: 0;
text-align: center; text-transform: none; border-bottom: none; padding: 15px 0 !important; margin: 0 !important;}
#sidebar .widget .widget-title span{display: inline-block; vertical-align: top; text-align: left; animation: none !important; padding: 0 0 0 30px; 
position: relative;}
#sidebar .widget .widget-title span:before{position: absolute; top: 0; left: 0; content: ""; font-size: 24px; font-weight: 400; font-family: 'FontAwesome';}
#sidebar .widget.widget_nav_menu .widget-title span:before{content: "\f0ac";}
#sidebar .widget.stories-categories-widget .widget-title span:before{content: "\f097";}
#sidebar .widget.upvote_trending_topic .widget-title span:before{content: "\f062";}
#sidebar .widget.recent-post-widget .widget-title span:before{content: "\f017";}
#sidebar .widget.upvote_popular_posts .widget-title span:before{content: "\f004";}
#sidebar .widget div{width: 100%; float: left; background: none !important; border: 1px solid #ccc; border-top: none; padding: 0;}
#sidebar .widget div.google-auto-placed{border: none;}
#sidebar .widget ul{width: 100%; float: left; margin: 0 !important;}
#sidebar .widget ul li{width: 100%; float: left; font-family: 'Oswald', sans-serif; word-break: break-word; border: none !important; padding: 0 15px; !important; margin: 0 !important;}
#sidebar .widget ul li a{width: 100%; float: left; color: #000 !important; border-bottom: 1px solid #f5f5f5; padding: 10px 0; margin: 0;}
#sidebar .widget ul li a:hover{color: #fb9c1b !important;}
#sidebar .widget ul li:before{display: none;}
#sidebar .widget ul li:last-child a{border-bottom: none;}
#sidebar .widget ul p{color: #000; padding: 15px;}
#sidebar .widget.widget_custom_html .custom-html-widget{border: none !important;}
#sidebar .widget.recent-widget ul li a{border-bottom: none; padding: 0;}
#sidebar .widget.recent-widget ul li article{border-bottom: 1px solid #f5f5f5; padding: 10px 0;}
#sidebar .widget.recent-widget ul li div{border: none;}
.recent-widget ul li .thumbnail{width: 90px; float: left overflow: hidden;  margin: 0 15px 0 0 !important; position: relative;}
#sidebar .widget .post-title{width: calc(100% - 105px); float: left; margin: 0;}
#sidebar .widget .post-title a{margin: 0 0 10px 0;}
#sidebar .widget .post-title .domain a{color: #7f7f7f !important; font-style: italic; margin: 0;}
#sidebar .widget .post-title .domain a:hover{color: #fb9c1b !important;}
#sidebar .widget.recent-widget ul li article.no-thumbnail .thumbnail{display: none;}
#sidebar .widget.recent-widget ul li article.no-thumbnail .post-title{width: 100% !important;}


.home_content .wp-block-spacer{display: none;}
#maincontent article.hentry .entry-content .home_content h1{font-family: 'Oswald', sans-serif; margin: 0 0 20px 0;}
#maincontent article.hentry .entry-content .home_content p{font-size: 15px; line-height: 26px; margin: 0 0 15px 0;}
#maincontent article.hentry .entry-content .home_content h2{font-size: 26px; font-family: 'Oswald', sans-serif; line-height: 33px !important; margin: 0 0 20px 0;}
#maincontent article.hentry .entry-content .home_content h3{font-size: 24px; font-family: 'Oswald', sans-serif; line-height: 30px !important; margin: 0 0 20px 0;}

.post-lists{width: 100%; float: left;}
header.section-title{width: 100%; float: left; border-bottom: 5px solid #eee; padding: 0 0 15px 0; margin: 0 0 10px 0;}
header.section-title h4{width: 100%; float: left; color: #000; font-size: 24px; font-weight: 700; font-family: 'Oswald', sans-serif; 
  text-transform: uppercase; border-bottom: none; margin: 0;}
header.section-title h1{width: 100%; float: left; color: #000; font-size: 24px; font-weight: 700; font-family: 'Oswald', sans-serif; 
  text-transform: uppercase; border-bottom: none; margin: 0;}
.home .post-lists article.hentry{width: 100%; float: left; padding: 0; margin: 0;}
.home .post-lists article.post.hentry{width: 100%; float: left; border-bottom: 1px solid #dee2e6; padding: 25px 0;}
article.hentry .entry-content{width: 100%; float: left; margin: 0;}
article.hentry article.hentry > .entrycontent{width: 100%; float: left; margin: 0;}
article.hentry article.hentry > .entrycontent.no-thumbnail .thumbnail{display: none;}
#maincontent article.hentry .thumbnail{width: 250px; float: left;}
#maincontent article.hentry .thumbnail a{width: 100%; float: left; text-align: center;}
#maincontent article.hentry .thumbnail a img{width: auto; max-height: 200px; display: inline-block; vertical-align: top;}
#maincontent article.hentry .detail{width: calc(100% - 270px); float: left;}
#maincontent article.hentry .detail.no-thumbnail{width: 100%;}
article.hentry .detail h3.post-title{width: 100%; float: left; font-size: 21px !important; font-weight: 400 !important; line-height: 28px !important; margin: 0;}
article.hentry .post-title a:hover{color: #fb9c1b !important;}
article.hentry .post-title .domain{width: 100%; float: left;}
article.hentry .post-title .domain a{float: left; color: #7f7f7f !important; font-style: italic; margin: 10px 0 0 0;}
article.hentry .post-title .domain a:hover{color: #fb9c1b !important;}
article.hentry .detail.no-thumbnail .entrymeta{width: 100%; float: left; color: #4c4c4c !important; font-size: 13px !important; margin: 5px 0 0 0;}
.entrymeta span{display: inline-block; vertical-align: middle; line-height: 15px; border-left: 1px solid #ccc; 
padding: 0 10px; margin: 10px 0 0 0;}
.entrymeta span:first-child{border-left: none; padding-left: 0;}
.entrymeta span.avatar{margin-right: 0;}
.entrymeta span.avatar img{width: 35px !important; height: 35px; float: none !important; 
background: #ccc; display: inline-block; vertical-align: middle; border-radius: 50%; padding: 1px; margin: 0 5px 0 0 !important; overflow: hidden;}
.entrymeta span.avatar a{display: inline-block; vertical-align: middle;}
.entrymeta span.avatar a, .entrymeta span.date a, .entrymeta span.comments a{color: #fb9c1b !important;}
.entrymeta span.avatar a:hover, .entrymeta span.date a:hover, .entrymeta span.comments a:hover{color: #000 !important;}
article.hentry > .entrycontent p{width: 100%; float: left; margin: 15px 0 0 0;}
.rankpoint{width: 100%; float: left; margin: 15px 0 0 0;}
.rankpoint .points{float: left;}
.rankpoint .points a{color: #000; display: flex; align-items: center;}
.rankpoint .points a:hover{color: #fb9c1b;}
.rankpoint .points .vote{width: 40px; height: 40px; background: #ccc; display: inline-flex; align-items: center; justify-content: center; 
border-radius: 50%; transition: all ease-in .3s;}
.rankpoint .points .vote i{margin: -3px 0 0 0; transition: all ease-in .3s;}
.rankpoint .points a:hover .vote{background: #fb9c1b;}
.rankpoint .points a:hover .vote i{color: #fff;}
.rankpoint .points .vote-count{display: inline-flex; align-items: center; font-size: 16px; margin: 0 0 0 10px;}
.rankpoint .points .vote-count .count{font-size: 24px;}
.rankpoint .points .vote-count span:not(.count){margin: 1px 0 0 3px;}

.display-between-ads{width: 100%; float: left; text-align: center; margin: 40px 0 10px;}
.display-between-ads img{display: inline-block; vertical-align: top;}

.pagination{width: 100%; float: left; margin: 30px 0 0 0;}
.wp-pagenavi{width: 100%; float: left; text-align: center;}
.pagination a{width: 28px; height: 28px; line-height: 22px; border-radius: 50%; padding-left: 0; padding-right: 0;}
.pagination a.nextpostslink{line-height: 19px;}
.wp-pagenavi a:hover{background: #fb9c1b; color: #fff;}
.wp-pagenavi span.current{width: 28px; height: 28px; background: #fb9c1b; color: #fff; line-height: 22px; border: none; border-radius: 50%; padding-left: 0;
padding-right: 0;}
.pagination a.last{width: auto; max-height: auto; border-radius: 0;}
.pagination a.last:hover{background: none; color: #fb9c1b;}
.pagination a.first{width: auto; max-height: auto; border-radius: 0;}
.pagination a.first:hover{background: none; color: #fb9c1b;}

.home_content{width: 100%; float: left; margin: 50px 0 0 0;}

.top-nav-btn span{display: inline-block; vertical-align: top;}

.header-ads{background: #f9f9f9;}
#sidebar .widget.widget_custom_html{background: #f9f9f9;}
.display-between-ads{background: #f9f9f9;}

.user-nav{margin: 0 0 0 20px; position: relative;}
.user-nav .thumbnail{width: 30px; height: 30px; border-radius: 50%; overflow: hidden; cursor: pointer;}
.user-nav .detail{display: none;}
.mobile-menu .user-nav .detail{display: block; position: relative;}
.mobile-menu .user-nav .thumbnail{float: left; margin-right: 20px; margin-bottom: 10px;}
.user-nav ul li, .user-nav ul li a{display: block !important;}
.account-menu{width: 150px; background: #fff; position: absolute; top: 56px; right: 0; box-shadow: 0 6px 4px 0 rgba(0,0,0,.16); 
opacity: 0; visibility: hidden; z-index: 9; transition: all ease-in .3s;}
.account-menu:before{position: absolute; top: -7px; right: 7px; border-bottom: 7px solid #fff; border-left: 7px solid transparent;
border-right: 7px solid transparent; content: "";}
.user-nav:hover .account-menu{opacity: 1; visibility: visible;}
.account-menu li{width: 100%; float: left; border-bottom: 1px solid #f5f5f5;}
.account-menu li a{width: 100%; float: left; color: #000 !important; font-size: 15px; padding: 5px 15px; display: block;}
.account-menu li:hover a{background: none !important; color: #fb9c1b !important;}

body #main-header nav#main-menu.site-navigation ul li.current-menu-item > a{background: #fb9c1b; color: #fff !important;}

.recent-grid{width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; border-bottom: 1px solid #dee2e6;
padding: 0 0 40px 0; margin: 0 0 25px 0;}
.recent-grid-lft{width: 58%;}
.recent-grid-rgt{width: 40%;}
#maincontent .recent-grid-lft article.hentry .thumbnail{width: 100%; margin: 0 0 20px 0;}
#maincontent .recent-grid-lft article.hentry .detail{width: 100%;}
#maincontent .recent-grid-lft article.hentry .thumbnail a img{max-height: inherit;}
.home .post-lists .recent-grid-lft article.post.hentry{border-bottom: none; padding-bottom: 0;}

#maincontent .recent-grid-rgt article.hentry .thumbnail{width: 100px; height: 100px; margin-right: 15px;}
#maincontent .recent-grid-rgt article.hentry .thumbnail a{height: 100%;}
#maincontent .recent-grid-rgt article.hentry .thumbnail a img{width: 100%; height: 100%; max-height: 100%; object-fit: cover;}
article.hentry .recent-grid-rgt article.hentry > .entrycontent p{display: none;}
#maincontent .recent-grid-rgt article.hentry .detail{width: calc(100% - 115px);}
#maincontent .recent-grid-rgt article.hentry .detail.no-thumbnail{width: 100%;}
.recent-grid-rgt article.hentry .post-title .domain{word-break: break-all;}
.recent-grid-rgt .entrymeta{display: none;}
.recent-grid-rgt article.hentry .detail h3.post-title{font-size: 16px !important; font-weight: 400 !important; line-height: 22px !important;}
.home .post-lists .recent-grid-rgt article.post.hentry:last-child{border-bottom: none; padding-bottom: 0;}

.blog-wraper{width: 100%; float: left; margin: 30px 0 0 0;}
.blog-list{display: flex; flex-wrap: wrap; margin: 0 -10px;}
body.blog .post-lists article.hentry{width: 33.33%; padding: 0 10px; margin: 0 0 20px 0; overflow: hidden;}
body.blog .post-lists article.hentry .entrycontent{width: 100%; height: 100%; float: left; border: 1px solid #dee2e6; border-radius: 5px; overflow: hidden;}
#maincontent .blog-list article.hentry .thumbnail{width: 100%; float: left; margin: 0;}
#maincontent .blog-list article.hentry .thumbnail a{width: 100%; height: 250px; float: left;}
#maincontent .blog-list article.hentry .thumbnail a img{width: 100%; height: 100%; max-height: inherit; object-fit: cover;}
#maincontent .blog-list article.hentry .detail{width: 100%; padding: 15px;}
#maincontent .blog-list article.hentry .thumbnail.no-thumb a{background: #f9f9f9; display: flex; align-items: center; justify-content: center;}
#maincontent .blog-list article.hentry .thumbnail.no-thumb a img{width: auto; max-width: 250px; height: auto;}
.blog-list article.hentry .post-title{width: 100%; float: left; font-size: 21px; font-weight: 400; font-family: Oswald;
line-height: 28px; margin: 0;}
.blog-list article.hentry .post-title a{color: #000;}
.blog-list article.hentry .post-title a:hover{color: #fb9c1b;}
article.hentry.blog .detail.no-thumbnail .entrymeta{margin: 0;}
article.hentry.blog .detail .entrymeta{width: 100%; float: left; margin: 15px 0 0 0 !important;}
article.hentry.blog .detail .entrymeta .avatar{width: 100%; float: left; padding: 0; margin: 0;}
#maincontent article.blog .entrymeta span.avatar a{color: #fb9c1b !important;}
#maincontent article.blog .entrymeta span.avatar a:hover{color: #000 !important;}
article.hentry.blog .detail .entrymeta span{width: 100%; float: left; border-left: none; padding: 0; margin: 10px 0 0 0;}
#maincontent article.blog .entrymeta span.date{color: #000 !important;}
#maincontent article.blog .entrymeta span.date a{color: #fb9c1b !important;}
#maincontent article.blog .entrymeta span.date a:hover{color: #000 !important;}
article.hentry.blog .entry-content{margin: 15px 0;}
article.hentry.blog .entry-content p{text-overflow: ellipsis; -webkit-line-clamp: 5; -webkit-box-orient: vertical; 
display: -webkit-box; overflow: hidden;}
article.hentry.blog .detail .read-more{float: left; 
background: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 40' width='52' height='40'%3E%3Ctitle%3E4781858_arrow_arrows_back_direction_left_icon%3C/title%3E%3Cdefs%3E%3Cimage width='52' height='40' id='img1' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAoCAMAAACGsik5AAAAAXNSR0IB2cksfwAAADZQTFRF+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb77z/5wAAABJ0Uk5TAEzm5VP//FtW+11VVEvkhONJSos9FQAAAGRJREFUeJzt1ksOwCAIBFD8QFutld7/sk33xoQxXdQ4a96GEICoG+dD7Fc0EphlA5BdRUHUfrwqTafyUsPq/I8qF1tTSc2GBUO3XdXP24cYZJBmM8hCWgYz0FHzgMEOdVFtvAQPCcsK1tA7VTsAAAAASUVORK5CYII='/%3E%3C/defs%3E%3Cstyle%3E%3C/style%3E%3Cuse id='Background' href='%23img1' x='0' y='0'/%3E%3C/svg%3E") no-repeat right 3px;
background-size: 18px auto;
color: #fb9c1b; font-size: 18px; font-weight: 500; font-family: Oswald; line-height: 1; padding: 0 25px 0 0;}
article.hentry.blog .detail .read-more:hover{filter: brightness(0);}

.blog-div + .pagination{margin: 10px 0 0 0;}

.single .post-lists article.hentry{padding: 0; margin: 0;}
.single .post-lists article.hentry .entrycontent{width: 100%; float: left;}
.single #maincontent article.hentry .thumbnail{width: 100%; margin: 0 0 20px 0;}
.single #maincontent article.hentry .thumbnail img{width: auto;}
.single #maincontent article.hentry .detail{width: 100%;}
.single #maincontent article.hentry h1.page-title{width: 100%; float: left; color: #000;}
.single #maincontent article.hentry h1.page-title > a:before{display: none;}
.single #maincontent article.hentry h1.page-title .domain{width: 100%; float: left; margin: 10px 0 0 0;}
.single #maincontent article.hentry .entry-content-meta{width: 100%; float: left;}
.single #maincontent article.hentry .entry-content{width: 100%; float: left; margin: 40px 0 0 0;}
.single #maincontent article.hentry .entry-content p{width: 100%; float: left; font-size: 15px; line-height: 24px; margin: 0 0 15px 0;}
.single #maincontent article.hentry .social-share-widget{width: 100%; float: left; margin: 20px 0 50px;}
.single #maincontent article.hentry .social-share-widget ul{margin: 0;}
a.report-story{float: left; color: #f00; font-size: 14px;}
a.report-story:before{display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transform: translate(0, 0); content: "\f12a"; margin-right: 5px;}


/* YARPP Related Posts */

.yarpp-related{width: 100%; float: left; margin: 50px 0 0 0;}
.yarpp-related .widget-title{width: 100%; float: left; color: #000; font-size: 20px; font-weight: 500; font-family: 'Oswald', sans-serif;
border-bottom: 1px solid #eee; padding: 0 0 10px 0;}
.yarpp-related ol{width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; list-style: none; padding: 0; margin: 0;}
.yarpp-related ol li{width: 48%; list-style-type: none;}
.single #maincontent article.hentry .yarpp-related .thumbnail{margin: 0 0 10px 0;}
.single #maincontent article.hentry .yarpp-related .thumbnail a{height: 200px;}
.single #maincontent article.hentry .yarpp-related .thumbnail img{width: 100%; height: 100%; max-height: inherit; float: none; 
display: inline-block; vertical-align: top; object-fit: cover;}
.single #maincontent article.hentry .yarpp-related .thumbnail.thumbnail-placeholder a{width: 100%; background: #f9f9f9;
display: flex; align-items: center; justify-content: center;}
.single #maincontent article.hentry .yarpp-related .thumbnail.thumbnail-placeholder a img{width: auto; height: auto; max-width: 250px;
object-fit: contain;}
#maincontent article.hentry .entry-content .yarpp-related ol li h6{width: 100%; float: left; font-size: 16px; line-height: 24px; text-align: center; margin: 0;}
.yarpp-related ol li h6 a{color: #000;}
.yarpp-related ol li h6 a:hover{color: #fb9c1b;}

.single #maincontent article.hentry .entry-content .tags{width: 100%; float: left; color: #000; margin: 30px 0 0 0;}
.single #maincontent article.hentry .entry-content .tags span{font-size: 16px; font-weight: 500; font-family: 'Oswald', sans-serif;}
.single #maincontent article.hentry .entry-content .tags a{color: #000;}
.single #maincontent article.hentry .entry-content .tags a:hover{color: #fb9c1b;}

.entrymeta a{color: #000;}
.entrymeta a:hover{color: #fb9c1b;}

.single #maincontent article.hentry .blog-page .entry-content .tags.empty{margin: 0;}
.single #maincontent article.hentry .blog-page .social-share-widget{margin-bottom: 0;}

.single-txt{width: 100%; float: left;}
.single #maincontent article.hentry .entry-content h2{width: 100%; float: left; font-size: 24px; line-height: 28px; margin: 0 0 15px 0;}
.single #maincontent article.hentry .entry-content h3{width: 100%; float: left; font-size: 22px; line-height: 26px; margin: 0 0 15px 0;}
.single #maincontent article.hentry .entry-content h4{width: 100%; float: left; font-size: 21px; font-family: Oswald; line-height: 25px; margin: 0 0 15px 0;}
.single #maincontent article.hentry .entry-content h5{width: 100%; float: left; font-size: 20px; line-height: 24px; margin: 0 0 10px 0;}
.single #maincontent article.hentry .entry-content h6{width: 100%; float: left; font-size: 18px; line-height: 22px; margin: 0 0 10px 0;}
.single #maincontent article.hentry .entry-content .single-txt ul:not(.social-share){width: calc(100% - 12px); float: left; margin-left: 12px; margin-bottom: 15px;}
.single #maincontent article.hentry .entry-content .single-txt ul:not(.social-share) li{width: 100%; float: left; font-size: 15px; line-height: 24px; margin: 0 0 5px 0;}
.single #maincontent article.hentry .entry-content .single-txt ul:not(.social-share) li:last-child{margin: 0;}
.single #maincontent article.hentry .entry-content .single-txt ul:not(.social-share) li a{color: #fb9c1b;}
.single #maincontent article.hentry .entry-content .single-txt ul:not(.social-share) li a:hover{color: #000;}
.single #maincontent article.hentry .entry-content .single-txt ol:not(.related-list){width: calc(100% - 12px); float: left; margin-left: 12px; margin-bottom: 15px;}
.single #maincontent article.hentry .entry-content .single-txt ol:not(.related-list) li{width: 100%; float: left; font-size: 15px; line-height: 24px; margin: 0 0 5px 0;}
.single #maincontent article.hentry .entry-content .single-txt ol:not(.related-list) li:last-child{margin: 0;}
.single #maincontent article.hentry .entry-content .single-txt ol:not(.related-list) li a{color: #fb9c1b;}
.single #maincontent article.hentry .entry-content .single-txt ol:not(.related-list) li a:hover{color: #000;}


#maincontent .page-user{max-width: 100%; float: left;}
#maincontent .page-user .page-title{width: 100%; float: left; color: #000 !important; margin: 0 0 30px 0 !important;}
#maincontent .page-user .profile-tabs{width: 100%; float: left;}
#maincontent .page-user article p{width: 100%; float: left; margin: 0 0 15px 0;}
form#submit-topic{width: 100%; float: left; margin: 25px 0 35px 0 !important;}
.input-wrapper{width: 100%; float: left;}
.input-wrapper input{width: 100%; height: 50px; float: left; background: #f9f9f9; color: #000; font-family: Roboto; border: 1px solid #ccc; padding: 0 15px;}
.input-wrapper input::placeholder{color: #000; opacity: 1;}
.input-wrapper select{width: 100%; height: 50px; float: left; background-color: #f9f9f9; background-image: url("images/select-bg.png");
background-repeat: no-repeat; background-size: 12px auto; background-position: center right 15px;
 color: #000; font-family: Roboto; border: 1px solid #ccc; padding: 0 30px 0 10px;}
.front_desc{font-family: Roboto; margin: 0 0 5px 0;}
.input-wrapper textarea{width: 100%; height: 200px; float: left;  background-color: #f9f9f9; color: #000; font-family: Roboto; line-height: 24px; 
border: 1px solid #ccc; padding: 10px 15px; resize: vertical;}
.input-wrapper textarea::placeholder{color: #000; opacity: 1;}
.input-wrapper div.tagsinput input{height: 30px; color: #000 !important; font-size: 14px;}
.input-wrapper #tags_url_tagsinput{padding: 10px 15px;}
.tagsinput .tag span{display: inline-block; vertical-align: middle;}
.tagsinput .tag a{display: inline-block; vertical-align: middle;}
.input-wrapper br{display: none;}
.input-wrapper small{width: 100%; float: left; margin: 5px 0 0 0;}
.g-recaptcha{width: 100%; float: left; margin: 0 0 30px 0 !important;}
form .btn{min-width: 150px; height: 50px; font-size: 20px !important; font-weight: 600; font-family: 'Oswald', sans-serif; 
padding: 0 15px 2px 15px;}
form .btn:hover{background: #000 !important;}
#maincontent .page-user .post-lists article.hentry{padding: 0; margin: 0;}
.btn, .button{transition: all ease-in .3s;}

.popup-content .warrior-header{margin: 0 0 30px 0;}
.popup-content .warrior-header a{font-size: 18px !important; font-weight: 400; font-family: 'Oswald', sans-serif;}
.popup-content h4.widget-title{color: #000; font-size: 20px; font-weight: 500; padding: 0 0 10px 0; margin: 0 0 20px 0;}
.popup-content .input-wrapper{margin: 0 0 20px 0;}
.popup-content .input-wrapper input{height: 45px;}
.popup-content .input-wrapper select{height: 45px;}
#loginform{width: 100%; float: left;}
#loginform p{width: 100%; float: left; margin: 0 0 20px 0;}
#loginform p label{width: 100%; float: left; margin: 0 0 5px 0;}
#loginform p input:not(.button){width: 100%; height: 45px; float: left; background-color: #f9f9f9; color: #000; font-family: Roboto; border: 1px solid #ccc;
padding: 0 15px;}
#loginform p.login-submit{margin: 5px 0 0 0;}
#loginform p.login-submit .button{min-width: 150px; height: 45px; font-size: 20px !important; font-weight: 600; 
font-family: 'Oswald', sans-serif; padding: 0 15px 2px 15px;}
#loginform p.login-submit .button:hover{background: #000 !important;}
.popup-content form .btn{height: 45px;}
.popup-content a.lost-password-link{width: auto; margin: 15px 0 0 0;}
#tab-login{width: 100%; float: left;}
#upvote_registration_form{width: 100%; float: left;}
.popup-content #upvote_registration_form .input-wrapper:last-child{margin: 0;}

.popup-wrapper{width: 100%; overflow-x: hidden;}

.cms-page{width: 100%; float: left; margin: 30px 0 0 0;}
.wpcf7{width: 100%; float: left; margin: 0 0 20px 0;}
.cms-page .wpcf7 p{width: 100%; float: left; margin: 0 0 30px 0;}
.wpcf7 p label{width: 100%; float: left;}
.wpcf7 p label br{display: none;}
.wpcf7-form-control-wrap{width: 100%; float: left; margin: 5px 0 0 0;}
.wpcf7-form-control-wrap .wpcf7-form-control{width: 100%; height: 50px; float: left; background: #f9f9f9; color: #000; border: 1px solid #ccc;
padding: 0 15px;}
.wpcf7-form-control-wrap .wpcf7-form-control::placeholder{color: #000; opacity: 1;}
.wpcf7-form-control-wrap textarea.wpcf7-form-control{height: 100px; color: #000; line-height: 24px; resize: vertical; padding: 10px 15px;
margin: 0;}
.wpcf7 p:empty{display: none;}
.wpcf7 p input[type="submit"]{min-width: 150px; height: 50px; float: none; display: inline-block; vertical-align: middle; 
font-size: 20px !important; font-weight: 600; font-family: 'Oswald', sans-serif; padding: 0 15px 2px 15px; transition: all ease-in .3s;}
.wpcf7 p input[type="submit"]:hover{background: #000;}
.wpcf7 .wpcf7-spinner{background: #000; display: inline-block; vertical-align: middle; opacity: 1;}
.wpcf7-response-output{width: 100%; float: left; margin: 15px 0 0 0 !important;}
.wpcf7 form.sent .wpcf7-response-output{width: 100%; float: left; display: block !important; margin: 15px 0 0 0;}
article.hentry > .entrycontent p{width: 100%; float: left; margin: 0 0 15px 0;}
article.hentry > .entrycontent p:empty{display: none;}
article.hentry > .entrycontent p:last-child{margin: 0;}
.cms-page ul{width: calc(100% - 12px); float: left; margin: 0 0 15px 12px;}
.cms-page ul li{width: 100%; float: left; margin: 0 0 5px 0;}
.cms-page ul li:last-child{margin: 0;}
.cms-page ul li a{color: #fb9c1b;}
.cms-page ul li a:hover{color: #000;}
.cms-page ul:last-child{margin-bottom: 0;}

.post-lists article.page.type-page.hentry{width: 100%; float: left; padding: 0; margin: 0;}

.widget.about-profile-widget{width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; margin: 30px 0 50px;}
#maincontent article.hentry .widget.about-profile-widget .thumbnail{width: 100px; height: 100px; float: left; margin: 0;}
#maincontent article.hentry .widget.about-profile-widget .thumbnail img{width: 100%; height: 100%; object-fit: cover;}
#maincontent article.hentry .widget.about-profile-widget .detail{width: calc(100% - 100px); padding: 0 0 0 30px; margin: 0;}
#maincontent article.hentry .widget.about-profile-widget .detail .widget-title{width: 100%; float: left; color: #000; font-size: 21px;
 text-transform: capitalize; border-bottom: none; padding: 0; margin: 0;}
 #maincontent article.hentry .widget.about-profile-widget .detail .widget-title span{float: left;}
.entry-content .statistic-widget ul{display: flex; list-style: none; padding: 0; margin: 0 -15px;}
.entry-content .statistic-widget ul:after{display: none;}
.entry-content .statistic-widget ul li{width: 33.33% !important; padding: 0 15px; margin: 0 !important;}
.statistic-widget ul li .inner{width: 100%; height: 100%; float: left; background: #f9f9f9; color: #000; border: 1px solid #ccc; border-radius: 5px;}
.statistic-widget ul li .inner h4.widget-title{width: 100%; float: left; color: #000; font-size: 20px; font-weight: 500;}
.statistic-widget ul li .inner h4.widget-title span{float: none !important;}
.statistic-widget ul li .inner .statistic-number{width: 100%; float: left; color: #fb9c1b; margin: 30px 0 10px;}
.statistic-widget ul li .inner .statistic-number + h4.widget-title{font-size: 16px; font-weight: 400;}
.profile-tabs{width: 100%; float: left;}
.profile-tabs .warrior-tab-nav{border-bottom: 1px solid #eee; margin: 0 0 35px 0;}
.profile-tabs .warrior-tab-nav ul{margin: 0 0 10px 0;}
.profile-tabs .warrior-tab-nav ul li{padding: 0;}
.profile-tabs .warrior-tab-nav ul li + li{margin: 0 0 0 30px;}
.profile-tabs .warrior-tab-nav ul li a{color: #000; font-size: 16px; padding: 0;}
.profile-tabs .warrior-tab-nav ul li a:hover{color: #fb9c1b;}
.profile-tabs .warrior-tab-nav ul li.active a{color: #fb9c1b;}
.post-lists .profile-tabs article.page.type-page.hentry{margin: 0;}

.alert{margin: 0 0 20px 0;}
.alert:last-child{margin: 0;}

body .thank-you-msg{font-size: 21px !important; line-height: 30px !important; margin: 25px 0 0 0;}
body .thank-you-msg + .other-sites{margin: 60px 0 0 0;}

#maincontent .other-site-wraper{width: 100%;}
#maincontent .other-site-wraper ul{list-style: none;}

.post-lists .dashboard-post-lists article.hentry{border-bottom: 1px solid #dee2e6; padding: 25px 0; margin: 0;}
.post-lists .dashboard-post-lists article.hentry:last-child{border-bottom: none; padding-bottom: 0;}

.rankpoint .points .vote i#icon-unlike{margin: 0;}

.current-avatar{width: 100px; height: 100px; border-radius: 50%; margin: 5px 0; overflow: hidden;}
.current-avatar img{width: 100%; height: 100%; object-fit: cover;}
.input-wrapper input#edit_profilephoto{height: auto; border: none; padding: 0; margin: 0;} 

body.archive .post-lists article.hentry{width: 100%; float: left; border-bottom: 1px solid #dee2e6; padding: 25px 0; margin: 0;}
body.archive .post-lists article.hentry:last-child{border-bottom: none; padding-bottom:  0;}

body.archive #maincontent .page-user .post-lists article.hentry{border-bottom: 1px solid #dee2e6; padding: 25px 0;}
body.archive #maincontent .page-user .post-lists article.hentry:last-child{border-bottom: none; padding-bottom:  0;}

body.archive .post-lists h4.widget-title{width: 100%; float: left; color: #000; font-size: 21px; font-weight: 600; 
padding: 0 0 10px 0; margin: 0;}
body.archive .post-lists h4.widget-title span{float: left;}

body.search .post-lists article.hentry{width: 100%; float: left; border-bottom: 1px solid #dee2e6; padding: 25px 0; margin: 0;}
body.search .post-lists article.hentry:last-child{border-bottom: none; padding-bottom:  0;}

.infinite-scroll{width: 100%; float: left;}

#maincontent .page-user article.story p{margin: 15px 0 0 0;}

#maincontent article.hentry .no-thumbnail .thumbnail{display: none;}

.popup-content .alert{font-size: 14px; padding: 5px 10px;}

.wpcf7 .wpcf7-form-control-wrap.recaptcha{width: 100%; float: left; margin: 0 0 30px 0;}
.wpcf7 .wpcf7-form-control-wrap.recaptcha .g-recaptcha{width: auto; height: auto; background: none; border: none; padding: 0; margin: 0 !important;}

article.hentry > .entrycontent .cms-page p{margin: 0 0 15px 0;}
article.hentry > .entrycontent .cms-page p:last-child{margin: 0;}
article.hentry > .entrycontent .cms-page .wpcf7 p{margin: 0 0 30px 0;}

article.hentry > .entrycontent .story p{margin: 15px 0 0 0;}

#maincontent article.hentry .thumbnail.placeholder a{width: 100%; height: 150px; background: #f9f9f9; display: flex; align-items: center;
justify-content: center;}
#maincontent article.hentry .thumbnail.placeholder a img{max-width: 90%;}
#maincontent .recent-grid-lft article.hentry .thumbnail.placeholder a{height: 300px;}
#maincontent .recent-grid-rgt article.hentry .thumbnail.placeholder a{height: 100%;}
#maincontent .recent-grid-rgt article.hentry .thumbnail.placeholder a img{width: auto; height: auto;}

.warrior-tab-content .alert{margin: 0 0 20px 0;}

.entry-content ul.trending-tags{margin: 0;}

#maincontent ins{width: 100%; float: left;}

#maincontent .recent-grid-lft article.hentry .thumbnail:not(.placeholder) a{height: 320px; background: #f9f9f9; display: flex;
align-items: center; justify-content: space-between;}
#maincontent .recent-grid-lft article.hentry .thumbnail:not(.placeholder) a img{max-width: 100%; max-height: 100%;}

ul.country_list{width: 100%; float: left; display: block; column-count: 3; list-style: none; padding: 0; margin: 20px 0 0 0;}
ul.country_list li{border-bottom: none !important; padding: 0 0 0 15px; margin: 0 0 10px 0; position: relative;}
ul.country_list li:before{position: absolute; top: 0; left: 0; color: #fb9c1b; font-size: 18px; font-family: FontAwesome; content: "\f105";}
.selected_country{color: #fb9c1b !important;}
.selected_country:hover{color:#fb9c1b !important;}


/******* Woocommerce Start ********/

.purchase-sec{width: 100%; float: left; background: #ffffca; text-align: center; border: 1px solid #fb9c1b; border-radius: 10px;
padding: 25px 30px 30px; margin: 30px 0 40px;}
.purchase-sec h4{width: 100%; float: left; color: #000; font-size: 24px; font-weight: 500; font-family: Oswald; line-height: 28px;
margin: 0 0 25px 0;}
#maincontent .woocommerce .button{background: #fb9c1b; color: #fff !important; font-size: 19px; font-weight: 500; font-family: Oswald; 
line-height: 1; text-align: center; text-transform: capitalize; border-radius: 5px; padding: 10px 20px 13px;}
#maincontent .woocommerce .button:hover{background: #000;}
#maincontent .woocommerce a.button.loading::after{display: inline-block; vertical-align: middle; position: static; margin: -4px 0 0 10px;}
#maincontent .woocommerce .added_to_cart{background: #fb9c1b; color: #fff; font-size: 19px; font-weight: 500; font-family: Oswald; 
line-height: 1; text-transform: capitalize; border-radius: 5px; padding: 10px 20px 13px; margin: 0 0 0 15px;}
#maincontent .woocommerce .added_to_cart:hover{background: #000;}
#maincontent .purchase-sec.woocommerce .button.added{display: none;}
#maincontent .purchase-sec.woocommerce .button.added + .added_to_cart{margin: 0;}

.woocommerce:not(.purchase-sec){margin: 40px 0 0 0;}
.woocommerce table.shop_table td{text-align: left;}
.woocommerce table.shop_table{border-radius: 0; margin: 0 0 40px 0;}
.woocommerce-cart table.cart img{width: 100px;}
.coupon #coupon_code{width: 250px !important; height: 42px; padding: 0 15px;}
#maincontent .woocommerce .checkout-button.button{font-size: 21px; padding: 15px 20px 17px; margin: 0;}
.woocommerce-checkout .input-text{width: 100%; height: 45px; background: #f9f9f9; color: #000; border: 1px solid #ccc; padding: 0 15px;}
.woocommerce-checkout textarea.input-text{height: 150px !important; resize: vertical; padding: 10px 15px;}
.woocommerce-checkout .select2-container .select2-selection--single{height: 45px; border: 1px solid #ccc; border-radius: 0;}
.woocommerce-checkout .select2-selection__rendered{line-height: 45px !important;}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow{height: 43px;}
.woocommerce-checkout .select2-container--default .select2-search--dropdown .select2-search__field{height: 35px;}
#customer_details{margin: 0 0 50px 0;}
.woocommerce-checkout #payment ul.payment_methods li{line-height: 1.5;}
.woocommerce-checkout #payment{background: #f9f9f9; border-radius: 0;}
.woocommerce-checkout .woocommerce-form-coupon-toggle{display: none;}
article.hentry .entry-content #customer_details h3{font-size: 24px;}
article.hentry .entry-content #order_review_heading{font-size: 24px;}
.woocommerce form .form-row{padding: 0;}
.woocommerce form .form-row.place-order{margin: 0;}
.woocommerce form .form-row #place_order{margin: 15px 0 0 0;}
.woocommerce-checkout #payment ul.payment_methods li + li{margin: 15px 0 0 0;}
.payment_box{width: 100%; float: left;}
.woocommerce-customer-details{margin: 0;}
.woocommerce-customer-details address{width: 100% !important; float: left; border-radius: 0;}
#maincontent article.hentry .entry-content .woocommerce-order-details__title, 
#maincontent article.hentry .entry-content .woocommerce-column__title{font-size: 24px;}
.woocommerce-account .woocommerce-MyAccount-content{width: 100%;}
.woocommerce table.my_account_orders{font-size: 16px;}
.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th{padding: 10px;}
#maincontent .woocommerce table.my_account_orders .button{font-size: 15px; padding: 5px 10px 9px;}
.return-to-shop{margin: 20px 0 0 0 !important;}
.plan-list-wraper{width: 100%; float: left;}
.plan-list{display: flex; flex-wrap: wrap; justify-content: center; margin: 100px 0 0 0;}
.plan-list li{width: 350px; max-width: 33.33%; background: #ffffca; display: inline-flex; flex-wrap: wrap; text-align: center; border: 1px solid #fb9c1b;
 padding: 90px 0 80px; position: relative;}
.plan-icon{width: 100px; height: 100px; background: #fb9c1b; display: inline-flex; justify-content: center; align-items: center;
border-radius: 50%; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);}
.plan-icon img{max-width: 50px;}
.plan-list li h3{width: 100%; float: left; color: #fb9c1b; font-size: 25px; font-weight: 700; text-transform: uppercase; margin: 0 0 10px 0;}
.plan-list li h4{width: 100%; float: left; color: #fb9c1b; font-size: 25px; font-weight: 700; margin: 0;}
.feature-list{width: 100%; float: left; padding: 0 25px; margin: 10px 0 0 0;}
.plan-list li p{width: 100%; float: left; font-size: 16px; font-weight: 500; border-top: 1px solid #f7f7c2; padding: 12px 0; margin: 0;}
.plan-list li p:first-child{border-top: none;}
.woocommerce .plan-list li a{width: 100%; background: #fb9c1b; color: #fff; font-size: 21px; font-weight: 700; text-align: center; text-transform: uppercase; 
border-radius: 0; position: absolute; left: 0; bottom: 0; padding: 15px 0 !important;}
.woocommerce .plan-list li a:after{float: none; display: inline-block; vertical-align: middle; position: static !important; margin: 0 0 0 10px;}
.woocommerce .plan-list li a:hover{background: #000; color: #fff;}
.woocommerce .plan-list li a.added{display: none;}

.plan-table{width: 100%; float: left;}
.plan-table table{width: 600px; max-width: 100%; display: inline-block; vertical-align: top; border: 1px solid #fb9c1b;}
.plan-table table tr td{background: #fff; color: #000; vertical-align: middle; font-size: 15px; border: none; border-bottom: 1px solid #000; padding: 10px;}
.plan-table table tr td:first-child{width: 200px; background: #fb9c1b; color: #fff; font-size: 18px; font-weight: 700; font-family: Oswald;
text-align: left; border-bottom: 1px solid #fff;}
.plan-table table tr:first-child td{border-top: none;}
.plan-table table tr:last-child td{background: #fff; color: #000; text-align: center; border-bottom: none;}

/******* Woocommerce End ********/


@media screen and (max-width: 1365px){
    #maincontent .blog-list article.hentry .thumbnail a{height: 200px;}
}

@media screen and (max-width: 1239px){
    .container{padding: 0 15px;}
    #logo{max-width: 220px;}
    #main-menu{margin: 0 0 0 20px;}
    nav#main-menu.site-navigation ul li a{font-size: 17px;}
    #main-header nav#user-menu ul li.login a{font-size: 17px !important;}
    nav#main-menu.site-navigation ul li.menu-item-has-children ul.sub-menu li a{font-size: 15px;}
    header #search-widget{padding: 0 15px;}
    #masthead #search-widget .input-wrapper input{height: 50px;}
    #content{margin: 50px 0 40px;}
    .header-ads{margin: 0 0 50px 0 !important;}
    .other-sites{margin: 0 0 30px 0;}
    .other-sites h2{font-size: 28px !important; margin: 0 0 25px 0 !important;}
    .other-site-wraper{width: 80%;}
    #trending-tags{padding: 20px 0 30px; margin: 0 0 40px 0;}
    #maincontent{padding: 0 40px 0 0;}
    #maincontent article.hentry .thumbnail{width: 200px;}
    #maincontent article.hentry .detail{width: calc(100% - 220px);}
    .home_content{margin: 40px 0 0 0;}
    #maincontent article.hentry .entry-content .home_content h1{font-size: 28px; line-height: 35px !important;}

    #maincontent .recent-grid-rgt article.hentry .thumbnail{width: 80px; height: 80px;}
    #maincontent .recent-grid-rgt article.hentry .detail{width: calc(100% - 95px);}
    #sidebar .widget + .widget{margin: 30px 0 0 0;}

    body.blog .post-lists article.hentry{width: 50%;}
    .blog-list article.hentry .post-title{font-size: 20px; line-height: 26px;}

    .widget.about-profile-widget{margin: 25px 0 40px;}
    #maincontent article.hentry .widget.about-profile-widget .detail{padding: 0 0 0 20px;}
    #maincontent article.hentry .widget.about-profile-widget .detail .widget-title{font-size: 20px;}
    .entry-content .statistic-widget ul{margin: 0 -7px;}
    .entry-content .statistic-widget ul li{padding: 0 7px;}
    .statistic-widget ul li .inner{padding: 20px;}
    .statistic-widget{margin: 0 0 40px 0;}
    .profile-tabs .warrior-tab-nav{margin: 0 0 30px 0;}

    body .thank-you-msg{font-size: 18px !important; line-height: 24px !important;}
    body .thank-you-msg + .other-sites{margin: 50px 0 0 0;}

    #backtotop{right: 15px;}
    .top-nav-btn{right: 15px;}

    #maincontent article.hentry .thumbnail.placeholder a{height: 120px;}
    #maincontent .recent-grid-lft article.hentry .thumbnail.placeholder a{height: 250px;}

    #maincontent .recent-grid-lft article.hentry .thumbnail:not(.placeholder) a{height: 300px;}

    ul.country_list li{font-size: 14px; line-height: 20px;}
    ul.country_list li:before{top: -1px;}

    /******* Woocommerce Start ********/
    .purchase-sec h4{font-size: 22px;}
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{width: 60%;}
    .woocommerce:not(.purchase-sec){margin: 35px 0 0 0;}
    article.hentry .entry-content #customer_details h3{font-size: 21px; margin: 0 0 15px 0;}
    article.hentry .entry-content #order_review_heading{font-size: 21px;}
    #customer_details{margin: 0 0 40px 0;}
    #maincontent article.hentry .entry-content .woocommerce-order-details__title, 
    #maincontent article.hentry .entry-content .woocommerce-column__title{font-size: 21px;}
    .woocommerce ul.order_details{margin: 0 0 25px 0;}
    .woocommerce ul.order_details li{padding-right: 20px; margin-right: 20px; margin-bottom: 15px;}
    .woocommerce table.my_account_orders{font-size: 15px;}

    /******* Woocommerce End ********/
}

@media screen and (max-width: 1000px){
    .header-wraper{padding: 15px 0;}
    .menu-btn{width: 30px; height: 30px;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 112 80' width='112' height='80'%3E%3Ctitle%3Emenu-btn%3C/title%3E%3Cdefs%3E%3Cimage width='112' height='80' id='img1' href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHAAAABQBAMAAAAzYuxOAAAAAXNSR0IB2cksfwAAAC1QTFRF+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb+5wb3KsVTgAAAA90Uk5TAB2s8v+vJ+3uqvHwqewcQ5Mz9QAAAJtJREFUeJztmDERgEAMBIMKBPASwME3PJQIoMTG20ADmhikQBcabiY3lLf91tmcNV0mGFZrGS/naokTR+s5sbDiZAsnzrZx4mnNznjHZUIIIUQU1ADPpf8GNkAFYkLiCER4ygsrTkCEDTADETbACUTUALr0QgghfiW2A7yqILgDeBWkmOhVEHznCyt6FQR3AK+C4A7gVRDbAbwKbtqQITgaTDK6AAAAAElFTkSuQmCC'/%3E%3C/defs%3E%3Cstyle%3E%3C/style%3E%3Cuse id='Background' href='%23img1' x='0' y='0'/%3E%3C/svg%3E");
        background-repeat: no-repeat; background-position: center; background-size: 100% auto; padding: 0 !important; margin: 0 20px 0 0 !important;
    filter: brightness(100); transition: all ease-in .3s;}
    .menu-btn:hover{filter: none;}
    .search-form-trigger{padding: 0;}
    #jPanelMenu-menu{background: #fff; border: none; box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3); padding: 0;}
    body[data-menu-position="open"] #jPanelMenu-menu{z-index: 9 !important;}
    #jPanelMenu-menu .widget{display: none;}
    .mobile-menu{width: 100%; float: left;}
    #main-menu{width: 100%; float: left;}
    .main-menu{width: 100%; float: left;}
    .main-menu li{width: 100%; float: left;}
    nav#main-menu.site-navigation ul li a{color: #000 !important; font-size: 16px; font-weight: 500; font-family: 'Oswald', sans-serif;}
    nav#main-menu.site-navigation ul li:hover > a{background: none !important; color: #fb9c1b !important;}
    .dropdown-trigger{color: #000; font-size: 20px; line-height: 54px;}
    .site-navigation ul li.menu-item-has-children ul.sub-menu{box-shadow: none;}
    nav#main-menu.site-navigation ul li.menu-item-has-children ul.sub-menu li{border-bottom: none;}
    nav#main-menu.site-navigation ul li.menu-item-has-children ul.sub-menu li a{padding-left: 25px !important;}
    #content{margin: 40px 0 50px;}
    .header-ads{margin: 0 0 40px 0 !important;}
    .other-sites{margin: 0 0 20px 0;}
    .other-site-wraper{width: 90%;}
    .other-sites h2{font-size: 25px !important; margin: 0 0 20px 0 !important;}
    .other-sites h2 span::before{width: 60px; left: -70px;}
    .other-sites h2 span::after{width: 60px; right: -70px;}
    #trending-tags{padding: 20px 0 30px; margin: 0 0 35px 0;}
    header.section-title h4{font-size: 22px;}
    header.section-title h1{font-size: 22px;}
    #maincontent{padding: 0;}
    #maincontent article.hentry .entry-content .home_content h2{font-size: 25px; line-height: 32px !important;}
    #maincontent article.hentry .entry-content .home_content h3{font-size: 22px; line-height: 28px !important;}
    #sidebar{margin: 30px 0 0 0;}
    #sidebar .widget .widget-title{padding: 10px 0 !important;}
    .ft-top{padding: 30px 0;}
    .top-nav-btn{font-size: 16px; padding: 12px 20px 10px; right: 15px;}
    .copyright-info{padding: 11px 0;}

    .user-nav{display: none;}
    .mobile-menu .user-nav{width: 100%; float: left; background: #fb9c1b; display: inline-block !important;
    align-items: center; justify-content: space-between; padding: 15px 0; margin: 0; position: relative;}
    .mobile-menu .user-nav .thumbnail{float: none; display: inline-block; vertical-align: middle; margin: 0 15px 0 10px;}
    .mobile-menu .user-nav .detail{width: 190px; float: none; display: inline-block; vertical-align: middle; color: #fff; position: static;}
    .user-menu-toggle{width: 30px; color: #fff; font-size: 20px; line-height: 60px; text-align: center; 
    position: absolute; top: 0; right: 0; cursor: pointer;}
    .account-menu{width: 100%; opacity: 1; visibility: visible; box-shadow: none; top: 15px; margin: 0;}
    .account-menu li{border-bottom: none;}
    .mobile-menu .user-nav ul li a{font-size: 14px; font-weight: 400; font-family: 'Oswald', sans-serif;}
    .account-menu li:last-child{border-bottom: none;}
    .account-menu:before{display: none;}

    .single #maincontent article.hentry .entry-content{margin: 30px 0 0 0;}
    .single #maincontent article.hentry .social-share-widget{margin: 20px 0 40px;}
    .yarpp-related{margin: 40px 0 0 0;}
    .single #sidebar{margin: 40px 0 0 0;}

    body .thank-you-msg + .other-sites{margin: 40px 0 0 0;}

    #adduser{margin: 0 0 30px 0;}

    #backtotop{bottom: 80px;}

    #maincontent .recent-grid-lft article.hentry .thumbnail:not(.placeholder) a{height: 280px;}

    /******* Woocommerce Start ********/
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{width: 55%;}
    .woocommerce-cart .wc-proceed-to-checkout{padding-bottom: 0;}
    .woocommerce:not(.purchase-sec){margin: 30px 0 0 0;}
    #customer_details{margin: 0 0 35px 0;}
    .woocommerce table.my_account_orders{margin: 0 0 20px 0;}
    .plan-list{margin: 70px 0 0 0;}
    .plan-list li{width: 33.33%; padding: 70px 0;}
    .plan-icon{width: 80px; height: 80px; top: -40px;}
    .plan-icon img{max-width: 40px;}
    .plan-list li h3{font-size: 24px;}
    .plan-list li h4{font-size: 24px;}
    .woocommerce .plan-list li a{font-size: 18px; padding: 12px 0;}
    /******* Woocommerce End ********/

}

@media screen and (max-width: 800px){
    .trending-slider{border-left: none;}
    .trending-slider .owl-controls{height: 100%;}
    .trending-slider .owl-controls .owl-nav{height: 100%;}
    .trending-slider .owl-controls .owl-nav div{height: 100%;}
    article.hentry.trending-news h3 a{padding: 13px 0 8px;}
    .trending-slider .owl-controls .owl-nav .owl-next, .trending-slider .owl-controls .owl-nav .owl-prev{display: inline-flex; align-items: center; justify-content: center;}

    .current-avatar{width: 90px; height: 90px;}
}

@media screen and (max-width: 768px){
    /******* Woocommerce Start ********/
    .woocommerce table.cart .product-thumbnail{display: block !important;}
    .woocommerce table.cart .product-thumbnail:before{display: none;}
    .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td{text-align: left !important;}
    .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before{margin: 0 10px 0 0;}
    .coupon #coupon_code{width: calc(100% - 180px) !important; margin: 0 10px 0 0 !important;}
    .coupon .button{width: 170px !important;}
    .woocommerce table.shop_table td{padding: 15px;}
    .coupon{padding: 0 0 15px 0 !important;}
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{width: 100%;}
    .woocommerce-cart table.cart img{width: 90px;}
    #customer_details .col-1{width: 100%; float: left;}
    #customer_details .col-2{width: 100%; float: left; margin: 30px 0 0 0;}
    .woocommerce-checkout textarea.input-text{height: 100px !important;}
    #customer_details{margin: 0 0 30px 0;}
    .woocommerce #payment #place_order, .woocommerce-page #payment #place_order{margin: 15px 0 0 0;}
    .woocommerce-privacy-policy-text p{font-size: 14px;}
    .woocommerce table.shop_table th{padding: 15px;}
    /******* Woocommerce End ********/
}

@media screen and (max-width: 767px){
    .header-wraper{padding: 10px 0;}
    #logo{max-width: 200px;}
    .menu-btn{width: 25px; height: 25px; margin: 0 15px 0 0 !important;}
    #content{margin: 40px 0 45px;}
    .header-ads{margin: 0 0 35px 0 !important;}
    .other-sites h2{font-size: 22px !important; margin: 0 0 15px 0 !important;}
    .other-sites h2 span::before{width: 50px; left: -60px;}
    .other-sites h2 span::after{width: 50px; right: -60px;}
    .other-site-wraper{width: 100%;}
    #maincontent article.hentry .thumbnail{width: 180px; margin: 0 15px 0 0;}
    #maincontent article.hentry .detail{width: calc(100% - 195px);}
    article.hentry .detail h3.post-title{font-size: 20px !important;}
    article.hentry > .entrycontent p{font-size: 14px;}
    .pagination{margin: 20px 0 0 0;}
    .home_content{margin: 30px 0 0 0;}
    #maincontent article.hentry .entry-content .home_content h1{font-size: 24px;}
    #maincontent article.hentry .entry-content .home_content p{font-size: 14px; line-height: 25px;}
    #maincontent article.hentry .entry-content .home_content h2{font-size: 22px; line-height: 30px !important;}
    #maincontent article.hentry .entry-content .home_content h3{font-size: 20px; line-height: 26px !important;}
    #sidebar{margin: 25px 0 0 0;}
    .ft-top{padding: 25px 0;}
    #sidebar .widget ul p{font-size: 14px;}

    .recent-grid{padding: 0 0 30px 0; margin: 0 0 15px 0;}

    .blog-wraper{margin: 25px 0 0 0;}

    .single #maincontent article.hentry .social-share-widget{margin: 15px 0 30px;}
    .yarpp-related{margin: 35px 0 0 0;}
    .yarpp-related .widget-title{margin: 0 0 25px 0;}

    .post-lists article.page.type-page.hentry{margin: 0 0 15px 0;}

    .widget.about-profile-widget{margin: 20px 0 35px;}
    #maincontent article.hentry .widget.about-profile-widget .thumbnail{width: 80px; height: 80px;}
    #maincontent article.hentry .widget.about-profile-widget .detail{width: calc(100% - 80px);}
    .statistic-widget{margin: 0 0 35px 0;}
    .alert{font-size: 14px; padding: 10px; margin: 0 0 15px 0;}

    body .thank-you-msg{font-size: 16px !important; line-height: 21px !important; margin: 20px 0 0 0;}
    body .thank-you-msg + .other-sites{margin: 35px 0 0 0;}

    .current-avatar{width: 80px; height: 80px;}

    #adduser{margin: 0 0 20px 0;}

    #maincontent .page-user article.story p{font-size: 14px;}

    .other-sites{margin: 0 0 15px 0;}

    #maincontent .recent-grid-lft article.hentry .thumbnail:not(.placeholder) a{height: 250px;}

    /******* Woocommerce Start ********/
    .woocommerce:not(.purchase-sec){margin: 30px 0 0 0;}
    .woocommerce-checkout .input-text{height: 40px;}
    .woocommerce-checkout .select2-container .select2-selection--single{height: 40px;}
    .woocommerce-checkout .select2-selection__rendered{line-height: 40px !important;}
    .select2-results__option{font-size: 13px; padding: 5px;}
    article.hentry .entry-content #customer_details h3{font-size: 19px;}
    article.hentry .entry-content #order_review_heading{font-size: 19px;}
    #maincontent article.hentry .entry-content .woocommerce-order-details__title, 
    #maincontent article.hentry .entry-content .woocommerce-column__title{font-size: 19px;}
    .woocommerce-customer-details address{font-size: 14px;}
    .woocommerce table.my_account_orders{margin: 0;}
    #maincontent .woocommerce table.my_account_orders .button{padding: 6px 10px 8px;}
    .plan-list li{width: 350px; max-width: 100%;}
    /******* Woocommerce End ********/
}

@media screen and (max-width: 639px){
    body{padding: 0 0 46px 0;}
    #main-header nav#user-menu ul li.login a{font-size: 16px !important;}
    .search-form-trigger{margin: 0 0 0 15px;}
    #content{margin: 35px 0 40px;}
    .header-ads{margin: 0 0 30px 0 !important;}
    .other-sites{margin: 0 0 10px 0;}
    .other-site-wraper ul{margin: 0 -20px;}
    .other-site-wraper ul li{padding: 0 20px;}
    #trending-tags{padding: 30px 0 20px; margin: 0 0 30px 0;}
    header.section-title h4{font-size: 20px;}
    header.section-title h1{font-size: 20px;}
    header.section-title{padding: 0 0 10px 0; margin: 0 0 5px 0;}
    .rankpoint .points .vote{width: 35px; height: 35px;}
    .points a i{font-size: 18px;}
    .rankpoint .points .vote i{margin: -2px 0 0 0;}
    .rankpoint .points .vote-count .count{font-size: 22px;}
    .rankpoint .points .vote-count{font-size: 15px;}
    .display-between-ads{margin: 35px 0 10px;}
    .top-nav-btn{width: 100%; border-radius: 0; right: 0;}
    #footer-bottom .copyright-info p{width: 100%; text-align: center;}
    #backtotop{display: none !important;}

    .recent-grid{border-bottom: none; padding: 0; margin: 0;}
    .recent-grid-lft{width: 100%;}
    #maincontent .recent-grid-lft article.hentry .thumbnail{width: 180px; margin: 0 15px 0 0;}
    #maincontent .recent-grid-lft article.hentry .thumbnail a img{max-height: 200px;}
    #maincontent .recent-grid-lft article.hentry .detail{width: calc(100% - 195px);}
    #maincontent .recent-grid-lft article.hentry .detail.no-thumbnail{width: 100%;}
    .home .post-lists .recent-grid-lft article.post.hentry{border-bottom: 1px solid #dee2e6; padding-bottom: 25px;}
    .recent-grid-rgt{width: 100%;}
    #maincontent .recent-grid-rgt article.hentry .thumbnail{width: 180px; height: auto;}
    #maincontent .recent-grid-rgt article.hentry .thumbnail a{height: auto;}
    #maincontent .recent-grid-rgt article.hentry .thumbnail a img{width: auto; height: auto; max-height: 200px;}
    #maincontent .recent-grid-rgt article.hentry .detail{width: calc(100% - 195px);}
    .recent-grid-rgt .entrymeta{display: block;}
    article.hentry .recent-grid-rgt article.hentry > .entrycontent p{display: block;}
    .recent-grid-rgt article.hentry .detail h3.post-title{font-size: 20px !important; line-height: 28px !important;}
    .home .post-lists .recent-grid-rgt article.post.hentry:last-child{border-bottom: 1px solid #dee2e6; padding-bottom: 25px;}

    .blog-list article.hentry .post-title{font-size: 18px; line-height: 24px;}

    .single #maincontent article.hentry h1.page-title{margin: 0 0 15px 0;}
    .single #maincontent article.hentry .entry-content{margin: 25px 0 0 0;}
    .single #maincontent article.hentry .yarpp-related .thumbnail.thumbnail-placeholder a img{max-width: 200px;}
    .single #sidebar{margin: 35px 0 0 0;}

    .single #maincontent article.hentry .entry-content h2{font-size: 22px;}
    .single #maincontent article.hentry .entry-content h3{font-size: 20px; line-height: 25px; margin: 0 0 10px 0;}
    .single #maincontent article.hentry .entry-content h4{font-size: 19px; line-height: 24px; margin: 0 0 10px 0;}
    .single #maincontent article.hentry .entry-content h5{font-size: 18px;}
    .single #maincontent article.hentry .entry-content h6{font-size: 17px; line-height: 21px;}

    #maincontent .page-user .page-title{margin: 0 0 25px 0 !important;}

    .cms-page{margin: 25px 0 0 0;}

    #maincontent article.hentry .widget.about-profile-widget .detail .widget-title{font-size: 18px;}
    .statistic-widget ul li .inner{padding: 15px;}
    .statistic-widget ul li .inner h4.widget-title{font-size: 18px;}
    .statistic-widget ul li .inner .statistic-number{font-size: 40px; margin: 20px 0 10px;}
    .profile-tabs .warrior-tab-nav ul li a{font-size: 15px;}
    .profile-tabs .warrior-tab-nav{margin: 0 0 25px 0;}

    #maincontent .recent-grid-lft article.hentry .thumbnail.placeholder a{height: 120px;}
    #maincontent .recent-grid-rgt article.hentry .thumbnail.placeholder a{height: 120px;}

    #maincontent .recent-grid-lft article.hentry .thumbnail:not(.placeholder) a{height: auto; background: none;}
    #maincontent .recent-grid-lft article.hentry .thumbnail:not(.placeholder) a img{max-height: 300px;}

    /******* Woocommerce Start ********/
    .purchase-sec{padding: 20px 25px 25px;}
    .purchase-sec h4{font-size: 21px; margin: 0 0 21px 0;}
    #maincontent .woocommerce .button{font-size: 18px;}
    #maincontent .woocommerce .added_to_cart{font-size: 18px;}
    .woocommerce-cart table.cart img{width: 70px;}
    .woocommerce table.shop_table{margin: 0 0 35px 0;}
    .coupon #coupon_code{height: 41px;}
    .woocommerce ul.order_details{margin: 0 0 15px 0;}
    .woocommerce ul.order_details li strong{font-size: 14px;}
    .woocommerce table.my_account_orders{margin: 0 !important;}
    .plan-table table tr td{font-size: 14px;}
    .plan-table table tr td:first-child{width: 170px; font-size: 16px;}

    /******* Woocommerce End ********/
}

@media screen and (max-width: 567px){
    #logo{max-width: 180px;}
    .other-site-wraper ul{margin: 0 -10px;}
    .other-site-wraper ul li{padding: 0 10px;}
    .other-sites h2{font-size: 18px !important; line-height: 25px !important; margin: 0 0 15px 0 !important;}
    ul.trending-tags li.first{font-size: 18px;}
    ul.trending-tags li{margin: 0 5px 5px 0;}
    .other-sites h2 span::before{width: 40px; left: -50px;}
    .other-sites h2 span::after{width: 40px; right: -50px;}
    #maincontent article.hentry .thumbnail{width: 100%; margin: 0 0 15px 0;}
    #maincontent article.hentry .thumbnail a img{max-height: inherit;}
    #maincontent article.hentry .detail{width: 100%;}
    article.hentry .detail h3.post-title{font-size: 18px !important; line-height: 25px !important;}
    .entrymeta span{width: 100%; border-left: none; padding: 0;}
    article.hentry.trending-news h3 a{font-size: 12px;}
    .home_content{margin: 20px 0 0 0;}
    #maincontent article.hentry .entry-content .home_content h1{font-size: 21px; line-height: 30px !important; margin: 0 0 15px 0;}
    #maincontent article.hentry .entry-content .home_content h2{font-size: 19px; line-height: 25px !important; margin: 0 0 10px 0;}
    #maincontent article.hentry .entry-content .home_content h3{font-size: 18px; line-height: 22px !important; margin: 0 0 10px 0;}
    #maincontent article.hentry .entry-content .home_content p{margin: 0 0 10px 0;}
    .ft-top{justify-content: center; padding: 20px 0;}
    #footer-menu{width: 100%; margin: 0 0 9px 0;}
    #footer-menu ul{width: 100%; float: left;}
    #menu-footer-menu li{float: none; display: inline-block; vertical-align: top;}
    .ft-social p{margin: 2px 15px 0 0;}
    .copyright-info{padding: 15px 0;}
    #footer-bottom .copyright-info p{line-height: 18px;}
    .trending-slider .owl-controls{margin: 0 0 0 -10px;}
    .trending-label{font-size: 13px; left: 65px !important;}
    article.hentry.trending-news h3 a{padding: 10px 0 8px;}
    article.hentry.trending-news h3 a::after{width: 21px;}
    article.hentry .post-title .domain{word-break: break-all;}

    .trending-slider{padding-left: 65px;}

    #maincontent .recent-grid-lft article.hentry .thumbnail{width: 100%; margin: 0 0 15px 0;}
    #maincontent .recent-grid-lft article.hentry .thumbnail a img{max-height: inherit;}
    #maincontent .recent-grid-lft article.hentry .detail{width: 100%;}
    #maincontent .recent-grid-rgt article.hentry .thumbnail{width: 100%; margin: 0 0 15px 0;}
    #maincontent .recent-grid-rgt article.hentry .thumbnail a img{max-height: inherit;}
    #maincontent .recent-grid-rgt article.hentry .detail{width: 100%;}
    .recent-grid-rgt article.hentry .detail h3.post-title{font-size: 18px !important; line-height: 25px !important;}

    .blog-list{margin: 0;}
    body.blog .post-lists article.hentry{width: 100%; padding: 0;}
    #maincontent .blog-list article.hentry .thumbnail a{height: auto; text-align: center;}
    #maincontent .blog-list article.hentry .thumbnail a img{width: auto; height: auto; float: none; display: inline-block; vertical-align: top;}
    .blog-list article.hentry .post-title{font-size: 20px; line-height: 26px;}
    #maincontent .blog-list article.hentry .thumbnail.no-thumb a{height: 200px;}

    .single #maincontent article.hentry .entry-content p{font-size: 14px;}
    .yarpp-related{margin: 30px 0 0 0;}
    .yarpp-related ol li{width: 100%; margin: 0 0 25px 0;}
    .yarpp-related ol li:last-child{margin: 0;}
    .single #maincontent article.hentry h1.page-title{font-size: 22px; line-height: 28px;}
    .single #maincontent article.hentry .yarpp-related .thumbnail a{height: auto;}
    .single #maincontent article.hentry .yarpp-related .thumbnail img{width: auto; height: auto;}
    .single #maincontent article.hentry .yarpp-related .thumbnail.thumbnail-placeholder a{height: 200px;}

    .single #maincontent article.hentry .entry-content h2{font-size: 21px;}
    .single #maincontent article.hentry .entry-content .single-txt ul:not(.social-share) li{font-size: 14px;}
    .single #maincontent article.hentry .entry-content .single-txt ol:not(.related-list) li{font-size: 14px;}

    #maincontent .page-user .page-title{margin: 0 0 20px 0 !important;}
    #maincontent .page-user article p{font-size: 14px;}
    form#submit-topic{margin: 20px 0 0 0 !important;}
    .input-wrapper{margin: 0 0 25px 0;}
    .input-wrapper input{height: 45px; font-size: 14px;}
    .input-wrapper select{height: 45px; font-size: 14px;}
    .input-wrapper textarea{height: 150px; font-size: 14px;}
    .g-recaptcha{margin: 0 0 25px 0 !important;}
    form .btn{width: 100%; height: 45px; font-size: 18px !important;}

    #loginform p.login-submit .button{width: 100%; font-size: 18px !important;}
    #loginform p input:not(.button){font-size: 14px;}

    .wpcf7{margin: 0 0 15px 0;}
    .cms-page .wpcf7 p{margin: 0 0 25px 0; position: relative;}
    article.hentry > .entrycontent .cms-page .wpcf7 p{margin: 0 0 25px 0;}
    .wpcf7-form-control-wrap .wpcf7-form-control{height: 45px; font-size: 14px;}
    .wpcf7 p input[type="submit"]{min-width: 100%; height: 45px; font-size: 18px !important;}
    .wpcf7 .wpcf7-spinner{position: absolute; top: 50%; left: 50%; margin: 0; transform: translate(-50%,-50%);}
    article.hentry > .entrycontent p{font-size: 14px;}
    .cms-page ul li{font-size: 14px;}

    #maincontent article.hentry .widget.about-profile-widget .detail{padding: 0 0 0 15px;}
    #maincontent article.hentry .widget.about-profile-widget .thumbnail{width: 70px; height: 70px;}
    #maincontent article.hentry .widget.about-profile-widget .detail{width: calc(100% - 70px);}
    .entry-content .statistic-widget ul{width: 100%; flex-wrap: wrap; margin: 0;}
    .entry-content .statistic-widget ul li{width: 100%; padding: 0;}
    .entry-content .statistic-widget ul li + li{margin: 20px 0 0 0 !important;}
    .statistic-widget ul li .inner{padding: 20px;}
    .statistic-widget ul li .inner h4.widget-title{font-size: 20px;}
    .statistic-widget ul li .inner .statistic-number{margin: 25px 0 10px;}
    .profile-tabs .warrior-tab-nav ul li + li{margin: 0 0 0 20px;}
    .alert{padding: 5px 10px;}

    body .thank-you-msg{font-size: 15px !important; padding: 7px 10px;}
    body .thank-you-msg + .other-sites{margin: 30px 0 0 0;}

    body.archive .post-lists h4.widget-title{font-size: 20px;}

    .popup-content .alert{font-size: 13px;}

    .wpcf7 .wpcf7-form-control-wrap.recaptcha{margin: 0 0 15px 0;}

    #maincontent .recent-grid-lft article.hentry .thumbnail.placeholder a{height: 200px;}
    #maincontent .recent-grid-rgt article.hentry .thumbnail.placeholder a{height: 200px;}
    #maincontent article.hentry .thumbnail.placeholder a{height: 200px;}
    #maincontent article.hentry .thumbnail.placeholder a img{max-width: 80%;}

    #trending-tags{padding: 30px 0 25px;}
    .other-sites{margin: 0 0 5px 0;}

    #maincontent .recent-grid-lft article.hentry .thumbnail:not(.placeholder) a img{max-height: inherit;}

    ul.country_list{column-count: 2; margin: 15px 0 0 0;}

    /******* Woocommerce Start ********/
    .purchase-sec{padding: 15px 20px 20px; margin: 20px 0 30px;}
    #maincontent .woocommerce .button{width: 55%;}
    #maincontent .woocommerce .added_to_cart{width: 55%; margin: 10px 0 0 0;}
    .return-to-shop{text-align: center;}
    .coupon #coupon_code{width: calc(100% - 150px) !important;}
    .coupon .button{width: 140px !important;}
    #maincontent .woocommerce .checkout-button.button{width: 100%; padding: 13px 20px 15px;}
    #maincontent article.hentry .entry-content .cart_totals h2{font-size: 21px; line-height: 1;}
    .woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before{left: 10px;}
    .woocommerce-error, .woocommerce-info, .woocommerce-message{font-size: 13px; padding: 10px 10px 10px 35px;}
    .woocommerce ul.order_details{margin: 0 0 10px 0;}
    .woocommerce ul.order_details li{width: 100%; padding: 0; margin: 0 0 15px 0;}
    .woocommerce table.my_account_orders{font-size: 14px;}
    .woocommerce table.shop_table td{padding: 10px;}
    #maincontent .woocommerce table.my_account_orders .button{width: auto;}
    #maincontent .woocommerce table.my_account_orders .button{padding: 5px 10px 8px;}
    .woocommerce table.shop_table th{padding: 10px;}
    .woocommerce table.shop_table.woocommerce-table--order-details{font-size: 14px;}
    .plan-table table{margin: 0 0 5px 0;}
    .plan-table table tr td:first-child{width: 120px; font-size: 15px;}
    /******* Woocommerce End ********/
}

@media screen and (max-width: 413px){
    .menu-btn{width: 22px; height: 22px; margin: 0 10px 0 0 !important;}
    #logo{max-width: 130px;}
    #main-header nav#user-menu ul li.login a{font-size: 14px !important;}
    .search-form-trigger{width: 16px; height: 16px; margin: 0 0 0 10px;}
    .trending-slider{padding-left: 65px;}
    .other-sites h2 span::before{width: 25px; left: -30px;}
    .other-sites h2 span::after{width: 25px; right: -30px;}
    .other-site-wraper ul{margin: 0;}
    .other-site-wraper ul li{width: 100%; padding: 0; margin: 0 0 15px 0;}
    .other-site-wraper ul li:last-child{margin: 0;}
    .other-site-wraper ul li a{justify-content: center;}
    .other-site-wraper ul li a img{max-width: 160px;}
    .other-site-wraper ul li::before{display: none;}
    .other-sites{margin: 0 0 5px 0;}
    #trending-tags{padding: 30px 0 20px;}
    article.hentry .detail h3.post-title{font-size: 16px !important; line-height: 24px !important;}
    article.hentry > .entrycontent p{font-size: 13px; line-height: 22px;}
    .entrymeta span{font-size: 12px;}
    .rankpoint .points .vote-count .count{font-size: 20px;}
    .rankpoint .points .vote-count{font-size: 14px;}
    .pagination{margin: 15px 0 0 0;}
    .home_content{margin: 15px 0 0 0;}
    #maincontent article.hentry .entry-content .home_content h1{font-size: 18px; line-height: 28px !important;}
    #maincontent article.hentry .entry-content .home_content h2{font-size: 17px; line-height: 24px !important;}
    #maincontent article.hentry .entry-content .home_content h3{font-size: 16px;}
    #maincontent article.hentry .entry-content .home_content h3 strong{font-weight: 500;}
    #maincontent article.hentry .entry-content .home_content p{font-size: 13px; line-height: 22px;}
    #sidebar .widget ul p{font-size: 13px;}

    .recent-grid-rgt article.hentry .detail h3.post-title{font-size: 16px !important; line-height: 24px !important;}

    .blog-list article.hentry .post-title{font-size: 18px; line-height: 24px;}
    article.hentry.blog .entry-content p{font-size: 14px;}
    article.hentry.blog .detail .read-more{background-size: 16px auto; font-size: 16px;}
    .blog-div + .pagination{margin: 5px 0 0 0;}
    #sidebar{margin: 20px 0 0 0;}

    .single #maincontent article.hentry h1.page-title{font-size: 20px; line-height: 26px; margin: 0 0 10px 0;}
    .single #maincontent article.hentry .rankpoint{margin: 10px 0 0 0;}
    .single #maincontent article.hentry .entry-content{margin: 15px 0 0 0;}
    .single #maincontent article.hentry .social-share-widget{margin: 10px 0 25px;}
    a.report-story{font-size: 12px;}
    .yarpp-related{margin: 25px 0 0 0;}
    .yarpp-related .widget-title{font-size: 18px; margin: 0 0 20px 0;}
    #maincontent article.hentry .entry-content .yarpp-related ol li h6{font-size: 15px; line-height: 22px;}
    .single #sidebar{margin: 30px 0 0 0;}

    .single #maincontent article.hentry .entry-content h2{font-size: 20px; font-weight: 500; line-height: 26px;}
    .single #maincontent article.hentry .entry-content h3{font-size: 19px;}
    .single #maincontent article.hentry .entry-content h4{font-size: 18px;}
    .single #maincontent article.hentry .entry-content h5{font-size: 17px; line-height: 21px;}
    .single #maincontent article.hentry .entry-content h6{font-size: 16px; line-height: 20px;}

    #maincontent .page-user .page-title{font-size: 24px !important;}
    .g-recaptcha{transform: scale(0.95); transform-origin: top left; margin: 0 0 20px 0 !important;}

    .popup-content .warrior-header{margin: 0 0 25px 0;}
    .popup-content h4.widget-title{font-size: 18px; margin: 0 0 15px 0;}
    #loginform p input:not(.button){height: 40px;}
    #loginform p.login-submit .button{height: 40px;}
    .popup-content form .btn{height: 40px;}

    .cms-page{margin: 20px 0 0 0;}

    .widget.about-profile-widget{margin: 20px 0 30px;}
    #maincontent article.hentry .widget.about-profile-widget .thumbnail{width: 60px; height: 60px;}
    #maincontent article.hentry .widget.about-profile-widget .detail{width: calc(100% - 60px); padding: 0 0 0 10px;}
    #maincontent article.hentry .widget.about-profile-widget .detail .widget-title{font-size: 17px;}
    .statistic-widget{margin: 0 0 30px 0;}
    .profile-tabs .warrior-tab-nav ul li + li{margin: 0 0 0 15px;}
    .profile-tabs .warrior-tab-nav ul li a{font-size: 13px;}
    .alert{font-size: 13px;}

    body .thank-you-msg{font-size: 14px !important;}

    .current-avatar{width: 70px; height: 70px;}

    #maincontent .page-user article.story p{font-size: 13px; line-height: 22px;}

    body.archive .post-lists h4.widget-title{font-size: 18px;}

    header.section-title{margin: 0;}

    #maincontent .recent-grid-lft article.hentry .thumbnail.placeholder a{height: 150px;}
    #maincontent .recent-grid-rgt article.hentry .thumbnail.placeholder a{height: 150px;}
    #maincontent article.hentry .thumbnail.placeholder a{height: 150px;}

    ul.country_list{column-count: 1; margin: 15px 0 0 0;}

    /******* Woocommerce Start ********/
    .purchase-sec{padding: 10px 15px 15px; margin: 15px 0 25px;}
    .purchase-sec h4{font-size: 18px; line-height: 24px; margin: 0 0 15px 0;}
    #maincontent .woocommerce .button{width: 100%;}
    #maincontent .woocommerce .added_to_cart{width: 100%;}
    .coupon #coupon_code{width: 100% !important; margin: 0 0 10px 0;}
    .coupon .button{width: 100% !important;}
    article.hentry .entry-content #customer_details h3{font-size: 18px;}
    #maincontent article.hentry .entry-content .woocommerce-order-details__title, 
    #maincontent article.hentry .entry-content .woocommerce-column__title{font-size: 18px;}
    .woocommerce-checkout .input-text{height: 35px;}
    .woocommerce-checkout .select2-container .select2-selection--single{height: 35px;}
    .woocommerce-checkout .select2-selection__rendered{line-height: 35px !important;}
    .woocommerce table.shop_table td{font-size: 14px; padding: 10px;}
    .woocommerce-customer-details address{font-size: 13px;}
    .plan-icon{width: 70px; height: 70px; top: -35px;}
    .plan-icon img{max-width: 35px;}
    .plan-list li{padding: 60px 0;}
    .plan-list li p{font-size: 15px; padding: 10px 0;}
    .plan-table table tr td{font-size: 13px; padding: 8px;}
    .plan-table table tr td:first-child{width: 100px; font-size: 14px;}
    /******* Woocommerce End ********/
}
