/**
 * Table of Contents
 *
 * 1.0 Helpers
 * 2.0 Comments
 * 3.0 Menu icon animated
 * 4.0 Modals
 * 5.0 Tabs Widget for Page Builder
 * 6.0 Share Buttons
 * 7.0 post and page elements
 * 8.0 Main Menu
 * 9.0 blockquote Typography
 * 10.0 Author formatting
 * 11.0 Post navigation (Previous and Next)
 * 12.0 Wdget
 *    12.1 Right Sidebar Widget
 *    12.2 Footer Widget
 *    12.3 Content Bottom Widget
 * 13.0 Post loops (using in Site Origin Page Builder)
 *    13.1 Loop-1
 *    13.2 loop-2
 *    13.3 loop-3
 *    13.4 loop-4
 *    13.5 loop-5
 * 14.0 Contact form 7
 * 15.0 Woocommerce
 */
/* 1.0 Helpers */
.clearfix {
  zoom: 1;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.nascosto {
  display: none;
}
.nascondi {
  display: none !important;
}
h1 {
  letter-spacing: 0 !important;
}
body.page-template-page_no-sidebar .post-thumbnail,
.so-panel .post-thumbnail,
body.page-template-page_no-sidebar .entry-meta,
.so-panel .entry-meta,
body.page-template-page_no-sidebar .entry-summary,
.so-panel .entry-summary {
  margin: 0 0 1.75em;
}
select {
  height: 44px;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  background: url("arrow_carrot-down.svg") no-repeat right;
  font-size: 12px;
  padding-left: 12px;
  letter-spacing: 0.1em;
  font-weight: 300;
}
/* 2.0 Comments */
.comment-content {
  margin-left: 100px;
}
@media only screen and (max-width: 44.375em) {
  .comment-content {
    margin-left: 70px;
  }
}
.reply {
  position: absolute;
  top: 0;
  right: 0;
}
#comments {
  padding-top: 32px;
}
#comments .comment-list {
  margin-top: -36px;
}
#comments .comments-title-container {
  border-top: 1px solid rgba(0,0,0,0.1);
  text-align: center;
}
#comments .comments-title-container .comments-title,
#comments .comments-title-container .comment-reply-title {
  text-transform: uppercase;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 2px;
  background-color: #fff;
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
  padding-left: 16px;
  padding-right: 16px;
}
#comments .comment-reply-link {
  color: #000;
  padding: 0;
  border: none;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  letter-spacing: 1px;
}
#comments a:hover,
#comments a:focus {
  color: #cd2026;
}
#comments > ol li {
  border-top: 1px solid rgba(0,0,0,0.1);
}
#comments > ol > li:first-child {
  border-top: none;
}
#comments p {
  color: #787878;
  font-size: 0.8125rem;
}
/* 3.0 Menu icon animated (Hamburgher) from https://codepen.io/designcouch/pen/Atyop */
button.menu-toggle,
button.dropdown-toggle {
  background-color: transparent !important;
  border: transparent !important;
}
#nav-icon4 {
  display: block;
  width: 24px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #1a1a1a;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
#nav-icon4 span:nth-child(1) {
  top: 0px;
}
#nav-icon4 span:nth-child(2) {
  top: 8px;
}
#nav-icon4 span:nth-child(3) {
  top: 16px;
}
#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0px;
  left: 0px;
}
#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 17px;
  left: 0px;
}
.light #nav-icon4 span {
  background: #fff;
}
/* 4.0 Modals */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 10000;
}
.modal {
  position: fixed;
  z-index: 10001;
  top: 10%;
  max-height: 80%;
  overflow-y: auto;
  left: calc((100vw - 500px) / 2);
  background-color: #fff;
  width: 500px;
  padding: 2em;
  display: none;
}
@media only screen and (max-width: 420px) {
  .modal {
    width: 300px;
    left: calc((100vw - 300px) / 2);
  }
}
/* 5.0 Tabs Widget for Page Builder */
.pt-tabs ul.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 45px;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pt-tabs ul.nav-tabs li.nav-item {
  width: 100%;
  text-align: center;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
}
.pt-tabs ul.nav-tabs li.nav-item:first-child {
  border: none;
}
.pt-tabs ul.nav-tabs li.nav-item a.nav-link {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: none;
  font-weight: 600;
  padding: 2px 6px;
}
.pt-tabs ul.nav-tabs li.nav-item a.nav-link.active {
  color: #1a1a1a;
}
/* 6.0 Share Buttons */
.site-main .share-container,
.site-main .share-buttons {
  float: none;
}
.site-main .share-container .share,
.site-main .share-buttons .share {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.site-main .icon-share {
  margin-right: 16px;
  font-size: 15px;
}
.site-main p {
  margin-bottom: 20px;
  margin-top: 6px;
}
.share-buttons-container {
  position: absolute;
}
.share-buttons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 26px;
  height: 26px;
  background: #f00;
  text-align: center;
  border-radius: 50%;
  margin-left: 2px;
}
.share-buttons a span {
  width: 100%;
  color: #fff;
}
.share-buttons a[href*="facebook"] {
  background: #3b5998;
}
.share-buttons a[href*="twitter"] {
  background: #4099ff;
}
.share-buttons a[href*="google"] {
  background: #d34836;
}
.share-buttons a[href*="linkedin"] {
  background: #0077b5;
}
.share-buttons a[href*="pinterest"] {
  background: #bd081c;
}
.share-buttons a[href*="tumb"] {
  background: #36465d;
}
.share-buttons a[href*="mail"] {
  background: #808080;
}
/* 7.0 post and page elements */
.no-sidebar .content-area,
.content-area.nosidebar {
  width: 100%;
}
.page-header {
  background: #cd2026;
  width: 100vw;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  padding-bottom: 36px;
  padding-top: 36px;
}
.page-header .page-title {
  color: #ebe9eb;
  font-size: 50px;
}
.single-format-image .entry-header {
  text-align: center;
}
.cat-links {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.07em;
}
a {
  color: rgba(0,0,0,0.5);
  text-decoration: none;
}
a:hover,
a:focus {
  color: #cd2026;
}
.sticky-post {
  letter-spacing: 0.076923077em;
  color: #cd2026;
  text-transform: uppercase;
  font-size: 12px;
}
.entry-date {
  font-size: 12px;
  color: rgba(0,0,0,0.5);
}
body {
  background-color: #1a1a1a;
}
body:not(.custom-background-image):before,
body:not(.custom-background-image):after {
  height: 3px;
}
#page {
  margin: 3px;
  overflow-x: hidden;
}
@media only screen and (max-width: 56.875em) {
  #page {
    margin: 0 !important;
  }
}
.site-title {
  font-size: 60px;
}
.site-branding {
  margin: auto !important;
  padding: 55px 0;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 44.375em) {
  .site-branding {
    padding: 0;
  }
  .site-branding img {
    max-width: 80% !important;
  }
}
.site-branding .custom-logo {
  max-width: 280px;
}
.site-header {
  padding-bottom: 0;
  margin-bottom: 24px;
}
@media only screen and (max-width: 56.875em) {
  .site-header {
    padding-bottom: 20px;
  }
}
.site-header .search-form {
  text-align: right;
}
.site-header .search-form input[type="search"].search-field {
  max-width: 210px;
  margin-top: -1px;
}
@media only screen and (min-width: 56.875em) {
  .site-header .search-form input[type="search"].search-field {
    width: 320px;
  }
}
.archive .site-header,
.search .site-header {
  padding-bottom: 0;
}
.mobile-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-size: 20px;
}
@media only screen and (min-width: 56.875em) {
  .mobile-buttons {
    display: none;
  }
}
.mobile-buttons a {
  color: #1a1a1a;
  margin-left: 18px;
}
.mobile-buttons a:hover,
.mobile-buttons a:focus {
  color: #cd2026;
}
.mobile-buttons.light a {
  color: #fff;
}
.cart-count {
  font-size: 8px;
  line-height: 14px;
  height: 14px;
  width: 14px;
  display: inline-block;
  background: #cd2026;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  -webkit-transform: translate(-10px, -10px);
          transform: translate(-10px, -10px);
}
@media only screen and (max-width: 56.875em) {
  .cart-count {
    -webkit-transform: translate(38px, -10px);
            transform: translate(38px, -10px);
  }
}
.line {
  width: 6000px;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin-left: -1000px;
  margin-right: -1000px;
}
.line.light {
  background: rgba(255,255,255,0.2);
}
@media only screen and (max-width: 56.875em) {
  .line {
    display: none;
  }
}
.line-inside {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.1);
}
/* 8.0 Main Menu */
#site-header-menu.light a {
  color: #fff !important;
}
@media only screen and (min-width: 56.875em) {
  #site-header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
        align-content: space-between;
    width: 100%;
    height: 61px;
    font-size: 12px !important;
  }
}
#site-header-menu nav {
  margin: auto;
  text-transform: uppercase;
}
@media only screen and (min-width: 56.875em) {
  #site-header-menu nav {
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    float: right;
  }
}
#site-header-menu .main-navigation {
  margin-left: -20px;
  margin-right: -40px;
}
#site-header-menu .main-navigation a {
  color: #1a1a1a;
}
@media only screen and (max-width: 56.875em) {
  #site-header-menu .main-navigation {
    margin-left: 0;
  }
}
#site-header-menu .social-navigation {
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#site-header-menu .social-navigation .cart-search {
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 56.875em) {
  #site-header-menu .social-navigation {
    display: block;
    margin-bottom: 0.84375em;
  }
  #site-header-menu .social-navigation .cart-search {
    display: none;
  }
}
#site-header-menu .social-navigation .social-links-menu {
  margin-right: -24px;
}
@media only screen and (max-width: 56.875em) {
  #site-header-menu .social-navigation .social-links-menu {
    margin-bottom: 0;
    margin-left: -12px;
  }
}
#site-header-menu .social-navigation .social-links-menu li {
  margin: 0;
}
#site-header-menu .social-navigation .social-links-menu li a {
  color: rgba(0,0,0,0.5);
  margin: 0;
  border: none;
  width: 36px;
}
@media only screen and (min-width: 56.875em) {
  #site-header-menu .social-navigation li {
    margin: 0 0 0.4375em 0.9em;
  }
}
#site-header-menu .social-navigation a {
  color: #1a1a1a;
}
#site-header-menu .social-navigation a.grey {
  color: rgba(0,0,0,0.5);
}
@media only screen and (min-width: 56.875em) {
  #site-header-menu .social-navigation a {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 56.875em) {
  #site-header-menu .social-navigation a {
    display: block;
    padding: 0.84375em 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
}
#site-header-menu .social-navigation a:hover:hover,
#site-header-menu .social-navigation a:hover:focus {
  color: #cd2026;
}
#site-header-menu .social-navigation a [class^="icon-"],
#site-header-menu .social-navigation a [class*=" icon-"] {
  font-size: 18px;
}
/* 9.0 blockquote Typography */
blockquote {
  padding-top: 32px;
  padding-bottom: 32px;
  color: #cd2026;
}
blockquote p {
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 32px 0;
}
blockquote:before {
  content: "\e903";
  font-family: 'icomoon';
  font-style: normal;
  font-size: 26px;
  line-height: 26px;
  height: 30px;
  color: rgba(0,0,0,0.5);
  margin-bottom: -18px;
  display: block;
  width: 40px;
  background-color: #fff;
  position: relative;
}
/* 10.0 Author formatting */
.byline {
  display: block !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 32px;
  font-size: 0.8125rem;
  height: 65px;
}
.byline .posted-on {
  display: inline-block;
  margin-top: 10px;
}
.byline .share-buttons {
  float: right;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 420px) {
  .byline .share-buttons {
    float: left;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.byline img {
  margin-right: 10px;
}
.byline .author {
  margin-right: 32px;
}
@media only screen and (max-width: 44.375em) {
  .author-avatar .avatar {
    width: 49px;
    height: 49px;
  }
}
.author-bio .social-navigation a {
  float: left;
  box-shadow: none;
  border: none;
}
.author-bio .social-navigation a:before {
  text-align: left;
}
/* 11.0 Post navigation (Previous and Next) */
.post-navigation {
  border-top: 1px solid rgba(0,0,0,0.1);
}
@media only screen and (max-width: 44.375em) {
  .post-navigation .wp-post-image {
    display: none;
  }
}
.post-navigation a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
}
@media only screen and (max-width: 420px) {
  .post-navigation a {
    height: 90px;
  }
}
.post-navigation a[rel='next'] {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.post-navigation a img {
  width: 100px;
}
.post-navigation .nav-previous {
  float: left;
}
@media only screen and (min-width: 420px) {
  .post-navigation .nav-previous {
    width: 49%;
  }
}
.post-navigation .nav-previous .meta-nav,
.post-navigation .nav-previous img {
  margin-right: 10px;
  font-size: 10px;
}
.post-navigation .nav-next {
  float: right;
  text-align: right;
}
@media only screen and (min-width: 420px) {
  .post-navigation .nav-next {
    width: 49%;
  }
}
.post-navigation .nav-next .meta-nav,
.post-navigation .nav-next img {
  margin-left: 10px;
  font-size: 10px;
}
/* 12.0 Wdget */
.widget .widget-title {
  font-size: 12px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1rem;
  margin-bottom: 32px;
}
.widget ul:not(.social-links-menu):not(.nav-tabs) {
  list-style: none;
}
.widget ul:not(.social-links-menu):not(.nav-tabs) li {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 14px;
  font-weight: 500;
  font-size: 14px;
}
.widget ul:not(.social-links-menu):not(.nav-tabs) li:not(:first-child) {
  padding-top: 14px;
}
.widget .framed {
  text-align: center;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.1);
}
.widget .framed input {
  width: 100%;
}
.widget .framed p {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.5);
}
/* 12.1 Right Sidebar Widget */
#secondary .widget {
  margin-bottom: 20px;
}
#secondary .widget.with-title {
  border-top: 1px solid rgba(0,0,0,0.1);
}
#secondary .widget .widget-title {
  text-align: center;
  margin-left: 50%;
  display: inline-block;
  background-color: #fff;
  padding: 0 10px;
  -webkit-transform: translate(-50%, -12px);
          transform: translate(-50%, -12px);
  margin-bottom: 10px;
}
/* 12.2 Footer Widget */
#colophon .panel-grid-cell {
  padding: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 56.875em) {
  #colophon .panel-grid-cell {
    padding-bottom: 0;
    padding-left: 7.6923% !important;
    padding-right: 7.6923% !important;
  }
}
#colophon .dark {
  color: rgba(255,255,255,0.5);
}
#colophon .dark .entry-date,
#colophon .dark h3 {
  color: rgba(255,255,255,0.5);
  text-align: left;
}
#colophon .dark .social-navigation a:not(.not-social) {
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(255,255,255,0.05);
}
#colophon .dark a {
  color: #ebe9eb;
}
#colophon .dark a:hover,
#colophon .dark a:focus {
  color: #cd2026;
}
#colophon .dark ul:not(.social-links-menu) li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* 12.3 Content Bottom Widget */
#content-bottom {
  margin-bottom: 100px;
  margin-top: 0;
}
@media only screen and (max-width: 56.875em) {
  #content-bottom {
    padding-left: 7.6923%;
    padding-right: 7.6923%;
  }
}
#content-bottom .panel-grid {
  margin-bottom: 20px;
}
.panel-grid h4 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  padding-top: 18px;
  border-top: 6px rgba(0,0,0,0.1) solid;
  letter-spacing: 0.1em;
}
/* 13.0 Post loops (using in Site Origin Page Builder) */
.icon-gallery,
.icon-video,
.icon-image {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  background: #cd2026;
  font-size: 20px;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 52px;
}
a.comment-number {
  margin-top: 0px;
  margin-right: 16px;
  width: 24px;
  display: inline-block;
  text-align: center;
  font-size: 11px;
  color: #1a1a1a;
  font-weight: 500;
  position: relative;
}
a.comment-number:hover {
  z-index: 10000;
  color: #fff;
}
a.comment-number:before {
  content: "\e904";
  font-family: icomoon;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  z-index: 0;
  -webkit-transform: translate(-8px, 0);
          transform: translate(-8px, 0);
}
a.comment-number:hover::before {
  z-index: -1;
  content: "\e907";
  color: #cd2026;
}
/* 13.1 Loop-1 */
.site-main article.loop-1 {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin: 0;
  padding: 28px 0;
  *zoom: 1;
  width: auto;
  max-width: 1440px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.site-main article.loop-1.sticky {
  background-color: rgba(0,0,0,0.03);
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  padding: 28px !important;
}
.site-main article.loop-1.sticky:first-child {
  border-top: 1px solid rgba(0,0,0,0.1);
}
.site-main article.loop-1.sticky .entry-header {
  margin-top: 0;
}
.site-main article.loop-1:last-child {
  border-bottom: none;
}
.site-main article.loop-1:first-child {
  padding-top: 0;
}
.site-main article.loop-1:first-child .icon-gallery,
.site-main article.loop-1:first-child .icon-video,
.site-main article.loop-1:first-child .icon-image {
  top: 10px;
}
.site-main article.loop-1 .icon-gallery,
.site-main article.loop-1 .icon-video,
.site-main article.loop-1 .icon-image {
  top: 36px;
}
.site-main article.loop-1:before,
.site-main article.loop-1:after {
  content: '';
  display: table;
}
.site-main article.loop-1:after {
  clear: both;
}
.site-main article.loop-1 .post-loop-col-1 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 45.4%;
  margin-left: 0%;
  margin-right: 4%;
}
.site-main article.loop-1 .post-loop-col-1:before,
.site-main article.loop-1 .post-loop-col-1:after {
  content: '';
  display: table;
}
.site-main article.loop-1 .post-loop-col-1:after {
  clear: both;
}
.site-main article.loop-1 .post-loop-col-1:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 44.375em) {
  .site-main article.loop-1 .post-loop-col-1 {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .site-main article.loop-1 .post-loop-col-1:first-child {
    margin-left: auto;
  }
  .site-main article.loop-1 .post-loop-col-1:last-child {
    margin-right: auto;
  }
}
.site-main article.loop-1 .post-loop-col-2 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 50.6%;
  margin-left: 0%;
  margin-right: 4%;
}
.site-main article.loop-1 .post-loop-col-2:before,
.site-main article.loop-1 .post-loop-col-2:after {
  content: '';
  display: table;
}
.site-main article.loop-1 .post-loop-col-2:after {
  clear: both;
}
.site-main article.loop-1 .post-loop-col-2:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 44.375em) {
  .site-main article.loop-1 .post-loop-col-2 {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .site-main article.loop-1 .post-loop-col-2:first-child {
    margin-left: auto;
  }
  .site-main article.loop-1 .post-loop-col-2:last-child {
    margin-right: auto;
  }
}
.site-main article.loop-1 .entry-summary {
  margin-bottom: 0;
}
.site-main article.loop-1 .entry-summary p {
  line-height: 1.7;
}
@media only screen and (min-width: 44.375em) and (max-width: 61.5625em) {
  .site-main article.loop-1 .entry-summary p {
    display: none;
  }
}
.site-main article.loop-1 .entry-header {
  margin-top: 24px;
}
@media only screen and (min-width: 61.5625em) and (max-width: 1160px) {
  .site-main article.loop-1 .entry-header {
    margin-top: -4px;
  }
}
@media only screen and (max-width: 56.875em) {
  .site-main article.loop-1 .entry-header {
    margin-left: 0;
    margin-right: 15.3846%;
  }
}
.site-main article.loop-1 .entry-header .entry-title {
  font-size: 22px;
  margin-top: 12px;
}
/* 13.2 loop-2 */
.loop-2 {
  *zoom: 1;
  width: auto;
  max-width: 1440px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 24px;
}
.loop-2:before,
.loop-2:after {
  content: '';
  display: table;
}
.loop-2:after {
  clear: both;
}
.loop-2:last-child {
  margin-bottom: 24px;
}
.loop-2 .entry-date:before {
  content: "\e906";
  font-family: icomoon;
}
.loop-2 .post-thumbnail {
  margin-top: 0;
  margin-bottom: 0;
}
.loop-2 .post-loop-col1 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 37%;
  margin-left: 0%;
  margin-right: 5%;
}
.loop-2 .post-loop-col1:before,
.loop-2 .post-loop-col1:after {
  content: '';
  display: table;
}
.loop-2 .post-loop-col1:after {
  clear: both;
}
.loop-2 .post-loop-col1:last-child {
  margin-right: 0%;
}
.loop-2 .post-loop-col2 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 58%;
  margin-left: 0%;
  margin-right: 5%;
}
.loop-2 .post-loop-col2:before,
.loop-2 .post-loop-col2:after {
  content: '';
  display: table;
}
.loop-2 .post-loop-col2:after {
  clear: both;
}
.loop-2 .post-loop-col2:last-child {
  margin-right: 0%;
}
.loop-2 .entry-header {
  margin-top: 0;
}
.loop-2 .entry-header .entry-title {
  font-size: 14px;
  margin-top: 5%;
  margin-bottom: 4px;
}
@media only screen and (min-width: 420px) and (max-width: 56.875em) {
  .loop-2 .entry-header .entry-title {
    font-size: 18px;
  }
}
/* 13.3 Loop-3 */
article {
  position: relative;
}
.loop-3 {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.loop-3 .post-thumbnail {
  margin-bottom: 28px;
}
.loop-3 .entry-header {
  margin-top: 28px;
}
.loop-3 .entry-title {
  margin-top: 12px;
}
.loop-3 .entry-summary p {
  line-height: 1.7;
}
/* 13.4 loop-4 */
.site-main article.loop-4 {
  margin-bottom: 20px;
}
.loop-4 a[rel="category tag"],
.loop-4 .sticky-post,
.loop-4 .entry-date {
  font-size: 10px;
}
.loop-4 .post-thumbnail {
  margin-bottom: 0;
}
.loop-4 .entry-header {
  background: #fff;
  margin-top: -80px;
  margin-left: 0;
  position: relative;
  width: 90%;
  padding: 21px 8px 0 0;
}
.loop-4 .entry-header .entry-title {
  font-size: 22px;
  margin-bottom: 13px;
}
.loop-4.loop-4b .entry-title {
  font-size: 22px;
  letter-spacing: 0.02em;
}
/* 13.5 loop-5 */
.site-main article.loop-5 {
  margin-bottom: 0px;
}
.loop-5 .entry-header {
  background: #fff;
  margin-top: -44px;
  margin-left: 0;
  position: relative;
  width: 83%;
  padding: 12px 8px 12px 0;
}
.loop-5 .entry-header .entry-title {
  font-size: 16px;
  line-height: 22px;
}
/* 14.0 Contact form 7 */
.wpcf7-submit {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
/* 15.0 Woocommerce  */
#container #content {
  margin-bottom: 80px;
}
@media only screen and (max-width: 56.875em) {
  #container #content {
    padding-left: 7.6923%;
    padding-right: 7.6923%;
  }
}
.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
  width: 200px;
}
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  line-height: 27px;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 0;
  padding: 1.15em 2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  font-size: 13px;
}
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  padding: 1.15em 2em;
}
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: #000;
}
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #000;
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: #cd2026;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid rgba(0,0,0,0.5);
  background-color: #fff;
  border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-top: 2px solid #000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 100%;
}
.woocommerce h1 {
  font-size: 30px;
  color: #1a1a1a;
}
.woocommerce td.label {
  width: 100px;
}
.woocommerce span.onsale {
  width: 50px;
  height: 50px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  line-height: 46px;
  font-family: 'Prompt', sans-serif;
  letter-spacing: 0.1em;
  background-color: #cd2026;
  margin: 20px !important;
}
.woocommerce h3 {
  text-align: center;
  color: #1a1a1a;
}
.woocommerce .entry-summary .price {
  text-align: left;
  font-size: 24px !important;
}
.woocommerce .price {
  text-align: center;
}
.woocommerce .price .amount {
  color: #1a1a1a;
}
.woocommerce .price ins .amount {
  color: #cd2026;
}
.woocommerce .add_to_cart_button,
.woocommerce .button.product_type_variable,
.woocommerce .button.product_type_simple {
  display: none !important;
}
.woocommerce .page-numbers {
  font-family: sans-serif;
}
.woocommerce del {
  display: inline !important;
  color: #cd2026;
}
/*# sourceMappingURL=theme-custom.css.map */