/*!
 * This is theme-style.css file
 */
/*--------------------------------------------------------------
 >>> Table Of Contents
 ----------------------------------------------------------------
 1.0 Variables
 2.0 Normalize
 3.0 Header Area
 4.0 Elements
 5.0 Forms
 6.0 Navigation
 6.1 Links
 6.2 Menus
 7.0 Accessibility
 8.0 Alignments
 9.0 Clearings
 10.0 Widgets
 11.0 Content
 11.1 Posts and pages
 11.2 Comments
 12.0 Infinite scroll
 13.0 Media
 13.1 Captions
 13.2 Galleries
 14.0 Footer
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
 1.0 Variables
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
 2.0 Normalize
 --------------------------------------------------------------*/
html {
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; }

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: 'Raleway', sans-serif; }

img {
  max-width: 100%;
  height: auto; }

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.2em 0; }

p {
  line-height: 1.7; }

ul li,
ol li {
  margin: 5px 0; }   

a {
  text-decoration: none; }

li a, p a {
  color: #f00;
  border-bottom: 1px solid transparent;
  -webkit-transition: color, border-color 0.2s linear;
  -o-transition: color, border-color 0.2s linear;
  transition: color, border-color 0.2s linear; }

a{
  color: #f00;
  transition: 0.3s; }

a:hover, a:focus {
  text-decoration: none;
  color: #000; }

input, textarea {
    border: 1px solid #ddd;}

input.search-field {
  border: 1px solid #ddd;
  padding: 2px 10px;}

input.search-field:focus {
  outline: none;}

img.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.aligncenter{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
 
img.alignright {
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
}
 
img.alignleft {
    padding: 4px;
    margin: 0 7px 2px 0;
    display: inline;
}
 
.alignright {
    float: right;
}
 
.alignleft {
    float: left;
}

blockquote{
  width: 80%;
  margin: 15px auto;
  font-family: Open Sans;
  font-style: italic;
  color: #555555;
  padding: 1.2em 30px 0.5em 45px;	
  box-sizing: border-box;
  border-left: 5px solid #ff0000;
  line-height: 1.6;
  position: relative;
  background: #EDEDED;
}

blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#78C0A8;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

blockquote::after{
  content: '';
}

.section-padding {
    padding: 50px 0;
}

.comment-link {
    visibility: hidden;
	display: none;
}
#comments.shown {
    right: -9925px;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin: auto -6px  6px;
  padding: 6px 0;
  line-height: 1;
  overflow-x: hidden;
}

.gallery-item {
  display: inline-block;
  margin: 0;
  text-align: center;
  padding: 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.gallery-item img {
    border-radius: 5px;
}

.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;
}

.site {
  position: relative; }

.skip-link.screen-reader-text {
  display: none; }


/*--------------------------------------------------------------
2.3 Table Css
--------------------------------------------------------------*/

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;	
	box-sizing: border-box;
}

th, td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}


/*--------------------------------------------------------------
 3.0 Header Area
 --------------------------------------------------------------*/
#masthead {
  position: fixed;
  z-index: 2;
  width: 210px;
  padding: 30px 20px 0 30px;
  left: 0;
  top: 0;
  height: 100%;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*overflow-y: scroll;*/ }

.logged-in #masthead {
  padding: 62px 20px 0 30px; }

#masthead #primary-menu, #masthead #trending-topics-menu {
  color: #777;
  padding: 0px; }
/* Logo */
.site-branding {
  padding-bottom: 15px; }
/* Main Mavigation */
.main-navigation li {
  display: block;
  position: relative; }

.main-navigation a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  padding: 5px 0; }

.main-navigation a:hover, .main-navigation a:focus {
  color: #f00; }
/*--------------------------------------------------------------
 # LeftWidgetArea
 --------------------------------------------------------------*/
/* Search widget */
.widget_search .search-form {
  position: relative;
  width: 70%; }

.widget_search label .screen-reader-text {
  display: none; }

.widget_search .search-form label {
  max-width: 100%; }

.widget_search input, .widget_search input[type="submit"] {
  outline: none; }

.widget_search label input {
  border-radius: 14px;
  border: 1px solid #ddd;
  padding: 5px 12px;
  max-width: 100%;
  font-size: 12px; }

.widget_search input[type="submit"] {
  position: absolute;
  top: 2px;
  right: 0;
  color: transparent;
  border-color: transparent;
  padding: 3px;
  box-sizing: border-box;
  background-color: transparent;
  background-image: url('../images/search-icon.jpg');
  background-repeat: no-repeat;
  background-position: 0px 4px;
  width: 25px; }
/* List Widget */
.widget_nav_menu ul {
  list-style: none;
  font-size: 14px;
  padding-left: 0; }

.widget_nav_menu ul li a {
  padding: 3px 0;
  display: block;
  text-decoration: none;
  color: #f00;
  font-weight: 700; }

.widget_nav_menu ul#menu-login-signup li {
  display: inline-block;
  position: relative;
  padding: 0 4px 0 0; }

.widget_nav_menu ul#menu-login-signup li:first-child:after {
  position: absolute;
  content: "/";
  right: -4px;
  top: 0;
  font-weight: 700;
  color: #f00; }

.widget_nav_menu ul#menu-login-signup li a {
  color: #000;
  padding: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.widget_nav_menu ul#menu-login-signup li a:hover, .widget_nav_menu ul#menu-login-signup li a:focus {
  color: #f00; }
/*--------------------------------------------------------------
 # TopWidgetArea
 --------------------------------------------------------------*/
#TopWidgetArea {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 210px);
  max-height: 280px;
  overflow: hidden;
  margin-left: 210px;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  padding: 5px 15px 5px 0px;
  border-bottom: 2px solid #eee; }

.logged-in #TopWidgetArea {
  top: 32px; }

#TopWidgetArea section:first-child {
  text-align: center; }
/*--------------------------------------------------------------
 # Content Area
 --------------------------------------------------------------*/
#content {
  width: auto;
  padding-top: 143px;
  margin-left: 195px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }

#content #primary {
  width: calc(100% - 330px);
  padding: 30px 15px 30px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

#content #secondary {
  width: 330px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  position: relative; }
/*--------------------------------------------------------------
 # Secondary Sidebar
 --------------------------------------------------------------*/
.right-sidebar .widget {
  margin-top: 10px; }
.widget-area .widget-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: normal;
    margin: 0.2em 0;
}
/*--------------------------------------------------------------
 # Featured Posts Section
 --------------------------------------------------------------*/
.featured-posts {
  clear: both;
  overflow: hidden; }

.single_featured_post.first {
  float: left;
  margin-right: 30px;
  margin-bottom: 0;
  width: 62%;
  border-bottom: none; }

.single_featured_post.first.one {
    width: 100%;
    margin-right: 0;}

.single_featured_post {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  float: right;
  width: calc(38% - 30px);
  margin-bottom: 15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1; }

.single_featured_post:last-of-type {
  border-bottom: none; }

.single_featured_post.first .post-title {
  font-size: 2.25rem;
  font-weight: 700; }

.single_featured_post:hover {
  opacity: 0.85; }

.featured-posts .post-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.11;
  margin: 0 0 18px; }

.featured-posts .post-title a {
  color: #000; }
.featured-posts .post-title a:hover {
  color: #f00; }

.single_featured_post .author a {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: none;
  margin: 5px 0;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.1; }

.single_featured_post .author a:hover, .single_featured_post .author a:focus {
  color: #f00; }

.single_featured_post .article_featured_img, .single_featured_post .article_featured_video {
  padding: 15px 0; }

.single_featured_post .article_featured_img a img {
  width: 100%;
  height: auto; }

.single_featured_post .article_featured_video iframe {
  width: 100%; }
/*--------------------------------------------------------------
 # Latest Posts Section
 --------------------------------------------------------------*/
.latest-posts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }

.latest-posts {
  width: 70%; }

.single_latest_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-bottom: 10px; }

.single_latest_post .latest_img {
  width: 45%;
  display: inline-block; }

.single_latest_post .latest_img img {
  width: 100%; }

.single_latest_post .latest_post_desc {
  width: 55%;
  padding: 0 0 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.single_latest_post .post-title {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin: 0.2em 0; }

.single_latest_post a {
  color: #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.single_latest_post .post-meta, .shopping-posts .single-shopping-post .post-meta {
  font-size: 12px;
  font-weight: 500; }

.single_latest_post .post-meta span, .shopping-posts .single-shopping-post .post-meta span {
  padding-right: 5px; }

.single_latest_post .post-meta span:last-of-type, .shopping-posts .single-shopping-post .post-meta span:last-of-type {
  border-right: none; }

.single_latest_post .post-meta a, .shopping-posts .single-shopping-post .post-meta a {
  color: #f00; }

.single_latest_post .post-meta .author a, .shopping-posts .single-shopping-post .post-meta a {
  text-transform: capitalize;
  color: #f00; }

.single_latest_post .post-meta .author a:hover, .single_latest_post .post-meta .author a:focus, .shopping-posts .single-shopping-post .post-meta .author a:hover, .shopping-posts .single-shopping-post .post-meta .author a:focus {
  color: #000; }
.single_latest_post a:hover, .single_latest_post a:focus{
  color: #f00;
}

.excerpt-limited {
    margin-top: 5px;}
/*--------------------------------------------------------------
 # Featured Video Section
 --------------------------------------------------------------*/
.ch_videos-wrap {
  width: calc(30% - 15px); }

.video-section-title {
  color: #c1447b;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  text-align: center;
  font-family: inherit;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0.2em 0;}

.ch_video {
  border-top: 2px solid #888;
  padding: 10px 10px 0 0;
  border-right: 2px solid #888;
  position: relative; }

.video-section-title:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 22px;
  left: 5px;
  background: #888;
  bottom: -6px;
  -webkit-transform: rotate(-25deg);
      -ms-transform: rotate(-25deg);
          transform: rotate(-25deg); }

.ch_video:after {
  position: absolute;
  content: "";
  background: #fff;
  height: 2px;
  width: 10px;
  left: 0;
  top: -2px; }

.single_featured_video {
  margin-bottom: 15px; }

.featured_video iframe {
  width: 100% !important;
  max-height: 150px !important; }

.featured_video .fluid-width-video-wrapper iframe {
    width: 100% !important;
    max-height: none !important;
}
.ch_video .video-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.2em 0; }

.featured_video a p {
  margin: 0; }

.ch_video .video-title a {
  color: #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.ch_video .video-title a:hover, .ch_video .video-title a:focus {
  color: #f00; }
/*--------------------------------------------------------------
 # Shopping Posts
 --------------------------------------------------------------*/
.shopping-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0; }

.shopping-posts .single-shopping-post {
  width: calc(33.333333% - 8px);
  margin-bottom: 15px;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.shopping-posts .single-shopping-post:hover {
  opacity: 0.85; }

.shopping-posts .single-shopping-post img, .shopping-posts .single-shopping-post iframe {
  width: 100%; }

.shopping-posts .single-shopping-post .shopping-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.2em 0; }

.shopping-posts .single-shopping-post .shopping-title a {
  color: #333; }

.shopping-posts .single-shopping-post .shopping-title a:hover, .shopping-posts .single-shopping-post .shopping-title a:focus {
  color: #f00; }
/*--------------------------------------------------------------
 # BannerAdArea2 Ads
 --------------------------------------------------------------*/
#BannerAdArea2 {
  text-align: center;
  margin: 15px 0; }
/*--------------------------------------------------------------
 # Reviews-Wrap
 --------------------------------------------------------------*/
.reviews-wrap {
  border-top: 2px solid #eee;
  padding: 15px 0;
  margin-top: 15px; }

.reviews-wrap .review-section-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.2em 0; }

.reviews-wrap .reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }

.reviews-wrap .reviews .single-review {
  width: calc( 50% - 4px );
  border: 3px solid #2f2f2f;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
  margin: 2px;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.reviews-wrap .reviews .single-review:hover, 
.reviews-wrap .reviews .single-review:focus {
  opacity: 0.85; }

.reviews-wrap .reviews .single-review .product-image-review a {
  overflow: hidden; }

.reviews-wrap .reviews .single-review .rating {
  position: absolute;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: #c04779;
  color: #fff;
  font-weight: 700; }

.reviews-wrap .reviews .single-review .product-image-review {
  width: 35%; }

.reviews-wrap .reviews .single-review .review-title {
  width: 65%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: normal;
  margin: 0.2em 0; }

.reviews-wrap .reviews .single-review .review-title a {
  color: #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.reviews-wrap .reviews .single-review .review-title a:hover, .reviews-wrap .reviews .single-review .review-title a:focus {
  color: #f00; }
/*--------------------------------------------------------------
 # Articles Wrap
 --------------------------------------------------------------*/
.articles-wrap {
  margin-top: 15px; }

.articles {
  border-top: 2px solid #eee; }

.articles .single-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
  padding-top: 15px;
  /*cursor: pointer; */
}

.articles .single-article:last-of-type {
  margin-bottom: 0; }

.articles .single-article .article_desc {
  width: 28%; }

.articles .single-article .article_desc .post-title {
  	font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin: 0.2em 0; }

.articles .single-article .article_desc .post-title a {
  color: #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.articles .single-article .article_desc .post-title a:hover, 
.articles .single-article .article_desc .post-title a:focus {
  color: #f00; }

.articles .single-article:hover, .articles .single-article:focus {
  opacity: 0.85; }

.articles .single-article .post-meta {
  font-size: 14px; }

.articles .single-article .post-meta .author a {
  color: #ff0000;
  font-weight: 700;
  text-transform: capitalize;
  transition: 0.3s; }

.articles .single-article .post-meta .author a:hover {
  color: #000; }

.articles .single-article .article-content {
  width: 35%;
  font-size: 14px; }

.articles .single-article .article-content p {
  margin: 0; }

.articles .single-article .article_featured_img, .articles .single-article .article_featured_video {
  width: 31%; }

.articles .single-article .article_featured_img img, .articles .single-article .article_featured_video iframe {
  width: 100%; }


.see-more-wrapper {
    text-align: center;
    border: none;
}
.see-more-wrapper .see-more {
    font-family: inherit;
    text-decoration: none!important;
    margin: 7.5px auto;
    color: #fff!important;
    background-color: #d9534f!important;
    border-color: #b52b27;
    display: inline-block;
    padding: 8px 16px;
    font-weight: 400;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: 0 0;
    text-shadow: none;
    filter: none;
    height: auto;
    width: auto;
}

.see-more-wrapper .see-more:hover, .see-more-wrapper .see-more:focus {
    color: #fff!important;
    background-color: #b52b27!important;
    border-color: #761c19;
}

.see-more-wrapper .see-more {
    font-family: inherit;
    text-decoration: none!important;
    margin: 7.5px auto;
    color: #fff!important;
    background-color: #d9534f!important;
    border-color: #b52b27;
    display: inline-block;
    padding: 8px 16px;
    font-weight: 400;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: 0 0;
    text-shadow: none;
    filter: none;
    height: auto;
    width: auto;
}

.see-more-wrapper .see-more:hover, .see-more-wrapper .see-more:focus {
    color: #fff!important;
    background-color: #b52b27!important;
    border-color: #761c19;
}


.articles .loadmore {
  width: 100%;
  padding: 18px 0;
  font-size: 23px;
  font-weight: 700;
  color: #f00;
  border-color: transparent;
  background: #f1f1f1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-transform: capitalize; }

.articles .loadmore {
  text-align: center;
  z-index: 5;
}
.articles .loadmore .dot {
    display: inline-block;
    margin-left: 0.2em;
    margin-right: 0.2em;
    position: relative;
    top: 0;
    opacity: 0;
    -webkit-animation: showHideDot 2.5s ease-in-out infinite;
    animation: showHideDot 2.5s ease-in-out infinite;
}
.articles .loadmore .dot.one {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.articles .loadmore .dot.two {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.articles .loadmore .dot.three {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.articles .loadmore:hover, .articles .loadmore:focus {
  background: #e8e8e8;
  border-color: transparent;
  outline: none; }
/*--------------------------------------------------------------
 # Archive Video Page
 --------------------------------------------------------------*/
#videos-container.articles .single-article .article-content {
  width: 100%;
  margin: 15px 0; }

#videos-container.articles .single-article .article_featured_img, #videos-container.articles .single-article .article_featured_video {
  width: 69%; }

#videos-container.articles .single-article .article_featured_img img, #videos-container.articles .single-article .article_featured_video iframe {
  width: 100%; }
/*--------------------------------------------------------------
 # Sticky Ads
 --------------------------------------------------------------*/
 aside#secondary section:last-child{
  position: static;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }
aside#secondary section:last-child.sticky-ad1 {
  position: fixed;
  right: 15px;
  bottom: -11px;
  max-width: 300px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }

aside#secondary section:last-child.sticky-ad1.absolute {
  position: absolute;
  bottom: 15px; }
/*--------------------------------------------------------------
 # Footer Section
 --------------------------------------------------------------*/
footer#colophon {
  padding: 30px 15px 30px 210px;
  background: #f1f1f2;
  color: #777;
  font-size: 14px; }

footer#colophon a {
  color: #777; }

footer#colophon a:hover, footer#colophon a:focus {
  text-decoration: underline; }
/*****************************************
 # Footer Menu
 ******************************************/
.footer-menu #footer-menu {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0; }

.footer-menu #footer-menu li {
  width: auto; }

.footer-menu #footer-menu li a {
  display: block;
  padding: 2px 5px;
  color: #333;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.footer-menu #footer-menu li:first-child a {
  padding-left: 0; }

.footer-menu #footer-menu li a:hover, .footer-menu #footer-menu li a:focus {
  color: #1bb36a; }
/*****************************************
 # Social Links
 ******************************************/
.social-links ul {
  list-style: none;
  padding: 0;
  margin: 9px 35px 8px -35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.social-links ul li {
  width: auto; }

.social-links ul li a {
  display: block;
  padding: 0 8px;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid transparent; }

.social-links ul li a:hover, .social-links ul li a:focus {
  opacity: 0.85;
  border: 1px solid #ddd; }

.social-links ul li a i {
  font-size: 20px;
  color: #c8252a; }
/*****************************************
 # Scrolltotop CSS
 ******************************************/
.scrolltotop {
  position: fixed;
  content: "";
  height: 40px;
  width: 40px;
  bottom: 37px;
  text-align: center;
  right: 15px;
  display: none;
  border: none;
  font-size: 23px;
  background: #045dd5;
  padding: 2px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: 1s;
  -o-transition: 1s;
  overflow: hidden;
  z-index: 9;
  transition: 1s; }

.scrolltotop i {
  color: #fff; }

.scrolltotop:hover {
  bottom: 40px; }

.pagination-wrapper {
    margin: 15px 0;
    font-weight: 500;
}
/*****************************************
 # Archive Page
 ******************************************/
.page-header .page-title {
  font-size: 84px;
  font-size: 4.25rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: -10px;
  line-height: 1.2; }

.archive-description {
  font-size: 1.125rem;
  line-height: 1.8; }
/*if video custom post*/
.archive-page .articles .single-article .article-content p iframe {
  width: 548px;
  height: 284px; }

  




/*****************************************
 # Single Post/Page
 ******************************************/
article.type-post, article.type-video, article.type-recensioni, article.type-offerta {
  padding: 0 10% 30px; }

article.type-post .featured_img, article.type-post .article_featured_img, article.type-video .article_featured_img, article.type-recensioni .article_featured_img, article.type-offerta .article_featured_img, article.type-post .article_featured_video, article.type-video .article_featured_video, article.type-recensioni .article_featured_video, article.type-offerta .article_featured_video {
  margin: 15px -10%; }

article.type-post .featured_img img, article.type-post .article_featured_img img, article.type-video .article_featured_img img, article.type-recensioni .article_featured_img img, article.type-offerta .article_featured_img img {
  width: 100%;
  height: auto; }

article.type-post .article_featured_video iframe, article.type-video .article_featured_video iframe, article.type-recensioni .article_featured_video iframe, article.type-offerta .article_featured_video iframe {
  width: 100%; }

article.type-post .entry-meta, article.type-video .entry-meta, article.type-recensioni .entry-meta, article.type-offerta .entry-meta {
  font-size: 14px;
  float: left; }

article.type-post .entry-meta .author a, article.type-video .entry-meta .author a, article.type-recensioni .entry-meta .author a, article.type-offerta .entry-meta .author a {
  color: #ff0000;
  font-weight: 700;
  text-transform: capitalize;
  transition: 0.3s; }


article.type-post .entry-meta .author a:hover, article.type-video .entry-meta .author a:hover, article.type-recensioni .entry-meta .author a:hover, article.type-offerta .entry-meta .author a:hover {
  color: #ff0000;
  font-weight: 700; }

article.type-post .entry-meta span, article.type-video .entry-meta span, article.type-recensioni .entry-meta span, article.type-offerta .entry-meta span {
  margin-right: 7px; }

span.post-date {
    white-space: nowrap;
	display: none;
}

article.type-post .comment-link, article.type-video .comment-link, article.type-recensioni .comment-link, article.type-offerta .comment-link {
  font-size: 14px;
  float: right;
  color: #f00;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer; }

article.type-post .comment-link svg path, article.type-video .comment-link svg path, article.type-recensioni .comment-link svg path, article.type-offerta .comment-link svg path {
  fill: #f00; }

article.type-post .entry-header .entry-title, article.type-page .entry-header .entry-title, article.type-video .entry-header .entry-title, article.type-recensioni .entry-header .entry-title, article.type-offerta .entry-header .entry-title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  width: 100%;
  color: #000;
  margin: 0 0 15px; }

article.type-post header.entry-header, article.type-video header.entry-header, article.type-recensioni header.entry-header, article.type-offerta header.entry-header {
  overflow: hidden;}

article.type-post header.entry-header > div, article.type-video header.entry-header > div, article.type-recensioni header.entry-header > div, article.type-offerta header.entry-header > div {
  margin-bottom: 15px;
  overflow: hidden; }

article.type-post footer.entry-footer > span, article.type-video footer.entry-footer > span, article.type-recensioni footer.entry-footer > span, article.type-offerta footer.entry-footer > span {
  margin-right: 8px; }

.entry-tags {
    max-width: 100%;
    margin: 25px 10% 10px;}

.entry-tags b {
    font-size: 20px;
    display: block;
    margin: 0 0 10px;}

.entry-tags a {
    color: #ff0000;
    text-transform: capitalize;
    display: inline-block;
    width: max-content;
    margin: 5px 0px;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 700;
    width: 49%;}


.entry-tags a:hover,.entry-tags a:focus {
    text-decoration: underline;}
/*********************************
 comment section
 *********************************/
.logged-in #comments {
  top: 32px; }

#comments {
  position: fixed;
  top: 0;
  right: -450px;
  z-index: 11;
  background: #fff;
  border-left: 1px solid #ddd;
  width: 450px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  overflow-x: scroll;
  height: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  max-width: 80%; }

#comments.shown {
  right: 0; }

.close-comments svg.icon.icon--carat-right.icon--green-gradient {
  width: 22px;
  height: 22px; }

.block-comment .comment-link {
  text-align: center; }

.block-comment .comment-link .comment-count a {
  color: #f00;
  font-weight: 700;
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #f00;
  white-space: nowrap; }

#comments .close-comments {
  width: 22px;
  float: left;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 99999; }

#comments .comments-title {
  width: calc(100% - 25px);
  float: right;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  padding-right: 25px;
  display: block; }

#comments .cline {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  clear: both;
  margin: 0 -15px 15px;
  padding-bottom: 12px; }

#comments .comment-list {
  list-style: none;
  padding-left: 0;
  font-size: 14px; }

#comments .comment-list li {
  padding-bottom: 10px;
  padding-top: 10px; }

#comments .comment-body .comment-author.vcard img {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-right: 15px; }

#comments .comment-body .comment-author.vcard span.says {
  display: none; }

#comments .comment-body .comment-author.vcard {
  margin-bottom: 10px;
  font-size: 14px; }

#comments .comment-body .comment-meta .comment-metadata {
  font-size: 14px;
  position: absolute;
  left: 70px;
  top: 35px; }

#comments .comment-body .comment-meta {
  position: relative; }

#comments .comment-list {
  list-style: none;
  padding-left: 0;
  font-size: 14px; }

#comments .comment-list li {
  padding-bottom: 0px;
  padding-top: 0px; }

#comments .comment-body .comment-author.vcard img {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-right: 15px; }

#comments .comment-body .comment-author.vcard span.says {
  display: none; }

#comments .comment-body .comment-author.vcard {
  margin-bottom: 10px;
  font-size: 14px; }

#comments .comment-body .comment-meta .comment-metadata {
  font-size: 14px;
  position: absolute; }

#comments .comment-body .comment-meta {
  position: relative; }

#comments #respond {
  font-size: 14px; }

#comments #respond #reply-title {
  font-size: 24px; }

#comments #respond .comment-form-comment label[for="comment"] {
  display: block;
  font-weight: 500; }

#comments #respond .comment-form-comment textarea#comment {
  width: 100%;
  height: 111px; }

#comments #respond .form-submit input[type="submit"] {
  display: inline-block;
  padding: 4px 15px;
  border: 1px solid #f00;
  background: #f00;
  color: #fff;
  font-weight: 700;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

#comments #respond .form-submit input[type="submit"]:hover, #comments #respond .form-submit input[type="submit"]:focus {
  color: #f00;
  background: #fff;
  border-color: #f00; }
/*if not logged*/
#comments #respond.comment-respond #commentform .comment-notes {
  display: none; }

#comments #respond.comment-respond #commentform .comment-form-author label, #comments #respond.comment-respond #commentform .comment-form-email label, #comments #respond.comment-respond #commentform .comment-form-url label {
  width: 70px;
  display: block; }

#comments #respond.comment-respond #commentform input{
  max-width: 100%; }
/*comment-reply*/
#comments #respond.comment-respond #reply-title {
  font-size: 18px;
  font-weight: 700; }

#comments #respond.comment-respond #reply-title small {
  float: right;
  font-size: 65%; }

#comments #respond.comment-respond #commentform .logged-in-as {
  margin: 0 0 5px; }

#comments ol.children {
  list-style: none; }


#comments li.even > article.comment-body {
    /*background: #ddd;*/
    padding: 9px;
    margin:10px 0;
    border: 1px solid #ddd;
}

#comments li.odd > article.comment-body {
    /*background: #eee;*/
    padding: 9px;
    margin:10px 0;
    border: 1px solid #ddd;
}

img#siwp_captcha_image_0 {
    margin-bottom: 10px;
}

#siwp_captcha_input_0 div {
    font-size: 14px!important;
    margin: 0 0 15px;
}

/*****************************************
 # ad_before_content
 ******************************************/
aside.ad_before_content.widget-area, aside.ad_after_content.widget-area {
  text-align: center;
  overflow: hidden;
  margin: 15px auto 15px; }
/*****************************************
 # ajax content for featured posts
 ******************************************/
.featured-post-wrap .single-article-container {
    margin: -20px 0 15px;
    border-top: 0px solid #eee; }
/*****************************************
 # ajax content for featured video homepage
 ******************************************/
.latest-videos-wrap .single-article-container {
  margin: 25px 0;
  border-top: 2px solid #eee; }
/*****************************************
 # ajax content for  Review homepage
 ******************************************/
.reviews-wrap .single-article-container {
  margin: 25px 0;
  border-top: 2px solid #eee; }
/*****************************************
 # ajax content for  Review Archive paga
 ******************************************/
.reviews-wrap.articles-wrap.archive-page .single-article-container {
  border-top: 0; }
/*****************************************
 # ajax content
 ******************************************/
/*ajax content*/
.single-article-container {
  border-bottom: 2px solid #eee;
  padding: 25px 0;
  position: relative;
  width: 100%; }

.single-article-container .article_featured_video, .single .single-wrap .article_featured_video {
  width: calc(100% + 20%);
  margin: 15px -10%; }

.single-article-container .article_featured_video iframe, .single .single-wrap .article_featured_video iframe {
  width: 100%;
  /*min-height: 430px;*/ }

.close-postnow {
  position: -webkit-sticky;
  position: sticky;
  right: 365px;
  top: 55px;
  margin-right: -10%;
  float: right;
  background: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9; }

.close-postnow > svg.icon--close {
  width: 20px;
  height: 20px; }

.close-postnow svg.icon--close path {
  fill: #f00; }

.icon--white * {
  fill: #fff; }

.close-postnow .progress-wrap {
  width: 50px;
  height: 50px;
  z-index: -1;
  border-radius: 50%;
  display: block;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  position: absolute;
  pointer-events: none;
  -webkit-transition: translate 0.3s linear;
  -o-transition: translate 0.3s linear;
  transition: translate 0.3s linear;
  -webkit-transform-origin: 25px 25px;
  -ms-transform-origin: 25px 25px;
      transform-origin: 25px 25px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg); }

.close-postnow svg .progress-circle {
  fill: transparent;
  stroke: #f00;
  stroke-width: 2;
  stroke-dasharray: 137.4;
  stroke-dashoffset: 137.4; }




body.single main .single-wrap{
  position: relative;
}

.single-article-container:before,
body.single main .single-wrap:before{
  content: "";
  position: absolute;
  z-index: -1;
  width: 105vw;
  height: 100%;
  left: -10%;
  top: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: background-color 0.75s linear;
  -o-transition: background-color 0.75s linear;
  transition: background-color 0.75s linear; }

.single-article-container:before,
body.single main .single-wrap:before{
  left: -9999px;
  width: calc(100vw + 9999px); }

.single-article-container.article--completing:before, 
body.single main .single-wrap.article--completing:before{
  background-color: #f0f0f0; }





span.close-postnow.completed {
  background: #bbb; }

span.close-postnow.completed .progress-wrap circle {
  stroke: #bbb; }

svg.icon.icon--checkmark.icon--white {
  width: 22px;
  height: 22px; }

.menustyle2 .close-postnow {
    
}

.menustyle2 .close-postnow.fixed {
    position: fixed;
    right: 50%;
    margin-right: -240px;
    left: auto;}


/*****************************
 # single video post
 ******************************/
.single .single-wrap .video {
  border-top: 0px solid #888;
  padding: 0 10% 30px;
  border-right: 0px solid #888;
  position: relative; }

/*
.single .single-wrap iframe {
  width: calc(100%  + 20%);
  height: 412px;
  margin: 10px -10%; }
*/

.single .single-wrap .fluid-width-video-wrapper iframe {
    height: 100%;
}

/*.single .single-wrap .entry-content iframe {
    width: calc( 100% ); }
*/

/*****************************
 # Newsletter Sign Up Block
 ******************************/
.newletter-signup-block {
  padding: 0 10% 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.newletter-signup-block header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 25%;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.newletter-signup-block header h3 {
  font-weight: 700;
  letter-spacing: -0.12rem;
  font-size: 1.375rem; }

.newletter-signup-block .nsb-form-wrap {
  width: 75%;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.newletter-signup-block .nsb-form-wrap .form-field__checkbox-wrapper {
  margin: 0 0 12px; }

.newletter-signup-block .nsb-form-wrap .form-field__checkbox-wrapper label {
  font-size: 0.875rem;
  color: #f00; }

.newletter-signup-block .nsb-form-wrap .form-field__checkbox-wrapper .wpcf7-list-item {
  margin: 0 16px 0 0; }

.newletter-signup-block .nsb-form-wrap .form-field__email-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.newletter-signup-block .nsb-form-wrap .form-field__email-wrapper input[type="email"] {
  padding: 9px 0px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
  outline: none;
  font-size: 14px; }

.newletter-signup-block .nsb-form-wrap .form-field__email-wrapper .sEmail {
  width: 70%;
  padding-right: 15px; }

.newletter-signup-block .nsb-form-wrap .form-field__email-wrapper input[type="submit"] {
  border: none;
  color: #000;
  background: #ddd;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 18px;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.newletter-signup-block .nsb-form-wrap .form-field__email-wrapper input[type="submit"]:hover, .newletter-signup-block .nsb-form-wrap .form-field__email-wrapper input[type="submit"]:focus {
  background: #e2dede; }
/*****************************
 # 404 not found page css
 ******************************/
.error-404.not-found .page-header .page-title {
  font-size: 35px;
  margin: 0 0 12px -2px; }

.error-404.not-found .search-form .screen-reader-text {
  display: none; }

.error-404.not-found .search-form .search-field {
  border: 1px solid #ddd;
  padding: 3px 12px;
  margin-right: -5px;
  outline: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.error-404.not-found .search-form .search-submit {
  border: 1px solid #ddd;
  outline: navajowhite;
  padding: 4px 10px;
  font-size: 15px; }

.error-404.not-found .search-form .search-field:hover, .error-404.not-found .search-form .search-field:focus {
  border-color: #ccc; }

.error-404.not-found .widget .widgettitle, .error-404.not-found .widget .widget-title {
  font-size: 1.5rem;
	letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0.2em 0; }

.error-404.not-found .widget ul {
  padding-left: 20px; }


/* .wp-block-image figcaption {
    position: relative;
    border: 0px solid #fff;
    margin: 10px 10px 10px 1px;
}
.wp-block-image figcaption.alignlight {
    margin: 10px 0 10px 15px;
}
.wp-block-image figcaption em {
    margin-top: 0em;
    margin-bottom: 0em;
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 15px;
    color: #eee;
    left: 0;
    padding: 3px 10px 3px 20px;
    position: absolute;
    font-style: normal;
    font-family: "Roboto", arial, sans-serif !important;
} */

.wp-block-image figcaption {
    margin-top: 21px;
    margin-bottom: 0px;
    background-color: rgba(0,0,0,.8);
    bottom: 15px;
    color: #eee;
    left: 0;
    padding: 3px 10px 3px 10px;
    font-style: italic;
    font-family: roboto,arial,sans-serif!important;
    font-size: 90%;
    position: relative;
    border: 0 solid #fff;
    margin: 10px 1px 0px 1px;
}
/*****************************
 * Search page 
 * ****************************/
.search-results-wr .single-article {
  cursor: default; }

.search-results .page-header .page-title {
  font-size: 3rem; }
/*****************************
 * menustyle2 
 * ****************************/
.menustyle2 header#masthead {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  top: 0px;
  z-index: 10;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  height: auto;
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.logged-in #masthead-sticky-wrapper.is-sticky header#masthead {
    top: 32px!important;
}
@media screen and (min-width: 700px) {
  #masthead-sticky-wrapper.is-sticky.down header#masthead {
    transform: translateY(-100%);
  }
}
#masthead-sticky-wrapper.is-sticky.up header#masthead{    

}

.menustyle2 #masthead #primary-menu{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0; }

.menustyle2 .site-branding {
  width: auto;
  margin-right: 20px;
  z-index: 9; }

.menustyle2 .site-header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 25px 15px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 0 auto; }

/* .menustyle2 .site-header-content:before {
  width: 1000%;
  position: absolute;
  left: -200%;
  top: 0;
  content: "";
  height: 100%;
  background: #fff;
  border: 1px solid #ddd; } */

.menustyle2 .is-sticky .site-header-content {
  /* padding: 15px 15px 0px; */
  }

.menustyle2 #masthead #primary-menu li.ch_bar {
  display: none; }

.menustyle2 #masthead #primary-menu li a {
  padding: 5px 12px;
  color: #000;
  transition: 0.3s; }
.menustyle2 #masthead #primary-menu li a:hover {
  color: #f00; }

#masthead #primary-menu li.menu-item-has-children a .angle-down {
    float: right;
    transform: rotate(90deg);
    margin-left: 10px;
}

#masthead #primary-menu li.menu-item-has-children ul#sub-menu li.menu-item-has-children a .angle-down {
    float: right;
    transform: rotate(0deg);
    margin-left: 10px;
}
.menustyle2 #masthead #primary-menu li.menu-item-has-children:after {
    content: "";
    top: 100%;
    width: 100%;
    height: 20px;
    background: transparent;
    left: 0;
    z-index: 9999;
    position: absolute;
}

/* submenu lavel-1*/


.menustyle2 #masthead ul#primary-menu li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 200px;
    box-shadow: 0px 1px 1px #aaa;
    background: #fff;
    display: none;
    justify-content: flex-start;
    flex-flow: row wrap;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
	z-index: -9999;
	
}

.menustyle2 #masthead ul#primary-menu li:hover > ul.sub-menu {
	z-index: 9;
	display: flex;
}
.menustyle2 #masthead ul#primary-menu li ul.sub-menu li {
    width: 100%;
    margin: 0;
}

.menustyle2 #masthead ul#primary-menu li ul.sub-menu li a {
    border-bottom: 1px solid #aaaaaa96;
    padding: 7px 12px;
}

/* submenu lavel-2*/
.menustyle2 #masthead ul#primary-menu li ul.sub-menu li ul.sub-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 1px;
	z-index: -9999;
	display: none;
}


.menustyle2 #masthead ul#primary-menu li ul.sub-menu li:hover>ul.sub-menu {
	top: 0;
	z-index: 9;
	display: flex;
}





.menustyle2 #masthead .sidebar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;}

.menustyle2 #masthead .sidebar-header .menu-login-signup-container {
  display: none; }

.menustyle2 #masthead .sidebar-header .widget ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.menustyle2 #masthead .sidebar-header .widget ul li a {
  padding: 5px 8px; }

.menustyle2 #masthead .widget_nav_menu ul#menu-login-signup li:after {
  top: 5px;
  right: 0; }

.menustyle2 #masthead .sidebar-header .widget_search {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3; }

.menustyle2 #masthead .sidebar-header section:nth-child(2) {
  display: none; }

.menustyle2 #masthead .sidebar-header .widget_search .search-form {
  width: 100%;
  margin-top: -5px; }

.menustyle2 .site-branding p {
  margin: 0; }

.menustyle2 #TopWidgetArea, 
.menustyle2 #content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 15px 0px; }


.menustyle2 #TopWidgetArea {
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 12px 0;
    border-bottom: 0; 
    z-index: -9999;
    transform: translate(0);
    transition: 0.5s; }

.menustyle2 #TopWidgetArea.up{  
    transform: translateY(-150%);
    top: -100% }

.menustyle2 #TopWidgetArea .widget {
  max-width: 1200px;
  margin: 0 auto; }

.menustyle2 #content #primary {
  padding: 30px 15px; }

.menustyle2 aside#secondary section:last-child.sticky-ad1 {
  right: auto;
  width: 100vw;
  max-width: 1200px; }

.menustyle2 aside#secondary section:last-child .__lx_sticky_pos_fixed.__lx_sticky_moving {
  transition: 1s;
}




#BannerAdArea2 .textwidget>div, #BannerAdArea2 .textwidget>div div, #BannerAdArea2 .textwidget>div iframe, #BannerAdArea2 .textwidget>divimg {
    max-width: 100%!important;
}

.menustyle2 footer#colophon {
  width: 100%;
  padding: 30px 0px; }

.menustyle2 .contaner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%; }

.menustyle2 .close-postnow {
  top: 125px; }

/****************************
 * single page
 * **************************/
article.type-page header h1 {
  font-weight: 700;
  margin-top: 0; }


.single .single-wrap .shortbytag .article_featured_img, 
.single .single-wrap .shortbytag .article_featured_video {
    width: 31%;
    margin: 15px 0;
}

/*mobile menu icon*/
#masthead .menu-icon {
    display: none;
    z-index: 9;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;       
    padding: 6px 0 6px 20px;
    cursor: pointer;
    height: auto;
    position: relative;
}

#masthead .site-header-content .mbnav-header {
    display: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5px 15px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#masthead .site-header-content .mbnav-header .close-menu {
    cursor:  pointer;
    width: 35px;
}

#masthead .site-header-content .mbnav-header .close-menu img {
    width:  100%;
    height: auto;
}

.che-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.25098039215686274);
    opacity: 0.6;
    z-index: -999999;
    display: none;  
    -webkit-transition: 0s;  
    -o-transition: 0s;  
    transition: 0s;
    top: 0;
    left:0;
}



/*related-post*/
.flex-container, .sidebar-layout {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.single-tab {
    border: solid .4045em #ddd;
    padding: .809em;
    position: relative;
}

.withoutimg.single-tab {
    border: 2px solid #000;
    background: #f8f8f8;
}

.shortcode {
    margin: 0 auto;
    margin-top: 1.618em;
}

.single-tab:before {
    font-family: 'Montserrat', sans-serif;
    color: #575757;
    font-weight: 600;
    position: absolute;
    left: .809em;
    top: -.60675em;
    text-transform: uppercase;
    background-color: #f8f8f8;
    padding: 3px 8px;
    font-size: 1.2rem;
    line-height: .909em;
    transition: background 0.0s;
}

.article--completing .single-tab:before {
    background: #F0F0F0;
}
.single-tab.related-post:before {
    content: "Leggi anche: ";
}
.shortcode.related-post .thumb {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 15%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
	display: none;
}
.shortcode.related-post .thumb img {
    display: block;
    width: 100%;
}

.shortcode.related-post .info {
    -webkit-box-flex: 6;
    -moz-box-flex: 6;
    width: 85%;
    -webkit-flex: 6;
    -ms-flex: 6;
    flex: 6;
    margin-left: .809em;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}

.shortcode.related-post.withoutimg .info a {
    font-weight: 500;
}

.shortcode.related-post .info a {
    color: #f00;
    font-family: 'Montserrat', sans-serif;
    transition: color .2s linear;
    -webkit-transition: color .2s linear;
    -o-transition: color .2s linear;
    -moz-transition: color .2s linear;
    display: inline-block;
    font-size: 1.2rem
}

.shortcode.related-post .info a:hover {
    color: #000;
}

.shortcode.related-post .info .subtitle {
    margin-top: .4045em;
    font-size: 1em;
    line-height: 1.618em;
    display: none;
}

.shortcode.related-post .info .categories-tags {
    display: none;
}

.shortcode.related-post .info .categories-tags a span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ff0000;
}

.shortcode.related-post .info .categories-tags ul.tags-list.icon-tag {
    margin: 0;
    padding: 0 0 0 36px;
    font-size: 14px;
    position:relative;
}
.shortcode.related-post .info .categories-tags ul.tags-list.icon-tag:before {
    position: absolute;
    content: "Tag:";
    font-weight: 700;
    font-size: 14px;
    top: 2px;
    left: -2px;
}

.shortcode.related-post .info .categories-tags ul.tags-list.icon-tag a {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    margin-right: 10px;
    color: #ff0000;
}

.shortcode.related-post .info .categories-tags a span:hover,
.shortcode.related-post .info .categories-tags ul.tags-list.icon-tag a:hover {
    text-decoration: underline;
}

.shortcode.related-post .info .categories-tags>a {
    position: relative;
    padding-left: 72px;
}

.shortcode.related-post .info .categories-tags>a:before {
    position: absolute;
    content: "Categoria:";
    font-weight: 700;
    font-size: 14px;
    top: 5px;
    left: 0;
}


/*wpDiscuzz*/
#wpcomm input[type="submit"] {
    margin-top: 5px;
}

img.attachment-square200.size-square200.wp-post-image {
    max-width: 200px;
    max-height: 200px;
}
.shortcode.prodotto .info.flex-container {
    flex-flow: column wrap;
}

/*swp_social_panel*/
.single-article-container .swp_social_panel:not(.nc_floater):not(.swp_social_panelSide),
.single-wrap .swp_social_panel:not(.nc_floater):not(.swp_social_panelSide) {
    width: 80%!important;
    margin: 0 auto!important;
}

.entry-content p iframe {
    max-width: 100%;
    /*height: auto;*/
}


/*related-post single-tab*/
.shortcode.related-post.single-tab.flex-container {
    flex-flow: column wrap;
}



.addtoany_shortcode {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.addtoany_shortcode .addtoany_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addtoany_list.a2a_kit_size_32 a{
    background: rgb(59, 89, 152);
    margin: 0 5px;
    border-radius: 3px;
    width: calc( 20% - 5px);
    height: 39px;
}

.addtoany_list.a2a_kit_size_32 a.a2a_button_facebook{
    background: rgb(59, 89, 152)  url(../images/sharef.jpg) no-repeat center;
}
.addtoany_list.a2a_kit_size_32 a.a2a_button_twitter{
    background: rgb(85, 172, 238) url(../images/sharet.jpg) no-repeat center;
}
.addtoany_list.a2a_kit_size_32 a.a2a_button_email{
    background: rgb(1, 102, 255) url(../images/sharee.jpg) no-repeat center;
}
.addtoany_list.a2a_kit_size_32 a.a2a_button_copy_link{
  background: rgb(1, 102, 255) url(../images/sharec.jpg) no-repeat center;
}

.addtoany_list.a2a_kit_size_32 a.a2a_dd.addtoany_share_save.addtoany_share{
    background: rgb(1, 102, 255) url(../images/sharem.jpg) no-repeat center;
}

.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span {
  margin: 2px 0 -2px;
}


div#gglcptch_recaptcha_828399556 iframe {
    height: auto;
}

.single-article-container img[alt="Reload Image"] {
    display: none;
}

/*vote section*/
.vote-final-section {
    text-align: center;
}
.vote-final {
    font-size: 25px;
    border: 2px solid #f00;
    text-align: center;
    padding: 12px 24px;
    color: #f00;
    font-weight: 700;
    margin: 16px auto;
    display: inline-block;
}
.vote-final .review-value {
    font-size: 30px;
}
.vote-final .slash {
    margin: 0 3px 0 2px;
}

/*single-item widget*/
.item-wrap .title {
    margin: 8px 0;
}

/*chi_offerte shortcode css*/
.review-section-title.offerta {
    font-size: 28px;
    font-weight: 700;
    margin: 25px 0 10px;}




/*****************************************
 # articalo shortcode with img
 ******************************************/
.shortcode.related-post.single-tab.flex-container.with-img{
    display: flex;
    flex-flow: row wrap;
}
.single-tab.with-img.related-post:before {
    display: none;
}

.single-tab.with-img {
    border: 2px solid #000!important;
    margin-bottom: 7px;
	background : #f8f8f8;
}

.shortcode.related-post.with-img .thumb {
    display: inline-block;
    width: 98px;
    max-height: 75px;
	overflow: hidden;
}

.shortcode.related-post.with-img .info {
    width: calc(100% - 98px);
    display: inline-block;
}

.shortcode.related-post.with-img .info a {
    color: #f00;
    transition: 0.3s;
	font-weight: 500
}

.shortcode.related-post.with-img .info a:hover {
    color: #000;
}

/* articles-wrap.shortbytag */
.articles-wrap.shortbytag {
    overflow: hidden;
}

/*****************************************
 # Ajax Single Post/Page Video
 ******************************************/



.single-article-container .article_featured_video {
    width: calc(100% + 20%);
    position: relative;
    padding-top: 68.25%;
}
.single-article-container .article_featured_video iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}


/*popup-youtube*/
a.popup-youtube {
    display: inline-block;
    position: relative;
    width: 100%;

}
a.popup-youtube > img{
    width: 100%;
}

a.popup-youtube .player {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000007a;
}

a.popup-youtube .player i.icon-youtube-play {
    font-size: 65px;
    color: #f00;
    transition: 0.3s;
    position: relative;
}

a.popup-youtube:hover .player i.icon-youtube-play {
    color: #000;
}

a.popup-youtube .player i.icon-youtube-play:before {
    z-index: 5;
    background: #fff;
    line-height: 0.7;
    border-radius: 50%;
}


/* .breadcrumb-wrapper */
.breadcrumb-wrapper {
    visibility: hidden;
    font-size: 0;
    margin: -5px 0 0px 3px;
    padding-bottom: 15px;
}

.breadcrumb-wrapper>span {
    visibility: visible;
    font-size: 14px;
}

.breadcrumb-wrapper>span>a {
    color: #E74C3C;
    position: relative;
}

.breadcrumb-wrapper>span>a:after {
    content: "\279C";
    margin-left: 0.5em;
    margin-right: 0.5em;
    font-weight: 300;
}

.breadcrumb-wrapper>span>a.post-offerta-archive:after, 
.breadcrumb-wrapper>span>a.post-video-archive:after {
    display: none;
}

/* .annuncio-box */
.annuncio-box {
    color: white;
    margin-bottom: 15px;
    border-radius: 3px;
    overflow: hidden;
}
.annuncio-box a{
    color: #fff;
    text-decoration: underline;
}
.annuncio-box > div {
    padding: 16px;
    background-color: #E74C3C;
    overflow: hidden;
}

.annuncio-box ul {
    padding-left: 18px;
    margin-top: 10px;
    margin-bottom: 0;
}
.addtoany_share_save_container.addtoany_content.addtoany_content_bottom {
    display: none;
}

.mhauto {
    max-height: none!important;
}
.menustyle2 #masthead #primary-menu>li>a {
    position: relative;
}

.menustyle2 #masthead #primary-menu>li>a:after {
    position: absolute;
    width: 1px;
    background: #000;
    height: 50%;
    top: 0;
    z-index: 9999;
    content: '';
    right: 0;
    transform: translateY(50%);
}
.menustyle2 #masthead #primary-menu>li:last-child>a:after {
	width: 0px;
}
.close-postnow {
    display: none!important;
}
/***********************************************************************************
 * Responsive CSS
 * *********************************************************************************/
/*Large devices (desktops, 1200px and down)*/
@media (max-width: 1199px) {
  /*Header Section*/
  /*  featured-posts */
  /*Latest Posts*/
  /*Latest-Videos*/
  /* articles-wrap */
  /*site-footer*/
  /*single page*/
  /*ajax sigle content*/
    .menustyle2 .site-header-content {
      padding: 20px 15px 5px; }

    .menustyle2 .site-header-content:before {
        width: 100%;
        left: 0;
        border-left: 0px solid #ddd;
        border-right: 0px solid #ddd;
    }
	
	.menustyle2 #masthead ul#primary-menu li ul.sub-menu {
		margin-top: 17px;
	}

    .single_featured_post.first {
      margin-right: 15px; }
    .single_featured_post {
      padding-bottom: 10px;
      width: calc(38% - 15px);
      margin-bottom: 10px; }
    .single_featured_post.first .post-title {
      font-size: 1.88rem; }
    .featured-posts .post-title {
      font-size: 1.2rem;
      margin: 0 0 10px; }
    .latest-posts {
      width: 65%; }
    .single_latest_post .post-meta span, .shopping-posts .single-shopping-post .post-meta span {
      white-space: nowrap; }
    .ch_videos-wrap {
      width: calc(35% - 15px); }
    .video-section-title {
      font-size: 20px; }
    .single_featured_video {
      margin-bottom: 10px; }
    .ch_video .video-title {
      font-size: 15px; }
    .articles .single-article .article_desc .post-title {
      font-size: 18px; }
    .social-links ul li a {
      padding: 0 6px; }
    .page-header .page-title {
      font-size: 4.25rem; }
    article.type-post .entry-header .entry-title, article.type-video .entry-header .entry-title, article.type-recensioni .entry-header .entry-title {
      font-size: 2rem; }


		.menustyle2 .close-postnow.fixed {
			right: 350px;
			margin-right: 0;
			left: auto;
		}}
/*Medium devices (tablets, 992px and down)*/
@media (max-width: 991px) {
  /*Header Section*/
  /*TopWidgetArea*/
  /*single page*/
    .menustyle2 .site-header-content {
      padding: 15px 15px 0px; }	
	.menustyle2 #masthead ul#primary-menu li ul.sub-menu {
		margin-top: 12px;}
    #TopWidgetArea {
      padding: 12px 15px; }
    .menustyle2 #TopWidgetArea {
      padding: 12px 15px; }
    .page-header .page-title {
      font-size: 3.25rem; } }
/*Medium devices (tablets, 859px and down)*/
@media (max-width: 849px) {
  /*featured-posts*/
  /*Latest posts*/
  /*Latest Videos*/
  /*shopping-posts*/
  /*reviews home*/
  /*articles*/
  /*footer section*/
  /*ajax single content*/
  /*video-archive page*/
  /*search results page*/
    .featured-post {
      margin: 0 0 15px; }
    .single_featured_post.first {
      float: none;
      margin-right: 0px;
      width: 100%; }
    .single_featured_post {
      width: 100%; }
    .single_featured_post.first .post-title {
      font-size: 1.6rem; }
    .featured-posts .post-title {
      font-size: 1rem;
      margin: 0 0 7px; }
    .latest-posts {
      width: 100%; }
    .ch_videos-wrap {
      width: 100%;
      margin: 15px 0; }
    .video-section-title {
      font-size: 24px; }
    .ch_video.home-videos-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .single_featured_video {
      width: 50%;
      padding: 7.5px; }
    .shopping-posts .single-shopping-post {
      width: calc(50% - 8px);
      margin-bottom: 15px;
      opacity: 1;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .shopping-posts .single-shopping-post:nth-child(3n+3) {
    display: none;}
    .reviews-wrap .reviews .single-review {
      width: 100%; }
    .articles .single-article .article_desc {
      width: 63%; }
    .articles .single-article .article-content {
      display: none; }
    .articles .single-article .article_featured_img, .articles .single-article .article_featured_video {
      width: 35%; }
    .articles .loadmore {
      padding: 12px 0;
      font-size: 18px; }
    .menustyle2 footer#colophon {
      width: 100%;
      padding: 15px 0px; }
    article.type-post .entry-header .entry-title, article.type-video .entry-header .entry-title, article.type-recensioni .entry-header .entry-title {
      font-size: 1.75rem; }
    .close-postnow {
      right: 355px; }
    #videos-container.articles .single-article .article_desc {
      width: 100%;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin: 10px 1px; }
    #videos-container.articles .single-article .article_featured_img, #videos-container.articles .single-article .article_featured_video {
      width: 100%;
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0; }
    .search-results .page-header .page-title {
      font-size: 2rem;}
    /*updated*/
    article.type-post .entry-header .entry-title, article.type-video .entry-header .entry-title, article.type-recensioni .entry-header .entry-title, article.type-offerta .entry-header .entry-title {
      font-size: 1.58rem; }

    .single-article-container .article_featured_video iframe, .single .single-wrap .article_featured_video iframe {
        width: 100%;
        min-height: auto;}
    article.type-post .article_featured_video iframe, article.type-video .article_featured_video iframe, article.type-recensioni .article_featured_video iframe, article.type-offerta .article_featured_video iframe {
      width: 100%;
      max-height: 245px;}

      nav.social-links {
          margin-left: -100px;
          margin-top: 20px;
      }
      nav.footer-menu {
          margin-right: -56%;
      }
            }

@media screen and (max-width: 782px){

  .logged-in #masthead-sticky-wrapper.is-sticky header#masthead {
    top: 46px!important;
  }

  .logged-in #TopWidgetArea {
      top: 46px;
  }
  .menustyle2 #masthead #primary-menu li a {
      padding: 5px 7px;
  }

  article.type-post .entry-header .entry-title, article.type-video .entry-header .entry-title, article.type-recensioni .entry-header .entry-title, article.type-offerta .entry-header .entry-title {
      font-size: 1.40rem;
  }

  article.type-post header.entry-header > div, article.type-video header.entry-header > div, article.type-recensioni header.entry-header > div, article.type-offerta header.entry-header > div {
    margin-bottom: 15px;
    overflow: hidden;
    width: 50%;
  }
	article header.entry-header > div.comment-link {
		width: auto;
		float: right;
	}

	article header.entry-header > div.entry-meta {
		width: calc( 100% - 90px );
		float: left;
	}
  div.comment-link {
      text-align: right;
  }

  .logged-in #comments {
    top: 46px;
  }

  article.type-post, article.type-video, article.type-recensioni, article.type-offerta {
  padding: 0 10px 30px; }

  .single .single-wrap .video {
    padding: 0 10px 30px;
  }

  .single-article-container .article_featured_video, .single .single-wrap .article_featured_video {
    width: calc(100% + 20px);
    margin: 15px -10px;
  }

  #comments ol.children {
      padding-left: 20px;
  }
  #comments .comment-body .comment-author.vcard img {
      margin-right: 5px;
  }
  #comments .comment-body .comment-meta .comment-metadata {
    font-size: 12px;
    top: 35px;
    left: 60px;
    right: auto;
  }
  #comments #respond.comment-respond #reply-title {
      font-size: 14px;
  }

  nav.footer-menu {
    margin-right: auto;
  }
  nav.social-links {
      margin-left: auto;
      margin-top: auto;
  }
  .footer-menu #footer-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
     margin: 0 0 5px;
  }
  .site-info {
      text-align: center;
  }
  .social-links ul {
      margin: 9px 0px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
  }
  .footer-menu #footer-menu li a {
      white-space: nowrap;
  }

  .menustyle2 .close-postnow {
      right: 10px;
/*       position: absolute;
      top: 10px; */
  }

  aside.ad_before_content.widget-area, aside.ad_after_content.widget-area {
      margin: 15px -10px;
  }

}

@media screen and (max-width: 845px){
	
/*header section*/
nav#site-navigation {
    position:  fixed;
    background: #1C1D21;
    height:  100%;
    width:  300px;
    top: 0px;
    right: -300px;
    z-index: 9999999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    max-width: 70%;
    overflow: auto;
}

nav#site-navigation.active{
    right:0;
}

.logged-in nav#site-navigation{
    top: 45px;
}

	
	
	
	
.che-overlay.active{
  z-index: 9999998;
  display: block;  
}

.logged-in nav#site-navigation {
    top: 46px;
    padding-bottom: 46px;
}
.menustyle2 #masthead #primary-menu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
}
.main-navigation li {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
}
.menustyle2 #masthead #primary-menu li a {
    padding: 10px 15px;
    border-top: 1px solid #32353a;
    color: #fff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.menustyle2 #masthead #primary-menu li:hover a,
.menustyle2 #masthead #primary-menu li:focus a {
    background: #32353A
}
.menustyle2 #masthead #primary-menu li:last-child a {
    border-bottom: 1px solid #32353a;
}
	
	
.menustyle2 #masthead #primary-menu li a .angle-down {
    float: right;
    transform: rotate(90deg);
}
	
.menustyle2 #masthead #primary-menu li.menu-item-has-children:after {
    content: "";
    top: 100%;
    width: 100%;
    height: 20px;
    background: transparent;
    left: 0;
    z-index: 9999;
    position: absolute;
    display: none;
}

/* submenu lavel-1*/


.menustyle2 #masthead ul#primary-menu li ul.sub-menu {
    position: inherit;
    top: 0;
    width: auto;
    min-width: 0;
	background: transparent;
    box-shadow: none;
    display: block;
    margin-top: 0;
    z-index: -9999;
}

.menustyle2 #masthead ul#primary-menu li ul.sub-menu li a {
    border-top: 1px solid #aaaaaa96;
    font-weight: 500;
    padding: 10px 15px 10px 25px;
    border-bottom: 0;
    background: #343a40;
}
	
.menustyle2 #masthead ul#primary-menu li ul.sub-menu li ul.sub-menu {    
    left: 0;
    display: block;
}
	
	
	
	
#masthead .site-header-content .menu-icon{
  display: block;
}
#masthead .site-header-content .mbnav-header{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}
.widget_search label input {
    max-width: 175px;
    margin-left: -25px;
}
	
}

@media screen and (max-width: 699px){
	body {
		font-size: 17px;
	}

.menustyle2 aside#secondary section:last-child.sticky-ad1 {
    right: auto;
    width: 100%;
    max-width: 100%;
    position: static;
}
.menustyle2 .sticky-ad1 img {
    width: auto;
    max-width: 100%;
}

  #content #primary {
      width: 100%;
  }

  #content #secondary {
      max-width: 330px;
      width: 100%;
      margin: 0 auto;
  }
/*  .sticky-ad1 {
    position: relative;
    width: auto;
  }
  .sticky-ad1.absolute {
      position: relative;
      top: 15px;
  }*/
  .menustyle2 .sticky-ad1, .sticky-ad1, .sticky-ad1.absolute, .sticky-ad1.absolute.fixed {
      position: relative;
      width: auto;
      margin: 15px 0 0;
      max-width: 100%;
      top: 0;
  }
  .reviews-wrap .reviews .single-review {
      width: 50%;
  }

  .articles .single-article .article_desc {
      width: 58%;
  }
  .articles .single-article .article_featured_img, .articles .single-article .article_featured_video, .single .single-wrap .shortbytag .article_featured_img, .single .single-wrap .shortbytag .article_featured_video {
      width: 40%;
  }



article.type-post .article_featured_video iframe, article.type-video .article_featured_video iframe, article.type-recensioni .article_featured_video iframe, article.type-offerta .article_featured_video iframe {
      max-height: 320px;
  }


  article.type-post .entry-header .entry-title, article.type-video .entry-header .entry-title, article.type-recensioni .entry-header .entry-title, article.type-offerta .entry-header .entry-title {
      font-size: 1.6rem;
  }

  .menustyle2 .close-postnow {
      top: 75px;
  }
  .close-postnow {
    right: 0;
  }
    .articles .loadmore {
      padding: 12px 0;
      font-size: 22px;
  }

  #comments {
      width: 360px;
      right: -360px;
  }
	

	.menustyle2 .close-postnow.fixed {
		right: 18px;
		margin-right: 0;
		left: auto;
	}

}


@media screen and (max-width: 599px){

  .logged-in #masthead-sticky-wrapper.is-sticky header#masthead {
    top: 0px!important;
  }
  .menustyle2 #content #primary {
      padding: 0 15px 15px;
  }
  .page-header .page-title {
      font-size: 2.25rem;
      margin-top: 0;
  }
  .archive-description {
      font-size: 1.0rem;
      line-height: 1.6;
  }

article.type-post .article_featured_video iframe, article.type-video .article_featured_video iframe, article.type-recensioni .article_featured_video iframe, article.type-offerta .article_featured_video iframe {
      max-height: 300px;
  }
	
blockquote {
    width: 90%;
    padding: 0.8em 15px 0.1em 25px;
	box-sizing: border-box;
}
blockquote:before {
    left: 0px;
    top: -15px;
}
	
	
}
@media screen and (max-width: 575px){

  .reviews-wrap .reviews .single-review {
      width: 100%;
  }
}

@media screen and (max-width: 479px){
.latest-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}
.single_latest_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-bottom: 10px;
    width: 48%;
}

.single_latest_post .latest_img {
    width: 100%;
} 
.single_latest_post .latest_post_desc {
    width: 100%;
    padding: 5px 0px 2px 0px;
}

.single_featured_video {
    width: 100%;
    padding: 0px;
}
article.type-post .article_featured_video iframe, article.type-video .article_featured_video iframe, article.type-recensioni .article_featured_video iframe, article.type-offerta .article_featured_video iframe {
    max-height: 280px;
}
  .site-info {
      font-size: 12px;
  }
  .social-links ul li a {
      padding: 0 4px;
  }
}


@media screen and (max-width: 385px){
nav#site-navigation {
    max-width: 75%;
}
	
.latest-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}
.single_latest_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-bottom: 10px;
    width: 48%;
}

.single_latest_post .latest_img {
    width: 100%;
} 
.single_latest_post .latest_post_desc {
    width: 100%;
    padding: 5px 0px 2px 0px;
}

.single_featured_video {
    width: 100%;
    padding: 0px;
}
article.type-post .article_featured_video iframe, article.type-video .article_featured_video iframe, article.type-recensioni .article_featured_video iframe, article.type-offerta .article_featured_video iframe {
    max-height: 185px;
}
.widget_search label input {
    max-width: 160px;
}


article.type-post header.entry-header > div, 
article.type-video header.entry-header > div, 
article.type-recensioni header.entry-header > div, 
article.type-offerta header.entry-header > div {
    /*display: none;*/
}

aside.ad_before_content.widget-area, aside.ad_after_content.widget-area {
    margin: 15px -10px;
}

  .site-info {
      font-size: 12px;
  }
  .social-links ul li a {
      padding: 0 4px;
  }
}

/*Small devices (landscape phones, 768px and down)*/
/*
 Extra small devices (portrait phones, less than 576px)
 No media query since this is the default in Bootstrap
 */ 