/*
    Theme Name: Garage
    Text Domain: garage
    Theme URI: http://themes.evollethemes.com/garage
    Author: Evolle
    Author URI: http://evollethemes.com/
    Description: Garage - Creative&Magazine WordPress Theme
    Version: 2
    Requires at least: 5.0
	Tested up to: 5.4
	Requires PHP: 7.0
    License: GNU General Public License v2 or later
    License http://www.gnu.org/licenses/gpl-2.0.html
    License URI: 
    Tags: one-column, two-columns, right-sidebar, full-width-template, accessibility-ready, custom-colors, custom-menu, featured-images, post-formats, sticky-post, theme-options, translation-ready
*/
/*------------------------------------------------------------------
[Table of contents]

01. RESET
02. WP-SPECIFIC
03. THEME GENERAL
04. HEADER
    a) Header General Settings
    b) Header Topbar
    b) Header Quick Buttons
    c) Header Logo Settings
    d) Header Main Menu
    e) Sticky Header
    f) Mobile Header
    g) Mobile Sidebar
    h) Trending Holder
    i) Header Color Settings
05. BLOG POSTS
06. FEATURED
07. MODULES
    a) Category Modules
    b) Carousel Modules
    c) Video Modules
    d) Instagram Modules
08. SIDEBAR
09. SINGLE
10. FOOTER
11. WOOCOMMERCE
12. MOBILE SETTINGS

/*============================================================================
  >> 01. RESET
  ============================================================================
*/
html {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height:100%;
    font-size: 100%;
}

body {
    padding: 0;
    margin: 0;
    height: 100%;
    min-height: 100%;
    font-size: 14px;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a, a:hover, a:active, a:focus {
    text-decoration:none;
}

ul, ol {
    padding:0;
    margin:0;
    list-style: none;
}


/*============================================================================
  >> 02. WP-SPECIFIC
  ============================================================================
*/
.alignnone {
    width: 100%!important;
    margin: 5px 20px 20px 0;
}

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

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

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

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

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

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

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption,
.wp-caption-text,
.sticky,
.gallery-caption,
.alignright,
.alignleft,
.aligncenter,
.screen-reader-text,
.bypostauthor {
  color: inherit;
}
.wp-caption {
    background: #fff;
    max-width: 100%; /* Image does not overflow the content area */
    text-align: center;
}

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

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

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

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

.evo-single .wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 6px 0 0;
    padding: 0 4px 5px;
    color: #999;
}

.wp-caption-text {
    display: block;
    margin: 15px 0;
    font-weight: 500;
    font-size: 12px;
    font-style: italic;
    line-height: 1.45;
    color: #999;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}
.wp-block-cover-text{
    color:#fff!important;
}
/*============================================================================
  >> 03. THEME GENERAL
  ============================================================================
*/
.evo-loader-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #111;
    top: 0;
    left: 0;
    z-index: 10;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.evo-loader {
    width: 100%;
    text-align: center;
    -webkit-align-self: center;
    align-self: center;
}

.evo-loader span {
    position: relative;
    font-size: 34px;
    font-weight: 700;
}

.evo-loader span:before {
    position: absolute;
    white-space: nowrap;
    overflow-x: hidden;
    content: attr(data-text);
    width: 0;
    color: #fff;
    -webkit-animation: fill-1 2s infinite;
    animation: fill-1 2s infinite;
}

@keyframes fill-1 {
  50%   { width: 100%; }
  100%  { width: 0%;   }
}

.lazy-thumb {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.lazy-show {
    opacity: 1;
}

.evo-desktop-hidden {
    display: none;
}

.evo-main {
    position: relative;
}

.post-overlay {
    background-size: cover;
    background-position: 50% 50%;
}

.evo-decor-border-top {
    position: relative;
    margin: auto;
    width: 50%;
    height: 50px;
    border: 4px solid #fff;
    border-bottom: none;
    margin-bottom: 50px;
}

.evo-decor-border-bottom {
    position: relative;
    margin: auto;
    width: 50%;
    height: 50px;
    border: 4px solid #fff;
    border-top: none;
    margin-top: 50px;
}

.evo-loading {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-video-module .evo-loading {
    background-color: rgba(0, 0, 0, 0.7);
}

.evo-loading.show {
    opacity: 1;
    visibility: visible;
}

.evo-load-content {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 50px;
}

.evo-slider:after, .evo-loading:after, .evo-load-content:after {
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    left: 0;
    right: 0;
    top: 150px;
    margin:auto;
    border-radius: 50%;
    border: 5px solid #eee;
    border-top: 5px solid #111;
    z-index: 1;
    -webkit-animation: spinner 1s linear infinite;
    -moz-animation: spinner 1s linear infinite;
    -ms-animation: spinner 1s linear infinite;
    -o-animation: spinner 1s linear infinite;
    animation: spinner 1s linear infinite;
}

.evo-video-module .evo-loading:after {
    border: 5px solid #666;
    border-top: 5px solid #fff;
}

.evo-load-content:after {
    top: 15px;
}

.evo-slider {
  max-width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.evo-slider > * {
  opacity: 0;
  -moz-transition: opacity 0.25s linear;
  -o-transition: opacity 0.25s linear;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

.evo-slider .slick-dots {
    opacity: 1;
}

.evo-slider.slick-initialized {
  height: auto;
  overflow: visible;
}

.evo-slider.slick-initialized .slick-list, .evo-slider.slick-initialized > * {
  opacity: 1;
}

.evo-slider.slick-initialized:after {
  display: none;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.slick-dots {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 2px;
}

.slick-dots li button {
    display: block;
    text-indent: -9999px;
    border: 0;
    width: 13px;
    height: 13px;
    background-color: #eee;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    outline: none;
    border: 3px solid #fff;
    padding: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.slick-dots li.slick-active button {
    width: 13px;
    height: 13px;
    background-color: #fff;
    border: 3px solid #111;
}

.evo-slider .slick-arrow {
    position: absolute;
    font-size: 0;
    width: 30px;
    height: 47px;
    bottom: 50%;
    left: -5px;
    border:none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    z-index: 1;
    outline: none;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-slider:hover .slick-arrow {
    opacity: 1;
}

.evo-slider .slick-arrow:before {
    position: relative;
    display: block;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f053";
    font-size: 14px;
    width: 30px;
    height: 47px;
    text-align: center;
    line-height: 48px;
    background-color: #fff;
    color: #111;
}

.evo-slider .slick-next {
    left: initial;
    right: -5px;
}

.evo-slider .slick-next:before {
    content: "\f054";
}

.evo-slider[data-dots="true"] .slick-arrow {
    bottom: 50%;
}

.arrow-normal .slick-arrow {
    width: 47px;
    left: 20px;
}

.arrow-normal .evo-slider .slick-next {
    left: initial;
    right: 20px;
}

.arrow-normal .slick-arrow:before {
    width: 47px;
    line-height: 47px;
}

.arrow-transparent .slick-arrow:before {
    background-color: transparent;
    color: #fff;
    border:2px solid #fff;
}

.evo-row {
    margin-left: -15px;
    margin-right: -15px;
}

.evo-flex {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.evo-column-2 .evo-post {
    display: inline-block;
    float: left;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.evo-column-3 .evo-post {
    display: inline-block;
    float: left;
    width: 33.333%;
    padding-right: 15px;
    padding-left: 15px;
}

.evo-column-4 .post {
    display: inline-block;
    float: left;
    width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

.evo-page-title {
    position: relative;
    display: inline-block;
    width: 100%;
    padding:30px 0;
    border-bottom: 2px solid #eee;
    text-align: center;
    margin-bottom: 30px;
}

.page .entry-content p {
    line-height: 30px;
}

.evo-archive-header .evo-page-title {
    text-align: left;
    padding:30px 0;
}

.evo-archive-header span {
    display: inline-block;
    float: left;
    text-transform: uppercase;
    font-weight: 700;
    color: #d2d2d2;
}

.evo-archive-header h1 {
    display: inline-block;
    width: 100%;
    float: left;
    font-size: 34px;
    margin: 5px 0 0;
}

.category .evo-archive-header .evo-page-title {
    text-align: center;
    padding: 50px 0;
    margin-bottom: 50px;
}

.category .evo-archive-header h1 {
    font-size: 42px;
}

.category .evo-archive-header span, .category .evo-archive-header .evo-total-posts {
    float: none;
}

.evo-archive-header .evo-total-posts {
    position: relative;
    display: inline-block;
    float: left;
    font-size: 13px;
    font-weight: 400;
    border-left: 1px solid #eee;
    color: #d2d2d2;
    margin-left: 13px;
    padding-left: 12px;
}

.evo-archive-header .evo-archive-filter {
    position: relative;
    display: inline-block;
    float: right;
    width: 180px;
    margin-top: -47px;
}

.evo-archive-header .evo-archive-filter > a {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #ccc;
    border: 1px solid #ddd;
    padding: 0 12px;
    border-radius: 2px;
}

.evo-archive-header .evo-archive-filter > a i {
    display: inline-block;
    float: right;
    margin-top: 12px;
}

.evo-archive-header .evo-archive-filter .dropdown-menu {
    width: 180px;
    margin: -1px 0 0;
    border: 1px solid #ddd;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    -webkit-border-radius: 0;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius: 1px;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.evo-archive-header .evo-archive-filter .dropdown-menu ul li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #ccc;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-archive-header .evo-archive-filter .dropdown-menu ul li a:hover {
    color: #111;
}

.evo-archive-filter.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.evo-page-not-found {
    position: relative;
    margin-bottom:50px;
    display: inline-block;
    width: 100%;
    padding:50px;
    background-color: #f8f8f8;
}

.evo-page-not-found h2 {
    font-weight: 700;
    margin-top: 0;
}

.evo-page-not-found span {
    font-size: 13px;
}

.evo-page-not-found .evo-search-form {
    position: relative;
    margin-top: 20px;
}

.evo-page-not-found .evo-search-form .search_input {
    font-size: 14px;
    font-weight: 500;
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    border: 1px solid #ddd;
    border-radius: 2px;
    color: #111;
    background-color: #fff;
}

.evo-page-not-found .evo-search-form .search_input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #555;
}
.evo-page-not-found .evo-search-form .search_input::-moz-placeholder { /* Firefox 19+ */
  color: #555;
}
.evo-page-not-found .evo-search-form .search_input:-ms-input-placeholder { /* IE 10+ */
  color: #555;
}
.evo-page-not-found .evo-search-form .search_input:-moz-placeholder { /* Firefox 18- */
  color: #555;
}

.evo-page-not-found .evo-search-form button {
    position: absolute;
    display: inline-block;
    right: 0;
    top: 0;
    border: 0;
    background-color: transparent;
    width: 45px;
    height: 45px;
}

.evo-404-page {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #222;
    color: #fff;
}

body.error404 {
    background-color: #222;
}

.evo-404-body {
    position: relative;
    width: 100%;
    left: 0;
    text-align: center;
    color: #fff;
    padding: 100px 0;
    z-index: 1;
    background-color: #222;
}

.evo-404-body h1 {
    position: relative;
    display: inline-block;
    font-size: 150px;
    font-weight: 900;
    overflow: hidden;
}

.evo-404-body h1:before {
    position: absolute;
    content: attr(data-text);
    color: #fff;
    animation-name: glitch-animation-1;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: reverse-alternate;
    top: 0;
    left: 3px;
    text-shadow: -2px 0 red;
    overflow: hidden;
}

.evo-404-body h1:after {
    position: absolute;
    content: attr(data-text);
    color: #fff;
    animation-name: glitch-animation-2;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: reverse-alternate;
    top: 0;
    left: 3px;
    text-shadow: -2px 0 blue;
    overflow: hidden;
}

.evo-404-body .evo-message-one {
    position: relative;
    display: inline-block;
    width: 100%;
    float: left;
    margin-top: -10px;
    margin-bottom: 30px;
    text-align: center;
}

.evo-404-body span {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
}

.evo-message {
    display: inline-block;
    width: 100%;
}

.evo-message p {
    display: inline-block;
    font-size: 13px;
    max-width: 600px;
    color: #999;
}

@keyframes glitch-animation-1 {
  0% {
    clip: rect(79px, 350px, 95px, 30px);
  }
  5% {
    clip: rect(96px, 350px, 1px, 30px);
  }
  10% {
    clip: rect(55px, 350px, 124px, 30px);
  }
  15% {
    clip: rect(39px, 350px, 132px, 30px);
  }
  20% {
    clip: rect(4px, 350px, 39px, 30px);
  }
  25% {
    clip: rect(5px, 350px, 36px, 30px);
  }
  30% {
    clip: rect(59px, 350px, 82px, 30px);
  }
  35% {
    clip: rect(28px, 350px, 64px, 30px);
  }
  40% {
    clip: rect(6px, 350px, 63px, 30px);
  }
  45% {
    clip: rect(113px, 350px, 128px, 30px);
  }
  50% {
    clip: rect(83px, 350px, 57px, 30px);
  }
  55% {
    clip: rect(122px, 350px, 32px, 30px);
  }
  60% {
    clip: rect(142px, 350px, 109px, 30px);
  }
  65% {
    clip: rect(39px, 350px, 113px, 30px);
  }
  70% {
    clip: rect(11px, 350px, 6px, 30px);
  }
  75% {
    clip: rect(65px, 350px, 10px, 30px);
  }
  80% {
    clip: rect(16px, 350px, 123px, 30px);
  }
  85% {
    clip: rect(82px, 350px, 52px, 30px);
  }
  90% {
    clip: rect(52px, 350px, 138px, 30px);
  }
  95% {
    clip: rect(49px, 350px, 42px, 30px);
  }
  100% {
    clip: rect(31px, 350px, 77px, 30px);
  }
}
@keyframes glitch-animation-2 {
  0% {
    clip: rect(59px, 350px, 85px, 30px);
  }
  5% {
    clip: rect(138px, 350px, 62px, 30px);
  }
  10% {
    clip: rect(92px, 350px, 91px, 30px);
  }
  15% {
    clip: rect(62px, 350px, 29px, 30px);
  }
  20% {
    clip: rect(25px, 350px, 2px, 30px);
  }
  25% {
    clip: rect(16px, 350px, 100px, 30px);
  }
  30% {
    clip: rect(86px, 350px, 108px, 30px);
  }
  35% {
    clip: rect(50px, 350px, 132px, 30px);
  }
  40% {
    clip: rect(56px, 350px, 106px, 30px);
  }
  45% {
    clip: rect(149px, 350px, 80px, 30px);
  }
  50% {
    clip: rect(128px, 350px, 61px, 30px);
  }
  55% {
    clip: rect(128px, 350px, 115px, 30px);
  }
  60% {
    clip: rect(106px, 350px, 13px, 30px);
  }
  65% {
    clip: rect(94px, 350px, 138px, 30px);
  }
  70% {
    clip: rect(20px, 350px, 57px, 30px);
  }
  75% {
    clip: rect(5px, 350px, 110px, 30px);
  }
  80% {
    clip: rect(35px, 350px, 128px, 30px);
  }
  85% {
    clip: rect(63px, 350px, 90px, 30px);
  }
  90% {
    clip: rect(97px, 350px, 34px, 30px);
  }
  95% {
    clip: rect(148px, 350px, 3px, 30px);
  }
  100% {
    clip: rect(42px, 350px, 90px, 30px);
  }
}

.margin-top {
    margin-top: 50px;
}

.module-margin-top {
    margin-top: 50px;
}

body.category .margin-top {
    margin-top: 0;
}

/*============================================================================
  >> 04. HEADER
  ============================================================================
*/
.evo-header {
    position: relative;
}

/*a) Header General Settings*/
.evo-header-background {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 35px;
    background-color: #01f4c8;
    background-size: cover;
    background-position: 50% 50%;
}

.evo-menu > li.menu-item-has-children > a:before, .evo-menu > li.mega-menu > a:before {
    position: relative;
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-size: 11px;
    float: right;
    content: "\f107";
    margin-left: 7px;
}

.evo-menu .sub-menu li.menu-item-has-children > a:before {
    position: relative;
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-size: 11px;
    float: right;
    content: "\f105";
}

.evo-menu li:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

/*b) Header Topbar*/
.evo-topbar {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 52px;
    line-height: 52px;
    background-color: #111;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.evo-topbar-menu {
    position: relative;
    text-align: center;
}

.evo-topbar-menu ul {
    display: inline-block;
}

.evo-topbar-menu ul li {
    position: relative;
    display: inline-block;
    float: left;
}

.evo-topbar-menu ul li~li {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.evo-topbar-menu ul li a {
    display: inline-block;
    float: left;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    padding: 0 20px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-topbar-menu ul li .sub-menu {
    position: absolute;
    width: 220px;
    top: 100%;
    left: 0;
    background-color: #111;
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -webkit-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -moz-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -ms-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.evo-topbar-menu ul li .sub-menu li {
    width: 100%;
}

.evo-topbar-menu ul li .sub-menu li~li {
    border:0;
}

.evo-topbar-menu ul li .sub-menu li a {
    display: block;
    width: 100%;
    font-weight: 500;
    text-align: left;
    line-height: 40px;
}

.evo-topbar-menu ul li .sub-menu li .sub-menu {
    top: 0;
    left: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/*b) Header Quick Buttons*/
.evo-quick-buttons {
    position: absolute;
    font-size: 16px;
    height: 51px;
    top: 0;
}

.evo-quick-left {
    left: 0;
}

.evo-quick-right {
    right: 0;
}

.evo-quick-buttons > * {
    display: inline-block;
    float: left;
    min-width: 52px;
    text-align: center;
}

.evo-quick-buttons > *~* {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.evo-quick-buttons > * > a {
    display: block;
    cursor: pointer;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-social-dropdown-icon {
    font-size: 18px;
}

.evo-social-dropdown {
    position: absolute;
    background-color: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 20px;
    line-height: initial;
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -webkit-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -moz-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -ms-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    opacity: 0;
    pointer-events: none;
}

.evo-social-button:hover .evo-social-dropdown {
    opacity: 1;
    pointer-events: auto;
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.evo-social-dropdown ul li {
    display: inline-block;
    margin-bottom: 5px;
}

.evo-social-dropdown ul li a {
    display: inline-block;
    font-size: 13px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    background-color: #333;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-social-dropdown ul li a.facebook:hover, .evo-social-media-widget ul li a.facebook .evo-social-icon {
    background-color: #3b579d!important;
}

.evo-social-dropdown ul li a.twitter:hover, .evo-social-media-widget ul li a.twitter .evo-social-icon {
    background-color: #1da1f2!important;
}

.evo-social-dropdown ul li a.google:hover, .evo-social-media-widget ul li a.google .evo-social-icon {
    background-color: #e33e2b!important;
}

.evo-social-dropdown ul li a.pinterest:hover, .evo-social-media-widget ul li a.pinterest .evo-social-icon {
    background-color: #bd081c!important;
}

.evo-social-dropdown ul li a.instagram:hover, .evo-social-media-widget ul li a.instagram .evo-social-icon {
    background-color: #c72b96!important;
}

.evo-social-dropdown ul li a.linkedin:hover, .evo-social-media-widget ul li a.linkedin .evo-social-icon {
    background-color: #007bb6!important;
}

.evo-social-dropdown ul li a.tumblr:hover, .evo-social-media-widget ul li a.tumblr .evo-social-icon {
    background-color: #3d5a70!important;
}

.evo-social-dropdown ul li a.flickr:hover, .evo-social-media-widget ul li a.flickr .evo-social-icon {
    background-color: #ff0080!important;
}

.evo-social-dropdown ul li a.behance:hover, .evo-social-media-widget ul li a.behance .evo-social-icon {
    background-color: #005cff!important;
}

.evo-social-dropdown ul li a.dribbble:hover, .evo-social-media-widget ul li a.dribbble .evo-social-icon {
    background-color: #e04c86!important;
}

.evo-social-dropdown ul li a.deviantart:hover, .evo-social-media-widget ul li a.deviantart .evo-social-icon {
    background-color: #01d13c!important;
}

.evo-social-dropdown ul li a.youtube:hover, .evo-social-media-widget ul li a.youtube .evo-social-icon {
    background-color: #ee1c1b!important;
}

.evo-social-dropdown ul li a.vimeo:hover, .evo-social-media-widget ul li a.vimeo .evo-social-icon {
    background-color: #1ab7ea!important;
}

.evo-social-dropdown ul li a.snapchat:hover, .evo-social-media-widget ul li a.snapchat .evo-social-icon {
    background-color: #fffc00!important;
    color: #111;
}

.evo-social-dropdown ul li a.whatsapp:hover, .evo-social-media-widget ul li a.whatsapp .evo-social-icon {
    background-color: #44e561!important;
}

.evo-subscribe-button {
    margin-top: 15px;
}

.evo-subscribe-button a {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #666;
    padding: 10px 0;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-subscribe-button a:hover {
    border-color: #fff;
}

.evo-search-holder {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 100%;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: #111;
    pointer-events: none;
    transition: transform 0.6s;
    transition-delay: 0.7s;
    transition-timing-function: cubic-bezier(.75,.12,.43,.98);
}

.evo-search-holder:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #222;
    transition: transform 0.7s;
    transition-timing-function: cubic-bezier(.75,.12,.43,.98);
    z-index: 1;
}

.evo-search-holder.evo-search-open {
    pointer-events: auto;
    transform: translate3d(-100%,0,0);
    transition-delay: 0s;
}

.evo-search-holder.evo-search-open:after {
    transform: translate3d(100%,0,0);
    transition-delay: 0.6s;
}

.evo-search-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    top: 0;
    left: 0;
}

.evo-search-inner {
    -webkit-align-self: center;
    align-self: center;
    width: 100%;
}

.evo-search-form .search_input {
    font-size: 70px;
    font-weight: 700;
    height: 60px;
    border-radius: 0;
    border: 0;
    color: #fff;
    border-bottom: 2px solid #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    padding: 50px 0;
}

.evo-search-form .search_input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #555;
}
.evo-search-form .search_input::-moz-placeholder { /* Firefox 19+ */
  color: #555;
}
.evo-search-form .search_input:-ms-input-placeholder { /* IE 10+ */
  color: #555;
}
.evo-search-form .search_input:-moz-placeholder { /* Firefox 18- */
  color: #555;
}

.evo-search-form button {
    display: none;
}

.evo-search-message {
    position: relative;
    display: inline-block;
    width: 100%;
    color: #fff;
    margin: 10px 0 0;
}

.evo-search-tags {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 150px 0 0;
}

.evo-search-tags ul li {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.evo-search-tags ul li a {
    display: inline-block;
    font-weight: 500;
    color: #666;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-search-tags ul li a:hover {
    color: #fff;
}

#evo-search-close {
    position: absolute;
    right: 50px;
    top: 50px;
    z-index: 1;
    width: 50px;
    height: 51px;
    border: 2px solid #999;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    padding-top: 4px;
    cursor: pointer;
}

.evo-close {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    cursor: pointer;
}

.evo-close:before, .evo-close:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background-color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.evo-close:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#evo-search-close:hover .evo-close:before, #evo-search-close:hover  .evo-close:after {
    background-color: #999;
}

/*c) Header Logo Settings*/
.evo-logo-header {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.evo-brand-logo {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.evo-brand-logo a img {
    max-height: 57px;
}

.evo-logo-text {
    font-size: 70px;
    font-weight: 900;
    color: #111;
}

/*d) Header Main Menu*/
.evo-main-menu {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 63px;
    line-height: 63px;
    text-align: center;
    border:2px solid #111;
    background-color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 2;
}

.evo-main-menu:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #111;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    z-index: -1;
}

.evo-sticky-inner .evo-main-menu:before {
    background-color: transparent;
}

.evo-main-menu:hover:before {
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.evo-main-menu ul {
    display: inline-block;
}

.evo-main-menu ul li {
    position: relative;
    display: inline-block;
    float: left;
}

.evo-main-menu ul li.mega-menu {
    position: static;
}

.evo-main-menu > ul > li > a {
    display: inline-block;
    float: left;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    padding:0 15px;
    line-height: 60px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-main-menu:hover > ul > li > a {
    color: #fff;
}

.evo-main-menu .evo-child-menu {
    position: absolute;
    width: 220px;
    background-color: #111;
    left: -5px;
    top: 100%;
    padding: 10px 0;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    pointer-events: none;
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -webkit-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -moz-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -ms-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition: transform 0.3s ease 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.evo-main-menu .evo-child-menu .evo-child-menu {
    top: 0;
    left: 100%;
    border-left:1px solid rgba(255, 255, 255, 0.2);;
}

.evo-main-menu ul li:hover > .evo-child-menu {
    opacity: 1;
    pointer-events: auto;
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.evo-main-menu .evo-child-menu ul {
    display: block;
}

.evo-main-menu .evo-child-menu ul li {
    display: inline-block;
    width: 100%;
    padding:0 20px;
}

.evo-main-menu .evo-child-menu ul li a {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    line-height: 40px;
    color: #fff;
    text-align: left;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-main-menu > ul > li > .evo-mega-menu-content {
    position: absolute;
    width: 220px;
    top: 100%;
    min-height: 285px;
    background-color: #111;
    border-top:1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), left 0s 0.3s;
    -moz-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), left 0s 0.3s;
    -ms-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), left 0s 0.3s;
    -o-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), left 0s 0.3s;
    transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), left 0s 0.3s;
    left:-999em;
    line-height: initial;
}

.evo-main-menu > ul > li.mega-menu > .evo-mega-menu-content {
    width: 1140px;
}

.evo-main-menu > ul > li:hover > .evo-mega-menu-content {
    opacity: 1;
    pointer-events: auto;
    left: -2px;
    -webkit-transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, left 0s 0s;
    -moz-transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, left 0s 0s;
    -ms-transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, left 0s 0s;
    -o-transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, left 0s 0s;
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, left 0s 0s;
}

.evo-main-menu .mega-menu .evo-mega-menu-content .evo-mega-category.three-menu {
    position: absolute;
    width: 830px;
    top: 20px;
    right: 20px;
    background-color: #111;
}

.evo-main-menu .evo-mega-category ul {
    display: inline-block;
    width: 100%;
    padding:20px 0;
}

.evo-main-menu .evo-mega-category ul li {
    float: none;
    margin: 0 10px;
    width: 245px;
    vertical-align: top;
}

.evo-main-menu .mega-menu .evo-mega-menu-content .sub-menu {
    float: left;
    left: 20px;
    width: 270px;
    padding: 10px 20px 20px;
}

.evo-main-menu .mega-menu .evo-mega-menu-content .sub-menu .evo-mega-category {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-main-menu .mega-menu .evo-mega-menu-content .sub-menu > li.active .evo-mega-category {
    visibility: visible;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    opacity: 1;
    pointer-events: auto;
}

.evo-main-menu .evo-mega-menu-content .sub-menu > li {
    display: inline-block;
    width: 100%;
    line-height: initial;
}

.evo-main-menu .evo-mega-menu-content .sub-menu > li > a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    padding: 10px 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-main-menu .evo-mega-menu-content .evo-mega-category-content li, .evo-main-menu .evo-mega-menu-content .sub-menu li.mega-menu .evo-mega-category-content li {
    opacity: 0;
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.evo-main-menu .evo-mega-menu-content .evo-mega-category-content li:nth-child(1), .evo-main-menu .evo-mega-menu-content .sub-menu li.mega-menu .evo-mega-category-content li:nth-child(1) {
    transition-delay: 0.05s
}

.evo-main-menu .evo-mega-menu-content .evo-mega-category-content li:nth-child(2), .evo-main-menu .evo-mega-menu-content .sub-menu li.mega-menu .evo-mega-category-content li:nth-child(2) {
    transition-delay: 0.1s
}

.evo-main-menu .evo-mega-menu-content .evo-mega-category-content li:nth-child(3), .evo-main-menu .evo-mega-menu-content .sub-menu li.mega-menu .evo-mega-category-content li:nth-child(3) {
    transition-delay: 0.15s
}

.evo-main-menu .evo-mega-menu-content .evo-mega-category-content li:nth-child(4) {
    transition-delay: 0.2s
}

.evo-main-menu .mega-menu:hover .evo-mega-menu-content .evo-mega-category-content li, .evo-main-menu .evo-mega-menu-content .sub-menu li.mega-menu.active .evo-mega-category-content li {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.evo-mega-menu-border {
    position: relative;
    width: 100%;
    left: 0;
}

.evo-mega-menu-border:before {
    display: block;
    margin: 0 0 0 -1px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 2px;
    height: 18px;
    background: #fff;
    content: '';
    transition: transform 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), left 0s 0.3s;
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

.evo-main-menu .evo-mega-menu-content .evo-entry-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.evo-main-menu .evo-mega-menu-content .evo-entry-title a {
    color: #fff;
}

.evo-main-menu .evo-mega-menu-content .evo-post-meta, .evo-main-menu .evo-mega-menu-content .evo-post-meta > * {
    line-height: initial;
}

.evo-main-menu .evo-mega-menu-content .evo-post-meta > *~*:before, .evo-main-menu .evo-mega-menu-content .evo-post-meta a {
    color: #777;
}

.evo-main-menu .evo-mega-menu-content .evo-post-meta .fa-comment:before {
    background-color: #777;
}

/*e) Sticky Header*/
.evo-sticky-header {
    position: fixed;
    width: 100%;
    height: 53px;
    line-height: 53px;
    top: 0;
    left: 0;
    background-color: #111;
    z-index: 3;
    transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.wpadminbar-open .evo-sticky-header {
    top: 32px;
}

.evo-sticky-header.stuck {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    box-shadow: 0 1px 4px 1px rgba(0,0,0,0.3);
}

.evo-sticky-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 53px;
    padding:0 15px;
}

.evo-sticky-menu {
    height: 53px;
}

.evo-sticky-header.read-menu-open .evo-sticky-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.evo-sticky-menu .evo-main-menu {
    height: 53px;
    line-height: 53px;
    border:0;
    background-color: transparent;
}

.evo-sticky-menu .evo-main-menu > ul > li > a {
    line-height: 53px;
    color: #fff;
}

.evo-sticky-menu .evo-main-menu > ul > li~li {
    border-left:1px solid rgba(255, 255, 255, 0.1);
}

.evo-sticky-menu .evo-main-menu > ul > li.mega-menu > .evo-mega-menu-content {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.evo-sticky-logo {
    position: absolute;
    left: 15px;
    z-index: 1;
    max-height: 53px;
}

.evo-sticky-logo .evo-logo-text {
    font-size: 34px;
    color: #fff;
}

.evo-sticky-logo img {
    display: inline-block;
    max-height: 25px;
}

.evo-sticky-buttons {
    position: absolute;
    right: 0;
    z-index: 1;
}

.evo-sticky-single {
    position: absolute;
    width: 100%;
    height: 53px;
    top: 0;
    left: 0;
    padding:0 15px;
}

.evo-reading-post {
    position: relative;
    display: inline-block;
    float: left;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
}

.evo-reading-post .evo-show-read {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 53px;
    overflow: hidden;
    left: 20px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.evo-reading-post .evo-show-read a {
    position: relative;
    top: 6px;
    color: #fff;
}

.evo-reading-post .evo-hide-read {
    display: inline-block;
    float: left;
    cursor: pointer;
    margin-right: 10px;
    height: 53px;
    width: 30px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.evo-reading-post .evo-hide-read a {
    position: relative;
    top: 21px;
}

.evo-reading-post .evo-hide-read a span, .evo-reading-post .evo-close:before, .evo-reading-post .evo-close:after {
    background-color: #fff;
}

.evo-reading-post > span {
    display: inline-block;
    font-size: 13px;
    color: #757575;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.evo-reading-post .evo-entry-title {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    margin-left: 5px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.read-menu-open .evo-reading-post > span, .read-menu-open .evo-reading-post .evo-entry-title, .read-menu-open .evo-reading-buttons, .read-menu-open .evo-hide-read {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.read-menu-open .evo-reading-post .evo-show-read {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.evo-reading-buttons {
    display: inline-block;
    float: right;
    height: 53px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.evo-reading-buttons > * {
    position: relative;
    display: inline-block;
}

.evo-reading-buttons > *~*:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 23px;
    background-color: rgba(255, 255, 255, 0.2);
    top: 15px;
    left: -5px;
}

.evo-reading-buttons > * > a {
    display: inline-block;
    float: left;
    color: #757575;
    font-size: 12px;
    font-weight: 700;
    padding:0 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-reading-prev span {
    margin-left: 7px;
}

.evo-reading-next span {
    margin-right: 7px;
}

.evo-reading-buttons > * > a i {
    position: relative;
    font-size: 12px;
    color: #fff;
    top: 1px;
}

.evo-reading-buttons > * > a:hover {
    color: #fff;
}

.single .evo-sticky-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-single-progress {
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #333;
}

.evo-single-progress span {
    position: absolute;
    height: 2px;
    bottom: -1px;
    left: 0;
    background-color: #444;
}

/*f) Mobile Header*/
.evo-mobile-header {
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #111;
    z-index: 2;
}

.evo-mobile-header .evo-brand-logo {
    margin:0 15px;
}

.evo-mobile-header .evo-logo-text {
    font-size: 32px;
    color: #fff;
}

.evo-mobile-header .evo-quick-buttons {
    position: relative;
    display: inline-block;
    float: right;
}

.evo-mobile-header .evo-quick-buttons > * {
    min-width: 60px;
}

.evo-mobile-header .evo-navicon a {
    width: 60px;
    height: 60px;
    padding-top: 25px;
}

.evo-navicon a {
    position: relative;
    display: block;
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    cursor: pointer;
    padding-top: 20px;
}

.evo-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    margin:auto;
    background-color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.evo-hamburger span:nth-child(2) {
    margin: 3px auto;
}

/*g) Mobile Sidebar*/
.evo-mobile-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #111;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    top: 0;
    left: 0;
}

.evo-mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.evo-scrollbar {
    width: 100%;
    height: 100%;
}

.evo-mobile-close {
    position: absolute;
    width: 53px;
    height: 53px;
    right: 4px;
    top: 0;
    text-align: center;
    padding-top: 6px;
}

.evo-mobile-nav-header {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.evo-mobile-logo {
    display: inline-block;
    padding-left: 15px;
}

.evo-mobile-logo img {
    display: inline-block;
    max-height: 30px;
}

.evo-mobile-logo .evo-logo-text {
    font-size: 32px;
    color: #fff;
}

.evo-mobile-nav-main {
    position: relative;
    display: inline-block;
    width: 100%;
    margin:50px 0;
    padding:0 20px;
}

.evo-mobile-menu > ul > li {
    position: relative;
}

.evo-mobile-menu > ul > li > a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 5px 0;
}

.evo-mobile-menu > ul > li .dropdown-toggle {
    position: relative;
    display: inline-block;
    font-size: 11px;
    margin-left: 15px;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    vertical-align: top;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.evo-mobile-menu .sub-menu {
    display: none;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.evo-mobile-menu .sub-menu > li > a {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #989898;
    padding:5px 0;
}

.evo-mobile-menu .sub-menu > li .dropdown-toggle {
    margin-top: 5px;
}

.evo-mobile-social {
    position: relative;
    display: inline-block;
    width: 100%;
    padding:30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.evo-mobile-social ul {
    display: inline-block;
    width: 100%;
}

.evo-mobile-social ul li {
    display: inline-block;
}

.evo-mobile-social ul li a {
    display: block;
    font-size: 12px;
    color: #fff;
    width: 35px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
}

.evo-mobile-copyright {
    position: relative;
    display: inline-block;
    width: 100%;
    padding:20px;
}

.evo-mobile-copyright span {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 12px;
    color: #fff;
}

/*h) Trending Holder*/
.evo-trending-holder {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 100%;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: #111;
    pointer-events: none;
    transition: transform 0.6s;
    transition-delay: 0.7s;
    transition-timing-function: cubic-bezier(.75,.12,.43,.98);
    z-index: 3;
}

.evo-trending-holder:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #222;
    transition: transform 0.7s;
    transition-timing-function: cubic-bezier(.75,.12,.43,.98);
    z-index: 1;
}

.evo-trending-holder.evo-trending-open {
    pointer-events: auto;
    transform: translate3d(-100%,0,0);
    transition-delay: 0s;
}

.evo-trending-holder.evo-trending-open:after {
    transform: translate3d(100%,0,0);
    transition-delay: 0.6s;
}

.evo-trending-header {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 53px;
    line-height: 53px;
    padding:0;
    border-bottom: 1px solid #333;
    z-index: 1;
}

.evo-trending-title {
    display: inline-block;
    float: left;
    font-weight: 600;
    padding-left: 15px;
    color: #fff;
}

.evo-trending-close {
    display: inline-block;
    float: right;
    height: 53px;
    padding-top: 6px;
    width: 53px;
    text-align: center;
    border-left: 1px solid #333;
    cursor: pointer;
}

.evo-trending-close .evo-close:before, .evo-trending-close .evo-close:after {
    background-color: #fff;
}

.evo-trending-posts {
    position: relative;
    max-width: 1400px;
    margin:auto;
    padding:0 15px;
}

.evo-trending-wrap {
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
    top: 0;
}

.evo-trending-body {
    display: table-cell;
    vertical-align: middle;
}

.evo-trending-posts .evo-post-image {
    display: inline-block;
    float: left;
    width: 65%;
}

.evo-trending-posts .evo-post-body {
    display: inline-block;
    float: left;
    width: 30%;
    padding-left: 35px;
    padding-top: 50px;
}

.evo-trending-posts .evo-entry-title {
    font-size: 32px;
    margin: 0;
}

.evo-trending-posts .evo-entry-title a, .evo-trending-posts .evo-author > a {
    color: #fff;
}

.evo-trending-posts .entry-content p {
    font-size: 13px;
    line-height: 28px;
    color: #555;
}

.evo-trending-posts .evo-read-more a {
    color: #fff;
}

.evo-trending-posts .evo-slider .slick-arrow {
    right: 53px;
    left: initial;
    top: 0;
    opacity: 1;
    width: 53px;
    height: 52px;
    opacity: 0;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}

.evo-trending-holder.evo-trending-open .evo-slider .slick-arrow {
    opacity: 1;
    position: fixed;
}

.evo-trending-posts .evo-slider .slick-arrow.slick-prev {
    right: 106px;
}

.evo-trending-posts .evo-slider .slick-arrow.slick-prev:before {
    border-right: 1px solid #333;
}

.evo-trending-posts .evo-slider .slick-arrow:before {
    color: #fff;
    background-color: #111;
    width: 53px;
    height: 52px;
    line-height: 55px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/*i) Header Color Settings*/
.evo-topbar-light .evo-topbar, .evo-topbar-light .evo-topbar-menu ul li .sub-menu, .evo-topbar-light .evo-social-dropdown, .evo-mobile-light .evo-mobile-header, .evo-mobile-light .evo-mobile-nav, .evo-sticky-light .evo-sticky-header, .evo-sticky-light .evo-sticky-header .evo-social-dropdown, .evo-sticky-light .evo-sticky-header .evo-main-menu .evo-child-menu, .evo-sticky-light .evo-sticky-header .evo-main-menu > ul > li.mega-menu > .evo-mega-menu-content, .evo-sticky-light .evo-sticky-header .evo-main-menu .mega-menu .evo-mega-menu-content .evo-mega-category.three-menu {
    background-color: #fff;
}

.evo-sticky-light .evo-sticky-header .evo-social-dropdown, .evo-sticky-light .evo-sticky-header .evo-main-menu .evo-child-menu, .evo-sticky-light .evo-sticky-header .evo-main-menu > ul > li.mega-menu > .evo-mega-menu-content {
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
}

.evo-mobile-light .evo-mobile-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.evo-topbar-light .evo-quick-buttons > * > a, .evo-topbar-light .evo-topbar-menu ul li a, .evo-mobile-light .evo-mobile-header .evo-logo-text, .evo-mobile-light .evo-mobile-header .evo-quick-buttons > * > a, .evo-mobile-light .evo-mobile-logo .evo-logo-text, .evo-mobile-light .evo-mobile-menu > ul > li > a, .evo-mobile-light .evo-mobile-copyright span, .evo-sticky-light .evo-sticky-header  .evo-sticky-logo .evo-logo-text, .evo-sticky-light .evo-sticky-header .evo-reading-post .evo-entry-title, .evo-sticky-light .evo-sticky-header .evo-reading-buttons > * > a i, .evo-sticky-light .evo-sticky-header .evo-quick-buttons > * > a, .evo-sticky-light .evo-sticky-header .evo-reading-buttons > * > a:hover, .evo-sticky-light .evo-sticky-header .evo-sticky-menu .evo-main-menu > ul > li > a, .evo-sticky-light .evo-sticky-header .evo-main-menu .evo-child-menu ul li a, .evo-sticky-light .evo-sticky-header .evo-main-menu .mega-menu .evo-mega-menu-content .sub-menu > li > a, .evo-sticky-light .evo-sticky-header .evo-main-menu .evo-mega-menu-content .evo-entry-title a {
    color: #111;
}

.evo-topbar-light .evo-quick-buttons > *~*, .evo-topbar-light .evo-topbar-menu ul li~li, .evo-topbar-light .evo-topbar-menu ul li .sub-menu, .evo-topbar-light .evo-topbar-menu ul li .sub-menu li .sub-menu, .evo-topbar-light .evo-social-dropdown, .evo-mobile-light .evo-mobile-header .evo-quick-buttons > *~*, .evo-mobile-light .evo-mobile-nav-header, .evo-mobile-light .evo-mobile-social, .evo-sticky-light .evo-sticky-header .evo-reading-post, .evo-sticky-light .evo-sticky-header .evo-quick-buttons > *~*, .evo-sticky-light .evo-sticky-header .evo-reading-buttons, .evo-sticky-light .evo-sticky-header .evo-social-dropdown, .evo-sticky-light .evo-sticky-header .evo-main-menu .evo-child-menu, .evo-sticky-light .evo-sticky-header .evo-main-menu > ul > li.mega-menu > .evo-mega-menu-content {
    border-color: rgba(0, 0, 0, 0.05);
}

.evo-sticky-light .evo-sticky-header .evo-reading-buttons > *~*:before {
    background-color: rgba(0, 0, 0, 0.05);
}

.evo-mobile-light .evo-hamburger span, .evo-mobile-light .evo-close:before, .evo-mobile-light .evo-close:after, .evo-sticky-light .evo-sticky-header .evo-reading-post .evo-hide-read a span, .evo-sticky-light .evo-sticky-header .evo-reading-post .evo-close:before, .evo-sticky-light .evo-sticky-header .evo-reading-post .evo-close:after {
    background-color: #111;
}

.evo-topbar-light .evo-social-dropdown ul li a, .evo-sticky-light .evo-sticky-header .evo-social-dropdown ul li a {
    background-color: #eee;
    color: #111;
}

.evo-topbar-light .evo-social-dropdown ul li a:hover, .evo-sticky-light .evo-sticky-header .evo-social-dropdown ul li a:hover {
    color: #fff;
}

.evo-topbar-light .evo-subscribe-button a, .evo-sticky-light .evo-sticky-header .evo-subscribe-button a {
    border-color: #bbb;
    color: #111;
}

.evo-topbar-light .evo-subscribe-button a:hover, .evo-sticky-light .evo-sticky-header .evo-subscribe-button a:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
}

.evo-main-transparent .evo-main-menu {
    background-color: transparent;
    border-color: #fff;
}

.evo-main-transparent .evo-main-menu:hover {
    border-color: #111;
}

.evo-main-transparent .evo-main-menu > ul > li > a {
    color: #fff;
}

.evo-mobile-light .evo-mobile-social ul li a {
    border-color: #eee;
    color: #111;
}

.evo-mobile-light .evo-mobile-menu > ul > li .dropdown-toggle {
    border: 2px solid #eee;
    color: #999;
}

.evo-sticky-light .evo-sticky-header .evo-single-progress {
    background-color: #eee;
}

.evo-sticky-light .evo-sticky-header .evo-reading-post > span, .evo-sticky-light .evo-sticky-header .evo-reading-buttons > * > a {
    color: #bbb;
}

/*============================================================================
  >> 05. BLOG POSTS
  ============================================================================
*/
.evo-post-image {
    position: relative;
}

.evo-image-filter-effect {
    display: none;
}

.evo-image-hover a {
    position: relative;
    display: block;
    overflow: hidden;
}

.evo-image-hover a span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-image-hover-a .evo-image-hover a span {
    -webkit-filter: url(#duotone_redblue);
    -moz-filter: url(#duotone_redblue);
    -o-filter: url(#duotone_redblue);
    -ms-filter: url(#duotone_redblue);
    filter: url(#duotone_redblue);
}

.evo-image-hover-b .evo-image-hover a span {
    -webkit-filter: url(#duotone_bluetan);
    -moz-filter: url(#duotone_bluetan);
    -o-filter: url(#duotone_bluetan);
    -ms-filter: url(#duotone_bluetan);
    filter: url(#duotone_bluetan);
}

.evo-image-hover a:hover span {
    opacity: 1;
}

.evo-cat-image .evo-image-hover a:hover span {
    opacity: 0.35;
}

.evo-post-format {
    position: absolute;
    width: 51px;
    height: 51px;
    color: #fff;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 1;
}

.format-video > i {
    margin-left: 3px;
}

.evo-post-meta {
    position: relative;
    line-height: initial;
}

.evo-post-meta.top {
    display: inline-block;
    width: 100%;
    margin-bottom: 7px;
}

.evo-post-meta.bottom {
    margin-top: 10px;
    margin-bottom: 10px;
}

.evo-post-meta > * {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
}

.evo-post-meta > *, .evo-post-meta > * > a {
    color: #999;
}

.evo-post-meta > *~* {
    padding-left: 15px;
}

.evo-post-meta > *~*:before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: "\f111";
    left: 3px;
    font-size: 4px;
    top: 6px;
}

.evo-post-comment a {
    display: inline-block;
}

.evo-post-comment i {
    display: inline-block;
    float: left;
    margin-top: 1px;
    margin-right: 5px;
}

.evo-post-comment .fa-comment:before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: #999;
    -webkit-mask: url(includes/assets/images/evo-comment.svg) no-repeat;
    mask: url(includes/assets/images/evo-comment.svg) no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
}

.evo-author > a {
    color: #111;
}

.evo-post-meta .evo-post-cat a {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #111;
    color: #fff;
    height: 23px;
    line-height: 25px;
    padding: 0 15px;
    z-index: 1;
}

article.sticky .evo-post-cat{
    display: none!important;
}

.evo-cat-line .evo-post-meta .evo-post-cat {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 23px;
    z-index: 1;
    margin-top: -14px;
    text-align: center;
}

.evo-cat-line .evo-post-meta .evo-post-cat span {
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    top: 50%;
    background-color: #eee;
}

.evo-entry-title a {
    color: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-module .entry-content p {
    font-size: 13px;
    color: #555;
}

.evo-read-more {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
}

.evo-read-more a {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    height: 42px;
    line-height: 37px;
    border: 3px solid #111;
    padding: 0 17px;
}

.evo-read-more a span {
    display: inline-block;
    font-size: 11px;
    margin-left: 11px;
    -webkit-transition: .3s cubic-bezier(.7,0,.3,1);
    -moz-transition: .3s cubic-bezier(.7,0,.3,1);
    -ms-transition: .3s cubic-bezier(.7,0,.3,1);
    -o-transition: .3s cubic-bezier(.7,0,.3,1);
    transition: .3s cubic-bezier(.7,0,.3,1);
}

.evo-read-more a:hover span {
    margin-left: 22px;
}

.evo-post-header-top {
    text-align: center;
}

.evo-post-header-top .evo-post-body {
    position: relative;
    padding:0 15px;
    margin-top: -25px;
    z-index: 1;
}

article.sticky .evo-post-body {
    position: relative;
    padding:0px 0px;
    margin-top: 0px;
    z-index: 1;
}

.evo-post-header-top .evo-post-header {
    position: relative;
    background-color: #fff;
}

.evo-post-header-top .evo-post-header:before {
    position: absolute;
    content: '';
    opacity: 1;
    height: 25px;
    width: 100%;
    z-index: 1;
    -webkit-box-shadow: 0 0 13px 5px rgba(0,0,0,0.1);
    box-shadow: 0 0 13px 5px rgba(0,0,0,0.1);
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
}

article.sticky .evo-post-header:before {
    position: absolute;
    content: '';
    opacity: 1;
    height: 0px;
    width: 0px;
    -webkit-box-shadow: 0 0 0px 0px rgba(0,0,0,0.1);
    box-shadow: 0 0 0px 0px rgba(0,0,0,0.1);
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.evo-post-header-top .evo-entry-title {
    padding-right: 20px;
    padding-left: 20px;
}

.evo-blog-post-a .evo-post {
    margin-bottom: 50px;
}

.evo-blog-post-b .evo-post {
    margin-bottom: 80px;
}

.evo-blog-post-b .evo-post.sticky {
    background-color: #f8f8f8;
    padding: 0 10px 30px;
}

.evo-blog-post-b .evo-post.sticky .evo-post-header {
    background-color: #f8f8f8!important;
}

.evo-blog-post-c .evo-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
}

.evo-blog-post-c .evo-post~.evo-post {
    border-top:1px solid #eee;
}

.evo-blog-post-c .evo-post:first-child {
    padding-top: 0;
}

.evo-blog-post-c .evo-post .evo-post-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    -webkit-align-self: center;
    align-self: center;
}

.evo-blog-post-c .evo-post .evo-post-image {
    width: 340px;
    margin-right: 30px;
}

.evo-posts .evo-post-image img {
    display: inline-block;
}

.evo-blog-post-c .evo-post-meta.top {
    margin-bottom: 15px;
}

.evo-blog-post-d .evo-post {
    margin-bottom: 70px;
}

.evo-blog-post-d .evo-post:nth-child(1) {
    width: 50%;
}

.evo-blog-post-d .evo-post:nth-child(2) {
    width: 50%;
}

.evo-blog-post-d .evo-post-image img {
    width: 100%;
}

.evo-blog-post-d .evo-post:nth-child(1) .evo-entry-title, .evo-blog-post-d .evo-post:nth-child(2) .evo-entry-title {
    font-size: 28px;
}

.evo-blog-post-a .evo-entry-title {
    font-size: 20px;
}

.evo-blog-post-d .evo-entry-title {
    font-size: 22px;
}

.evo-blog-post-b .evo-entry-title {
    font-size: 28px;
    padding: 10px 40px 0;
}

.evo-post-body .pagination, .ajax-load-more {
    position: relative;
    display: inline-block;
    width: 100%;
}

.evo-post-body .pagination .nav-links > * {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 32px;
    color: #111;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-post-body .pagination .nav-links a:hover {
    border-color: #111;
}

.evo-post-body .pagination .nav-links span.current {
    border-color: transparent;
    background-color: #111;
    color: #fff;
}

.ajax-load-more a {
    display: block;
    height: 60px;
    line-height: 56px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    border: 3px solid #111;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.ajax-load-more a:hover, .evo-post-body .pagination .prev-page a:hover, .evo-post-body .pagination .next-page a:hover {
    background-color: #111;
    color: #fff;
}

.evo-post-body .pagination .next-page {
    margin-left: 10px;
}

.evo-post-body .pagination .prev-page, .evo-post-body .pagination .next-page {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.evo-post-body .pagination .prev-page a, .evo-post-body .pagination .next-page a {
    display: inline-block;
    color: #111;
    border: 3px solid #111;
    height: 40px;
    line-height: 37px;
    padding: 0 20px;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.evo-blog-post-e .evo-post-body-inner {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    -webkit-align-self: center;
    align-self: center;
    border: 3px solid #eee;
}
.evo-blog-post-e .evo-post {
    position: relative;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.evo-blog-post-e .evo-post-image {
    width: 450px;
}
.evo-blog-post-e .evo-post.two-post {
    -webkit-flex-direction: row-reverse; 
    flex-direction: row-reverse;
    margin: 40px 0px;
    text-align: right;
}
.evo-blog-post-e .evo-post.one-post .evo-post-body-inner {
    position: relative;
    margin-left: -100px;
    background-color: #fff;
    padding: 40px;
}
.evo-blog-post-e .evo-post.two-post .evo-post-body-inner {
    position: relative;
    margin-right: -100px;
    background-color: #fff;
    padding: 40px;
}
/*============================================================================
  >> 06. FEATURED
  ============================================================================
*/
.evo-featured .evo-post {
    position: relative;
    outline: none;
}

.evo-featured-padding {
    padding:0 100px;
}

.evo-overlay-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    outline: none;
}

.evo-overlay-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    z-index: 1;
}

.evo-overlay-wrap:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.post-overlay:hover .evo-overlay-wrap:before {
    background-color: rgba(0, 0, 0, 0.7);
}

.post-overlay .evo-entry-title a, .post-overlay .evo-post-meta > *, .post-overlay .evo-post-meta > * > a {
    color: #fff;
}

.post-overlay .evo-post-comment .fa-comment:before {
    background-color: #fff;
}

.evo-overlay-inner {
    width: 100%;
    -webkit-align-self: flex-end;
    align-self: flex-end;
    padding: 30px;
    z-index: 1;
}

.evo-post-center .evo-overlay-inner {
    text-align: center;
    -webkit-align-self: center;
    align-self: center;
    padding: 0 50px;
}

.evo-post-center.evo-small-inner .evo-overlay-inner {
    padding:0 30px;
}

.evo-featured-style-b .evo-overlay-inner {
    max-width: 1170px;
    margin: auto;
}

.evo-featured-large-column {
    display: inline-block;
    float: right;
}

.evo-featured-small-column {
    position: absolute;
    width: 475px;
    bottom: 0;
    z-index: 1;
}

.evo-ft-white-body {
    position: relative;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    padding:50px;
}

.evo-ft-post-large-body {
    padding-left: 190px;
    margin-top: 30px;
}

.evo-featured-style-a .evo-post {
    height: 600px;
}

.evo-featured-style-b .evo-post {
    height: 700px;
}

.evo-featured-style-c .evo-post {
    height: 500px;
}

.evo-featured-style-d .evo-post {
    height: 550px;
}

.evo-module.evo-featured .evo-entry-title {
    margin-top: 20px;
    margin-bottom: 10px;
}

.evo-module.evo-featured .evo-post-meta.top {
    margin-bottom: 0;
}

.evo-featured-style-a .evo-entry-title, .evo-featured-style-b .evo-entry-title {
    display: inline-block;
    font-size: 60px;
    max-width: 800px;
}

.evo-featured-style-d .evo-entry-title {
    font-size: 42px;
    padding: 0 50px;
}

.evo-featured-small-column .evo-entry-title {
    font-size: 34px;
    margin-bottom: 15px;
}

.evo-featured-large-column .evo-entry-title {
    font-size: 40px;
}

/*============================================================================
  >> 07. MODULES
  ============================================================================
*/
.evo-module {
    position: relative;
    display: inline-block;
    width: 100%;
}

.evo-module .entry-content p {
    line-height: 22px;
}

.evo-module-title {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.evo-module-title.border-decor.center.style-b {
    margin-bottom: -23px;
    float: left;
    z-index: 1;
}

.evo-module-title.center.style-b {
    margin-bottom: 30px;
    z-index: 1;
}

.evo-module-title.center {
    text-align: center;
}

.evo-module-title .evo-title {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
}

.evo-module-title.style-b .evo-title {
    background-color: #fff;
    padding-right: 20px;
    margin-bottom: 10px;
}

.evo-module-title.center.style-b .evo-title {
    padding-left: 20px;
}

.evo-module-title.style-a {
    border-bottom: 1px solid #eaeaea;
}

.evo-module-title.style-b:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
    top: 50%;
    left: 0;
    margin-top: 1px;
    z-index: -1;
}

.evo-module-title.border-decor.style-b:before {
    background-color: transparent;
}

.evo-cat-module-d .evo-module-title {
    text-align: right;
    margin-bottom: 15px;
}

.evo-cat-module-d .evo-post-cat a {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #111;
    color: #fff;
    height: 23px;
    line-height: 25px;
    padding: 0 15px;
    z-index: 1;
    margin-bottom: 10px;
}

.evo-cat-module-d .evo-module-title .evo-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.evo-border-decor {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.evo-border-decor.bottom {
    margin-bottom: 0;
    margin-top: -20px;
}

.evo-border-decor span {
    position: relative;
    display: inline-block;
    width: 80%;
    height: 50px;
    border:3px solid #eee;
}

.evo-border-decor.top span {
    border-bottom: none;
}

.evo-border-decor.bottom span {
    border-top: none;
}

/*a) Category Modules*/
.evo-module .evo-entry-title {
    margin:0;
}

.evo-cat-module-a .evo-post {
    margin-bottom: 50px;
}

.evo-cat-module-a .evo-entry-title {
    font-size: 20px;
}

.evo-cat-module-b .evo-lr-posts .evo-post, .evo-cat-module-g .evo-post {
    position: relative;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.evo-cat-module-b .evo-lr-posts .evo-post:nth-child(2), .evo-cat-module-g .evo-post:nth-child(2) {
    -webkit-flex-direction: row-reverse; 
    flex-direction: row-reverse;
    margin-top: 40px;
    text-align: right;
}

.evo-cat-module-b .evo-small-list .evo-post {
    margin-bottom: 60px;
}

.evo-cat-module-c .evo-small-list .evo-post {
    margin-bottom: 40px;
    text-align: center;
}

.evo-cat-module-b .evo-lr-posts .evo-post-image {
    margin-right: 30px;
}

.evo-cat-module-b .evo-lr-posts .evo-post:nth-child(2) .evo-post-image {
    margin-right: 0;
    margin-left: 30px;
}

.evo-cat-module-b .evo-lr-posts .evo-post-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    -webkit-align-self: center;
    align-self: center;
}

.evo-cat-module-c .evo-post-center .evo-post {
    position: relative;
    height: 550px;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
}

.evo-cat-module-c .evo-post-center .evo-decor-border-top, .evo-cat-module-c .evo-post-center .evo-decor-border-bottom {
    width: 80%;
}

.evo-cat-module-d .evo-slider {
    margin-top: -150px;
}

.evo-cat-module-d .evo-modulle-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    border: 10px solid #111;
    padding: 50px;
}

.evo-cat-module-d .evo-post-image {
    display: inline-block;
    float: left;
    width: 50%;
}

.evo-cat-module-d .evo-post-body {
    display: inline-block;
    float: right;
    width: 50%;
    padding-left: 70px;
    margin-top: 180px;
}

.evo-cat-module-d .slick-arrow {
    width: 47px;
    left: initial;
    right: 46px;
    bottom: 0;
}

.evo-cat-module-d .slick-arrow.slick-next {
    right: 0;
}

.evo-cat-module-d .slick-arrow:before {
    width: 47px;
    border:1px solid rgba(0, 0, 0, 0.1);
}

.evo-cat-module-e .evo-post:nth-child(2), .evo-cat-module-e .evo-post:nth-child(3) {
    position: relative;
    display: inline-block;
    float: left;
    width: 50%;
    height: 250px;
    overflow: hidden;
}

.evo-cat-module-e .evo-post:nth-child(1) {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 500px;
}

.evo-cat-module-e .evo-overlay-inner {
    padding:0 30px;
}

.evo-cat-module-f .post-overlay {
    position: relative;
    height: 520px;
}

.evo-cat-module-f .post-overlay .evo-overlay-inner {
    padding:0 30px;
}

.evo-cat-module-f .evo-small-list .evo-post {
    margin-bottom: 45px;
}

.evo-cat-module-g .evo-post-image {
    width: 450px;
}

.evo-cat-module-g .evo-post-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    -webkit-align-self: center;
    align-self: center;
    border: 3px solid #eee;
}

.evo-cat-module-g .evo-post:nth-child(1) .evo-post-body {
    position: relative;
    margin-left: -100px;
    background-color: #fff;
    padding: 40px;
}

.evo-cat-module-g .evo-post:nth-child(2) .evo-post-body {
    position: relative;
    margin-right: -100px;
    background-color: #fff;
    padding: 40px;
}

.evo-cat-module-b .evo-lr-posts .evo-entry-title {
    font-size: 32px;
}

.evo-cat-module-b .evo-small-list .evo-entry-title {
    font-size: 20px;
    margin-top: 15px;
}

.evo-cat-module-c .evo-post-center .evo-entry-title, .evo-cat-module-f .post-overlay .evo-entry-title {
    font-size: 34px;
    margin-bottom: 15px;
}

.evo-cat-module-c .evo-small-list .evo-entry-title, .evo-cat-module-f .evo-small-list .evo-entry-title {
    font-size: 18px;
    margin-top: 15px;
}

.evo-cat-module-d .evo-entry-title {
    font-size: 36px;
}

.evo-cat-module-e .evo-entry-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.evo-cat-module-e .evo-post:nth-child(1) .evo-entry-title {
    display: inline-block;
    max-width: 500px;
    font-size: 38px;
}

/*b) Carousel Modules*/
.evo-carousel-a .evo-post-body {
    text-align: center;
    padding: 0 20px;
    margin-top: 15px;
}

.evo-carousel-a .evo-post-meta.bottom {
    margin-top: 10px;
}

.evo-carousel-a .evo-slider .slick-arrow {
    margin-bottom: 15px;
}

.evo-carousel-a .evo-slider[data-dots="true"] .slick-arrow {
    margin-bottom: 35px;
}

.evo-carousel-b.dark, .evo-video-module {
    background-color: #222;
    padding: 50px 0;
}

.evo-carousel-b.dark .evo-slider .slick-arrow:before, .evo-video-module .evo-slider .slick-arrow:before {
    background-color: #222;
    color: #fff;
}

.evo-carousel-b.dark .evo-module-title.style-b {
    padding:20px 0;
}

.evo-carousel-b.dark .evo-module-title.style-b .evo-title {
    position: relative;
    background-color: #222;
    color: #fff;
}

.evo-carousel-b.dark .evo-module-title.style-b:before, .evo-video-module .evo-module-title.style-b:before {
    background-color: #444;
    z-index: 0;
}

.evo-carousel-b.dark .slick-dots li button, .evo-video-module .slick-dots li button {
    background-color: #555;
    border-color: #222;
}

.evo-carousel-b.dark .slick-dots li.slick-active button, .evo-video-module .slick-dots li.slick-active button {
    background-color: #222;
}

.evo-carousel-b .evo-post {
    position: relative;
    height: 500px;
    background-position: 50% 50%;
    background-size: cover;
}

.evo-carousel-b .evo-post-center .evo-overlay-inner {
    padding:0 30px;
}

.evo-carousel-a .evo-entry-title {
    font-size: 16px;
}

.evo-carousel-a .evo-slider[data-item="2"] .evo-entry-title {
    font-size: 20px;
}

.evo-carousel-b .evo-entry-title {
    margin-bottom: 15px;
}

.evo-carousel-b .evo-slider[data-item="1"] .evo-overlay-inner {
    padding:0 50px;
}

.evo-carousel-b .evo-slider[data-item="1"] .evo-entry-title {
    font-size: 38px;
    max-width: 500px;
    display: inline-block;
}

/*c) Video Modules*/
.evo-video-module {
    padding-top: 70px;
}

.evo-video-module .evo-module-title {
    margin-bottom: 70px;
}

.evo-video-module .evo-module-title .evo-title {
    position: relative;
    font-size: 26px;
    z-index: 1;
    color: #fff;
}

.evo-video-module .evo-module-title span {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    color: #666;
    font-weight: 500;
    z-index: 1;
    margin-top: -10px;
}

.evo-video-frame {
    padding:0 50px;
}

.evo-video-frame iframe {
    position: relative;
    -webkit-box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.7);
}

.evo-video-frame > span {
    position: absolute;
    font-size: 200px;
    font-weight: 900;
    color: #333;
    z-index: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    margin-top: -188px;
    opacity: 0.7;
}

.evo-video-module .evo-video-playlist {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    padding:30px 100px 0;
}

.evo-video-module .evo-video-playlist .evo-post {
    padding-right: 5px;
    padding-left: 5px;
}

.evo-video-module .evo-slider .slick-arrow {
    width: 40px;
    left: -50px;
    opacity: 1;
}

.evo-video-module .evo-slider .slick-arrow:before {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    font-size: 12px;
    line-height: 38px;
    color: #555;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-video-module .evo-slider .slick-arrow:hover:before {
    border-color: #fff;
    color: #fff;
}

.evo-video-module .evo-slider .slick-arrow.slick-next {
    left: initial;
    right: -50px;
}

.evo-video-playlist a {
    outline: none;
}

.evo-video-playlist .evo-post .evo-post-image {
    position: relative;
}

.evo-video-playlist .evo-post .evo-post-image:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.0);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-video-playlist .evo-post.active-video .evo-post-image:before {
    background-color: rgba(0, 0, 0, 0.7);
}

.evo-video-playlist .evo-post .evo-post-format {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-video-playlist .evo-post .evo-post-video-time {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3px 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-video-playlist .evo-post.active-video .evo-post-video-time {
    opacity: 0;
}

.evo-video-playlist .evo-post.active-video .evo-post-format {
    opacity: 1;
}

/*d) Instagram Module*/
.evo-instagram-module {
    position: relative;
    display: inline-block;
    width: 100%;
}

.evo-instagram-module ul li {
    display: inline-block;
    float: left;
}

.evo-instagram-module ul li a {
    position: relative;
    display: block;
    background-color: #111;
}

.evo-instagram-module ul li a:before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: "\f16d";
    font-size: 34px;
    color: #fff;
    width: 30px;
    height: 55px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-instagram-module ul li a img {
    opacity: 1;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-instagram-module ul li a:hover img {
    opacity: 0.6;
}

.evo-instagram-module ul li a:hover:before {
    opacity: 1;
}

.evo-instagram-module.column-10 ul li {
    width: 10%;
}

.evo-instagram-module.column-8 ul li {
    width: 12.5%;
}

.evo-instagram-module.column-6 ul li {
    width: 16.66%;
}

/*============================================================================
  >> 08. SIDEBAR
  ============================================================================
*/

.evo-sidebar .evo-widget-title {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.evo-sidebar .evo-widget-title:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #eee;
    top: 50%;
    left: 0;
}

.evo-sidebar .evo-widget-title .evo-title {
    position: relative;
    display: inline-block;
    z-index: 1;
    background-color: #fff;
    padding:0 20px;
}

.evo-recent-posts .evo-widget-title:before {
    background-color: transparent;
}

.evo-sidebar.right {
    padding-left: 45px;
}

.evo-sidebar.left {
    padding-right: 45px;
}

.evo-sidebar .widget {
    margin-bottom: 50px;
}

.evo-widget-inner {
    position: relative;
    display: inline-block;
    width: 100%;
}

.evo-subscribe-widget .evo-widget-inner {
    background-color: #FF5245;
    padding:20px;
    text-align: center;
}

.evo-subscribe-widget h6 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.evo-subscribe-widget span {
    display: inline-block;
    font-size: 13px;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.evo-subscribe-widget .mc4wp-form {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

.evo-subscribe-widget .mc4wp-form label {
    display: none;
}

.evo-subscribe-widget .mc4wp-form input[type="email"] {
    display: inline-block;
    width: 100%;
    border: 0;
    background-color: #fff;
    font-size: 13px;
    outline: none;
    height: 45px;
    text-align: center;
    margin-bottom: 5px;
}

.evo-subscribe-widget .mc4wp-form input[type="submit"] {
    display: inline-block;
    width: 100%;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    height: 45px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-subscribe-widget .mc4wp-form input[type="submit"]:hover {
    background-color: #fff;
    color: #111;
}

.evo-subscribe-widget .mc4wp-form input[type="email"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #111;
}
.evo-subscribe-widget .mc4wp-form input[type="email"]::-moz-placeholder { /* Firefox 19+ */
  color: #111;
}
.evo-subscribe-widget .mc4wp-form input[type="email"]:-ms-input-placeholder { /* IE 10+ */
  color: #111;
}
.evo-subscribe-widget .mc4wp-form input[type="email"]:-moz-placeholder { /* Firefox 18- */
  color: #111;
}

.evo-tab-widget .evo-widget-title, .evo-subscribe-widget .evo-widget-title, .evo-about-widget .evo-widget-title, .evo-banner-widget .evo-widget-title {
    display: none;
}

.evo-tab-list {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    border: 1px solid #eee;
}

.evo-tab-list a {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    padding: 10px 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-tab-list a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    bottom: -1px;
    left: 0;
    background-color: #111;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-tab-list a.selected:before {
    opacity: 1;
}

.evo-tab-list a~a {
    border-left: 1px solid #eee;
}

.evo-tab-wrap {
    position: relative;
}

.evo-tab-body {
    position: absolute;
    border:1px solid #eee;
    padding:20px;
    opacity: 0;
    top: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.evo-tab-body.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.evo-tab-widget .evo-post {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 75px;
    margin-bottom: 30px;
}

.evo-tab-widget .evo-large-post .evo-post {
    display: inline-block;
    height: initial;
    margin-bottom: 15px!important;
}

.evo-tab-widget .evo-large-post .evo-post-image {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.evo-tab-widget .evo-large-post .evo-post-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.evo-tab-widget .evo-large-post .evo-post-overlay:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-tab-widget .evo-large-post .evo-post:hover .evo-post-overlay:before {
    background-color: rgba(0, 0, 0, 0.7);
}

.evo-tab-widget .evo-large-post .evo-post-body {
    -webkit-align-self: center;
    align-self: center;
    text-align: center;
}

.evo-tab-widget .evo-large-post .evo-entry-title {
    position: relative;
    font-size: 18px;
    z-index: 1;
}

.evo-tab-widget .evo-large-post .evo-entry-title a, .evo-tab-widget .evo-large-post .evo-post-meta a, .evo-tab-widget .evo-large-post .evo-post-meta > *~*:before {
    color: #fff;
}

.evo-tab-widget .evo-large-post .evo-post-comment .fa-comment:before {
    background-color: #fff;
}

.evo-tab-widget .evo-post~.evo-post:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #eee;
    top: -15px;
}

.evo-tab-widget .evo-post:last-child {
    margin-bottom: 0;
}

.evo-tab-widget .evo-post-image {
    position: relative;
    max-width: 105px;
    margin-right: 15px;
}

.evo-tab-widget .evo-post-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    -webkit-align-self: center;
    align-self: center;
}

.evo-tab-widget .evo-post-number {
    position: absolute;
    width: 29px;
    height: 29px;
    line-height: 26px;
    background-color: #111;
    color: #fff;
    border: 2px solid #eee;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    left: 10px;
    top: -10px;
    z-index: 2;
}

.evo-tab-widget .evo-entry-title {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 5px;
}

.evo-instagram-widget ul {
    position: relative;
    display: inline-block;
    width: 100%;
}

.evo-instagram-widget ul li {
    display: inline-block;
    float: left;
    width: 25%;
}

.evo-instagram-widget ul li a {
    position: relative;
    display: block;
}

.evo-instagram-widget ul li a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-instagram-widget ul li a:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: "\f16d";
    font-size: 20px;
    color: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 21px;
    height: 35px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-align: center;
    vertical-align: top;
}

.evo-instagram-widget ul li a:hover:before {
    background-color: rgba(0, 0, 0, 0.3);
}

.evo-instagram-widget ul li a:hover:after {
    opacity: 1;
}

.evo-about-widget .evo-widget-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding:20px;
    border:3px solid #eee;
    z-index: 1;
}

.evo-about-widget .evo-widget-inner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(includes/assets/images/about-patter.png);
    background-repeat: repeat;
    z-index: 0;
    opacity: 0.6;
}

.evo-about-widget .evo-post-image {
    position: relative;
    display: inline-block;
    max-width: 140px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #eee;
}

.evo-about-widget .evo-entry-title {
    position: relative;
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 0;
}

.evo-about-widget .evo-entry-title:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 40px;
    background-color: #111;
    left: 0;
    right: 0;
    margin: -50px auto;
}

.evo-about-widget span {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    z-index: 1;
}

.evo-about-widget .evo-entry-content {
    position: relative;
    margin-top: 20px;
    z-index: 1;
}

.evo-about-widget .evo-entry-content p {
    font-size: 12px;
    font-style: italic;
}

.evo-mv-inner {
    position: relative;
    border:1px solid #eee;
}

.evo-most-viewed-widget .evo-post {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 15px 20px;
    max-height: 100px;
}

.evo-most-viewed-widget .evo-post:before {
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #eee;
    z-index: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-most-viewed-widget .evo-post:hover:before {
    width: 5px;
}

.evo-most-viewed-widget .evo-an-progress-point {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.evo-most-viewed-widget .evo-an-progress-point span {
    position: absolute;
    height: 100%;
    background-color: #f7f7f7;
    top: 0;
}

.evo-most-viewed-widget .dark .evo-an-progress-point {
    background-color: #333;
}

.evo-most-viewed-widget .dark .evo-an-progress-point span {
    background-color: #222;
}

.evo-most-viewed-widget .evo-an-progress-point span.appear {
    -webkit-transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
    -ms-transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
}

.evo-most-viewed-widget ul li~li {
    border-top:1px solid #eee;
}

.evo-most-viewed-widget ul.dark li~li {
    border-top: 1px solid #444;
}

.evo-most-viewed-widget .evo-mv-number {
    position: relative;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin-right: 15px;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: #ddd;
    z-index: 1;
}

.evo-most-viewed-widget .evo-post-body {
    position: relative;
    padding-top: 5px;
    z-index: 1;
}

.evo-most-viewed-widget .evo-entry-title {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.evo-most-viewed-widget .dark .evo-entry-title a {
    color: #fff;
}

.evo-recent-posts .evo-post {
    position: relative;
}

.evo-recent-posts .evo-post-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    padding:20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.evo-recent-posts .evo-post-overlay:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

.evo-recent-posts .evo-large-post .evo-post-body {
    -webkit-align-self: center;
    align-self: center;
    text-align: center;
}

.evo-recent-posts .evo-large-post .evo-entry-title {
    font-size: 18px;
}

.evo-recent-posts .evo-large-post .evo-entry-title a, .evo-recent-posts .evo-large-post .evo-post-meta a {
    color: #fff;
}

.evo-recent-posts .evo-large-post .evo-post-comment .fa-comment:before {
    background-color: #fff;
}

.evo-recent-posts .evo-small-list {
    position: relative;
    padding: 40px 20px 20px;
    border: 1px solid #ddd;
    margin-top: -29px;
}

.evo-recent-posts .evo-small-list .evo-post {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 75px;
    margin-bottom: 30px;
}

.evo-recent-posts .evo-small-list .evo-post:last-child {
    margin-bottom: 0;
}

.evo-recent-posts .evo-small-list .evo-post~.evo-post:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #eee;
    top: -15px;
}

.evo-recent-posts .evo-small-list .evo-post-image {
    position: relative;
    max-width: 105px;
    margin-right: 15px;
}

.evo-recent-posts .evo-small-list .evo-post-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    -webkit-align-self: center;
    align-self: center;
}

.evo-recent-posts .evo-small-list .evo-entry-title {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 5px;
}

.evo-recent-post-style-b {
    padding: 40px 25px 25px;
    border: 1px solid #ddd;
    margin-top: -29px;
}

.evo-recent-post-style-b .evo-post {
    padding:10px 0;
}

.evo-recent-post-style-b .evo-post~.evo-post {
    border-top:1px solid #eee;
}

.evo-recent-post-style-b .evo-post:first-child {
    padding-top: 0;
}

.evo-recent-post-style-b .evo-post:last-child {
    padding-bottom: 0;
}

.evo-recent-post-style-b .evo-entry-title {
    font-size: 16px;
    margin: 10px 0;
}

.evo-recent-post-style-b .evo-entry-content {
    margin-top: 10px;
}

.evo-recent-post-style-b .evo-entry-content p {
    font-size: 12px;
    color: #999;
}

.evo-social-media-widget ul {
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-bottom: -20px;
}

.evo-social-media-widget ul li {
    position: relative;
    display: inline-block;
    width: 23%;
    margin-bottom: 20px;
}

.evo-social-media-widget ul li a {
    position: relative;
    display: block;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-social-media-widget ul li a:hover {
    opacity: 0.7;
}

.evo-social-media-widget ul li a .evo-social-icon {
    position: relative;
    display: inline-block;
    font-size: 18px;
    width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: #eee;
    margin-bottom: 5px;
    border-radius: 50%;
    color: #fff;
}

.evo-social-media-widget ul li a .evo-social-icon:before {
    position: absolute;
    content: '';
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}

.evo-banner {
    position: relative;
    display: inline-block;
    width: 100%;
    padding:0 10px 0;
    text-align: center;
}

.evo-banner a {
    max-width: 300px;
    display:inline-block;
}

.evo-banner img {
    display: inline-block;
}

.widget_archive ul li, .widget_categories ul li, .widget_pages ul li, .widget_meta ul li, .widget_nav_menu ul li {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-left: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.widget_archive ul li:before, .widget_categories ul li:before, .widget_pages ul li:before, .widget_meta ul li:before, .widget_nav_menu ul li:before {
    position: relative;
    display: inline-block;
    float: left;
    font-family: 'Font Awesome 5 Free';
    font-size: 8px;
    content: "\f054";
    top: 6px;
    left: -10px;
}

.widget_archive ul li a, .widget_categories ul li a, .widget_pages ul li a, .widget_meta ul li a, .widget_nav_menu ul li a {
    color: #111;
}

.widget_archive select, .widget_categories select {
    display: inline-block;
    width: 100%;
    height: 45px;
    padding:0 10px;
}

.widget_recent_comments ul li, .widget_recent_entries ul li, .widget_rss ul li {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
}

.widget_recent_comments ul li~li, .widget_recent_entries ul li~li, .widget_rss ul li~li {
    border-top:1px solid #eee;
}

.widget_recent_comments ul li {
    line-height: 18px;
    color: #999;
    letter-spacing: -0.3px;
}

.widget_recent_comments ul li span {
    font-weight: 600;
    color: #111;
    border-bottom: 1px solid #ddd;
}

.widget_recent_comments ul li a, .widget_recent_entries ul li a, .widget_rss ul li a {
    font-weight: 600;
    color: #111;
}

.calendar_wrap {
    padding:15px;
    border: 1px solid #eee;
}

#wp-calendar {
    width: 100%;
}

#wp-calendar > caption {
    padding: 15px 0 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    background-color: #111;
    color: #fff;
}

#wp-calendar thead {
    border-bottom: 1px solid #eee;
}

#wp-calendar thead th {
    font-weight: bold;
    background-color: #fafafa;
    color: #000;
}

#wp-calendar tfoot td#next, #wp-calendar tfoot td#prev {
    padding: 10px 0 10px 15px;
    font-size: 13px;
    font-weight: 700;
}

#wp-calendar thead th, #wp-calendar tbody td {
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    color: #111;
    background-color: #fff;
}

#wp-calendar tbody td#today {
    background-color: #eee;
}

#wp-calendar td a {
    color: #111;
}

.widget_rss .evo-title img {
    display: none;
}

.widget_rss .evo-title a {
    color: #111;
}

.widget_rss ul li .rss-date {
    display: inline-block;
    float: left;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    color: #bbb;
    text-transform: uppercase;
    margin-top: -2px;
    margin-bottom: 10px;
}

.widget_rss ul li .rssSummary {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.widget_rss ul li cite {
    display: inline-block;
    width: 100%;
    font-weight: 600;
    margin-top: 5px;
}

.widget_search .evo-search-form {
    position: relative;
}

.widget_search .evo-search-form .search_input {
    font-size: 13px;
    font-weight: 400;
    color: #111;
    border: 2px solid #111;
    height: 50px;
    padding: 0 15px;
}

.widget_search .evo-search-form button {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    border-radius: 0;
    border: 0;
    background-color: #111;
    color: #fff;
}

.widget_search .evo-search-message, .widget_search .evo-search-tags {
    display: none;
}

.widget_text select {
    display: inline-block;
    width: 100%;
    height: 45px;
    padding:0 10px;
}

.widget_tag_cloud a {
    color: #111;
}

.evo-footer-sidebar .widget {
    margin-bottom: 50px;
}

.evo-footer-sidebar .evo-banner-widget {
    text-align: center;
}

.evo-footer.dark .widget_archive select, .evo-footer.dark .widget_categories select, .evo-footer.dark #wp-calendar > caption, .evo-footer.dark #wp-calendar tbody td#today, .evo-footer.dark .widget_text select {
    background-color: #333;
}

.evo-footer.dark #wp-calendar thead th, .evo-footer.dark #wp-calendar tbody td {
    background-color: #222;
    color: #fff;
}

.evo-footer.dark .calendar_wrap, .evo-footer.dark #wp-calendar thead, .evo-footer.dark .widget_recent_comments ul li~li, .evo-footer.dark .widget_recent_entries ul li~li, .evo-footer.dark .widget_rss ul li~li {
    border-color: #555;
}

.evo-footer.dark .widget_recent_comments ul li span {
    color: #fff;
}

.evo-footer.dark .widget_search .evo-search-form .search_input {
    border-color: #fff;
    color: #fff;
}

.evo-footer.dark .widget_search .evo-search-form button {
    background-color: #fff;
    color: #222;
}

.evo-footer-sidebar .evo-recent-posts .evo-small-list, .evo-footer-sidebar .evo-recent-post-style-b, .evo-footer-sidebar .evo-tab-body {
    border:0;
    padding:0;
    display: initial;
}

.evo-footer-sidebar .evo-recent-posts .evo-small-list .evo-entry-title, .evo-footer-sidebar .evo-recent-post-style-b .evo-entry-title {
    font-weight: 600;
}

.evo-footer.dark .evo-recent-post-style-b .evo-post~.evo-post, .evo-footer.dark .evo-tab-list, .evo-footer.dark .evo-tab-list a~a, .evo-footer.dark .evo-about-widget .evo-widget-inner {
    border-color: #444;
}

.evo-footer.dark .evo-recent-posts .evo-small-list .evo-post~.evo-post:before, .evo-footer.dark .evo-tab-widget .evo-post~.evo-post:before {
    background-color: #444;
}

.evo-footer.dark .evo-about-widget .evo-entry-title:before {
    background-color: #fff;
}

.evo-footer.dark .evo-about-widget .evo-widget-inner:before {
    background-image: url(includes/assets/images/about-dark-patter.png);
}

/*============================================================================
  >> 09. SINGLE
  ============================================================================
*/
.evo-video-mobile-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    top: 0;
    display: none;
}

.evo-parallax {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform: translate3d(0,0,0);
}

.evo-full-screen .evo-main {
    position: static;
}

.evo-full-screen .evo-logo-header .evo-logo-text {
    color: #fff;
}

.evo-full-container {
    margin-bottom: 30px;
}

.evo-single .evo-post-meta.top > *~*:before {
    content: none;
}

.evo-standart-b .evo-post-image {
    height: 530px;
}

.evo-standart-d .evo-post-image, .evo-standart-e .evo-post-image {
    height: 550px;
}

.evo-single-image {
    margin-bottom: 30px;
}

.evo-single-image.evo-standart-c, .evo-single-image.evo-standart-d {
    margin-top: -15px;
}

.evo-standart-f.evo-single-image {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.evo-post-tv-wrap {
    background-color: #222;
    margin-bottom: 30px;
}

.evo-post-tv-body {
    position: relative;
    z-index: 1;
    padding:0 100px 50px;
}

.evo-post-tv-bg {
    position: absolute;
    width: 100%;
    height: 110%;
    background-color: #222;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
}

.evo-post-tv-bg:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(34,34,34,0.9);
}

.evo-post-tv-bg:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(34, 34, 34, 0.1) 20%, rgba(34,34,34,1) 100%);
    background: -webkit-linear-gradient(top, rgba(34, 34, 34, 0.1) 20%,rgba(34,34,34,1) 100%);
    background: linear-gradient(to bottom, rgba(34, 34, 34, 0.1) 20%,rgba(34,34,34,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#82000000',GradientType=0 );
}

.column-4 .evo-post {
    display: inline-block;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 25%;
}

.evo-post-tv-other-videos .evo-title {
    position: relative;
    background-color: #222!important;
    color: #fff;
    z-index: 1;
}

.evo-post-tv-other-videos .evo-module-title.style-b:before {
    background-color: #444;
    z-index: 0;
}

.evo-post-tv-body .evo-post-header {
    margin-top: 60px;
    text-align: center;
}

.evo-post-tv-body.evo-single h1.evo-entry-title {
    padding: 0 100px;
}

.evo-post-tv-body .evo-entry-title, .evo-post-tv-body .evo-post-meta .evo-author > a, .evo-post-tv-videos .evo-post .evo-entry-title a {
    color: #fff!important;
}

.evo-post-tv-body.evo-single .evo-share-post {
    margin-top: 60px;
    border-color: #444;
}

.evo-post-tv-body.evo-single .evo-share-post .evo-small-title {
    color: #777;
}

.evo-post-tv-other-videos {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.evo-post-tv-videos .evo-post .evo-entry-title {
    text-align: center;
    margin: 0;
    font-size: 16px;
}

.evo-single.evo-standart-f .evo-post-image {
    height: 100%;
    max-height: 100%;
}

.evo-single-image.evo-standart-e {
    margin-top: -75px;
}

.evo-single .evo-post-image .evo-overlay-wrap:before {
    background-color: rgba(0, 0, 0, 0.5);
}

.evo-standart-b .evo-post-image .evo-overlay-inner {
    padding:0;
}

.evo-single.evo-standart-f .evo-post-image .evo-overlay-inner {
    -webkit-align-self: flex-start;
    align-self: flex-start;
    padding:0;
}

.evo-post-gallery ul li {
    position: relative;
}

.evo-post-gallery ul li:hover .evo-zoom {
    opacity: 1;
}

.evo-single-pad {
    margin-top: 40px;
}

.evo-single .evo-post-meta.top {
    margin-bottom: 13px;
}

.evo-single h1.evo-entry-title {
    font-size: 44px;
    margin-top: 0;
}

.evo-standart-b h1.evo-entry-title {
    color: #fff;
    font-size: 34px;
    padding: 0 100px;
    margin-bottom: 20px;
}

.evo-standart-d h1.evo-entry-title {
    color: #fff;
    font-size: 44px;
    padding: 0 150px;
    margin-bottom: 20px;
}

.evo-standart-e h1.evo-entry-title {
    color: #fff;
    font-size: 54px;
    padding: 0 120px;
    margin-bottom: 20px;
}

.evo-standart-e.evo-post-center .evo-overlay-inner {
    padding:0;
}

.evo-standart-f h1.evo-entry-title {
    color: #fff;
    font-size: 64px;
    padding: 0 50px;
    margin-bottom: 20px;
}

.evo-single .evo-post-header {
    padding:0;
}

.evo-single .evo-post-audio iframe {
    max-width: 100%;
}

.evo-single.evo-standart-c .evo-post-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.evo-single .evo-single-top {
    margin-top: 20px;
}

.evo-single .evo-single-bottom {
    margin-bottom: 20px;
}

.evo-single .evo-post-image {
    position: relative;
    max-height: 550px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}

.evo-single .evo-post-image img {
    width: 100%;
}

.evo-single .evo-post-image a {
    outline: none;
    border-color: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.evo-single .evo-zoom {
    position: absolute;
    width: 43px;
    height: 43px;
    line-height: 44px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    right: 15px;
    top: 15px;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.evo-single .evo-post-image a:hover .evo-zoom {
    opacity: 1;
}

.evo-post-image .featured_image_credit {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 10px;
    color: #fff;
    padding: 7px 20px 5px;
}

.evo-single .entry-content p {
    font-size: 15px;
    line-height: 30px;
    color: #111;
}

.entry-content a {
    color: #01f4c8;
}

.evo-dropcrap > p:first-child:first-letter {
    display: block;
    float: left;
    font-size: 80px;
    font-weight: 700;
    line-height: 0.9;
    margin-top: 5px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
    font-weight: 700;
    letter-spacing: -0.25px;
    margin-bottom: 20px;
}

.evo-review-title {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    padding: 25px;
    margin: 0 0 10px;
    background-color: #f8f8f8;
}

.evo-review-bars ul li {
    display: inline-block;
    width: 100%;
    padding:15px 25px;
    background-color: #f8f8f8;
    margin-bottom: 5px;
}

.review-star ul li {
    float: left;
}

.evo-review-bars ul li:last-child {
    margin-bottom: 0;
}

.evo-review-item-title {
    display: inline-block;
    float: left;
    font-weight: 600;
}

.evo-review-point-vote {
    display: inline-block;
    float: right;
    font-weight: 700;
}

.evo-review-stars {
    position: relative;
    display: inline-block;
    float: right;
    font-size: 15px;
    color: #ddd;
}

.evo-review-rating-stars {
    position: absolute;
    display: block;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffd700;
}

.evo-review-rating-stars.appear, .evo-review-bar-item span.appear {
    -webkit-transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
    -ms-transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 2s cubic-bezier(0.7, 0, 0.3, 1);
}

.evo-review-bottom {
    position: relative;
    display: inline-block;
    width: 100%;
    padding:25px;
    background-color: #f8f8f8;
    margin-top: 10px;
}

.evo-review-summary {
    display: inline-block;
    float: left;
    width: 70%;
}

.evo-review-total-rating {
    display: inline-block;
    float: right;
    width: 30%;
    text-align: right;
}

.evo-review-summary span {
    font-size: 16px;
    font-weight: 700;
}

.evo-review-summary p {
    font-size: 13px;
}

.evo-total-rating {
    display: inline-block;
    width: 91px;
    text-align: center;
}

.evo-review.review-point .evo-total-rating {
    width: 120px;
    height: 120px;
    color: #fff;
    background-color: #ffd700;
    padding-top: 5px;
}

.evo-review.review-point .evo-total-rating span {
    font-size: 56px;
}

.evo-review.review-point .evo-total-rating p {
    margin-top: -25px;
}

.evo-total-rating span {
    display: inline-block;
    width: 100%;
    font-size: 36px;
    font-weight: 700;
}

.evo-total-rating p {
    display: inline-block;
    float: left;
    width: 100%;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: -15px;
    text-transform: uppercase;
}

.evo-review-bar-item {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 10px;
    background-color: #eee;
}

.evo-review-bar-item span {
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    background-color: #ffd700;
}

.evo-review-small {
    position: absolute;
    right: 0;
    z-index: 1;
    padding: 7px 12px;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-post-image a:hover .evo-review-small {
    color: rgba(255, 255, 255, 1);
}

.evo-review-small p {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.evo-review-small div {
    font-size: 34px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -1px;
}

.evo-small-title {
    display: inline-block;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 15px;
}

.evo-share-post, .evo-post-tags {
    padding-top: 20px;
    border-top:2px solid #eee;
}

.evo-share-post-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.evo-share-post-inner a.share-flex {
    flex: 1;
}

.evo-share-post-inner a.share-normal {
    width: 50px;
}

.evo-share-post-inner a {
    display: inline-block;
    float: left;
    color: #fff;
    background-color: #ddd;
    margin-right: 5px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    -webkit-border-radius: 1.7px;
    -moz-border-radius: 1.7px;
    border-radius: 1.7px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-share-post-inner a span {
    position: relative;
    padding-left: 13px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    top: -1px;
}

.evo-share-post-inner a.facebook {
    background-color: #295396;
}

.evo-share-post-inner a.twitter {
    background-color: #32ccfe;
}

.evo-share-post-inner a.pinterest {
    background-color: #cb1f27;
}

.evo-share-post-inner a.google {
    background-color: #dd4b3e;
}

.evo-share-post-inner a.linkedin {
    background-color: #0084bf;
}

.evo-share-post-inner a.whatsapp {
    background-color: #44e561;
}

.evo-share-post-inner a.mail {
    background-color: #666;
}

.evo-share-small-buttons {
    position: relative;
}

.evo-share-small-buttons > .share-normal {
    margin-right:0;
    margin-left:0;
}

.evo-share-small-buttons > a > i {
    -webkit-transition: transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
}

.evo-share-small-buttons .dropdown-menu {
    position: relative;
    margin:0;
    top: 0;
    border: 0;
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}

.evo-share-small-buttons .dropdown-menu a {
    font-size: 15px;
    margin-right: 3px;
}

.evo-share-small-buttons.open > a i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.evo-share-post-inner a:hover {
    opacity: 0.8;
}

.evo-share-small-buttons > a, .evo-share-small-buttons > a:hover {
    opacity: 1;
}

.evo-post-tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.evo-post-tags .evo-source {
    max-width: 50%;
}

.evo-post-tags > * > span {
    margin-bottom: 0;
    width: initial;
}

.evo-post-tags .evo-tags {
    flex: 1;
    padding-right: 20px;
}

.evo-post-tags .evo-tags ul, .evo-post-tags .evo-source a {
    display: inline;
    margin-left: 10px;
}

.evo-post-tags .evo-tags ul li {
    display: inline-block;
    margin-right: 9px;
    margin-bottom: 5px;
}

.evo-post-tags .evo-tags ul li a, .evo-post-tags .evo-source a {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-author-bio {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    margin-bottom: 40px;
}

.evo-wr-by {
    display: inline-block;
    float: left;
    width: 100%;
    font-size: 12px;
    margin-bottom: -5px;
    color: #bbb;
}

.evo-author-bio .evo-author-image {
    position: relative;
    max-width: 105px;
    margin-right: 30px;
}

.evo-author-bio .evo-author-info {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    -webkit-align-self: center;
    align-self: center;
}

.evo-author-bio .evo-author-info:before {
    position: absolute;
    content: '';
    width: 40px;
    height: 1px;
    background-color: #111;
    left: -50px;
    top: 29px;
}

.evo-author-bio .evo-author-name a {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-author-bio .evo-author-content p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 10px;
}

.evo-author-bio .evo-author-social {
    position: relative;
    display: inline-block;
    width: 100%;
}

.evo-author-bio .evo-author-social ul li {
    display: inline-block;
}

.evo-author-bio .evo-author-social ul li a {
    display: inline-block;
    font-size: 12px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    color: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-post-banner {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.evo-post-banner a {
    display: inline-block;
}

.evo-comment-show-enable > .evo-module-title {
    display: none;
}

.evo-show-comments {
    margin-top: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.evo-comment-show-disable .evo-show-comments {
    display: none;
}

.evo-show-comments a {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    border: 2px solid #111;
    height: 53px;
    line-height: 52px;
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-show-comments a .hide-c, .evo-show-comments.expanded a .show-c {
    display: none;
}

.evo-show-comments.expanded a .hide-c {
    display: block;
}

.evo-show-comments a:hover, .evo-show-comments.expanded a  {
    background-color: #111;
    color: #fff;
}

.evo-comment-list .evo-title {
    font-size: 20px;
}

.comment-list {
    display: inline-block;
    width: 100%;
}

.comment-list .comment {
    position: relative;
    padding-left: 95px;
}

.comment-list li .comment-respond {
    padding: 0;
    border: none;
    margin-bottom: 30px;
}

.comment-list .comment~.comment {
    border-top:1px solid #eee;
    padding-top: 30px;
}

.comment-list li .comment-body {
    display: inline-block;
    width: 100%;
    margin-bottom: 35px;
}

.comment-list li .comment-author {
    display: inline-block;
    font-weight: 600;
}

.comment-list li .comment-author a {
    color: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.comment-list li .comment-author .avatar {
    position: absolute;
    max-width: 70px;
    left: 0;
}

.comment-list li .comment-metadata {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    color: #bbb;
}

.comment-list li .comment-metadata:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 9px;
    left: -9px;
    top: 7px;
    background-color: #ddd;
}

.comment-list li .comment-metadata a {
    display: inline-block;
    font-size: 12px;
    color: #bbb;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.comment-list li .comment-metadata a:hover, .comment-list li .reply a:hover {
    color: #111;
}

.comment-list li .comment-content {
    margin-top: 10px;
    font-size: 13px;
}

.comment-list li .reply a {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.comment-respond {
    padding: 50px;
    border: 1px solid #eee;
    border-radius: 2px;
}

.comment-respond .evo-module-title {
    margin-bottom: 0;
}

.comment-respond .evo-module-title .evo-title {
    margin-top: 0;
}

.comment-respond form p {
    margin-bottom: 20px;
}

.comment-respond form p.logged-in-as a {
    color: #111;
}

.comment-respond form p:last-child {
    margin-bottom: 0;
}

.comment-respond form label {
    display: none;
}

.comment-respond .comment-notes {
    color: #bbb;
    margin-bottom: 20px;
}

.comment-respond .comment-form-author {
    display: inline-block;
    float: left;
    width: 49.5%;
}

.comment-respond .comment-form-email {
    display: inline-block;
    float: right;
    width: 49.5%;
}

.comment-respond .form-control {
    border-radius: 0;
    height: 47px;
    font-size: 13px;
}

.comment-respond textarea.form-control {
    height: 190px;
    padding-top: 12px;
}

.comment-respond input[type="submit"] {
    display: inline-block;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    height: 53px;
    background-color: #fff;
    color: #111;
    border: none;
    border:2px solid #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.comment-respond input[type="submit"]:hover {
    background-color: #111;
    color: #fff;
}

.evo-related-posts, .evo-related-category {
    margin-top: 70px;
}

.evo-related-posts .evo-post-image img {
    width: 100%;
}

.evo-post-directions {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 50px;
}

.evo-post-directions > * {
    display: inline-block;
    float: left;
    width: 50%;
}

.evo-post-directions .prev-post {
    text-align: right;
}

.evo-post-directions > * > a {
    position: relative;
    display: block;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    padding: 50px 30px;
    color: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.evo-post-directions > *~* {
    border-left:1px solid #eee;
}

.evo-post-directions > * > a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    top: 0;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.evo-post-directions > * > a span {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.5;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.evo-post-directions > * > a .evo-entry-title {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 18px;
    margin: 0;
}

.evo-post-directions > * > a:hover {
    color: #fff;
}

.evo-post-directions > * > a:hover:before {
    background-color: rgba(0, 0, 0, 0.5);
}

.entry-content iframe {
    max-width: 100%;
    max-height: 450px;
}

.entry-content iframe.instagram-media{
    max-height: 100%!important;
}

.entry-content table, .evo-comment-list .comment table {
    font-size: 15px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    margin-top: 15px;
}

.entry-content table thead {
    background-color: #f8f8f8;
}

.entry-content table thead th {
    padding:10px 20px;
}

.entry-content table tbody th, .entry-content table tbody td, .evo-comment-list .comment .comment-text table tbody th, .evo-comment-list .comment .comment-text table tbody td {
    padding:10px 20px;
}

.entry-content table tbody tr~tr, .evo-comment-list .comment .comment-text table tbody tr~tr {
    border-top:1px solid #eee;
}

.entry-content dt, .evo-comment-list .comment .comment-text dt {
    font-size: 15px;
    margin-bottom: 5px;
}

.entry-content dd, .evo-comment-list .comment .comment-text dd {
    font-size: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
}

.entry-content > ul, .entry-content > ul ul, .evo-comment-list .comment .comment-text ul {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.entry-content ol, .evo-comment-list .comment .comment-text ol {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: decimal;
}

.entry-content ul li, .entry-content ol li, .evo-comment-list .comment .comment-text ul li, .evo-comment-list .comment .comment-text ol li {
    margin:3px 0;
}

.entry-content ul ul, .entry-content ol ol, .evo-comment-list .comment .comment-text ul ul, .evo-comment-list .comment .comment-text ol ol {
    margin-bottom: 0;
}

.entry-content ul ul, .evo-comment-list .comment .comment-text ul ul {
    list-style-type: circle;
}

.entry-content ul ul ul, .evo-comment-list .comment .comment-text ul ul ul {
    list-style-type: square;
}

.entry-content blockquote, .evo-comment-list .comment blockquote {
    position: relative;
    padding: 50px 20px 35px;
    margin: 30px 0 30px;
    text-align: center;
    border-left: 0;
    background-color: #f8f8f8;
}

.entry-content blockquote:before, .evo-comment-list .comment blockquote:before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: "\f10e";
    font-size: 30px;
    left: 0;
    width: 60px;
    right: 0;
    margin: auto;
    top: -23px;
    color: #eee;
    z-index: 0;
    background-color: #fff;
    border-radius: 50%;
}

.entry-content blockquote p, .evo-comment-list .comment blockquote p {
    font-size: 21px!important;
    line-height: 32px!important;
    font-weight: 700;
}

.entry-content blockquote p cite, .evo-comment-list .comment blockquote cite {
    display: inline-block;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    color: #999;
    margin-top: 10px;
}

.entry-content blockquote p cite a, .evo-comment-list .comment blockquote cite a {
    color: #999;
}

.evo-entry-content .gallery dl img {
    display: inline-block;
}

.evo-entry-content .gallery dd.wp-caption-text {
    font-size: 12px;
}

.evo-entry-content .page-links {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.evo-entry-content .page-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 29px;
    border: 1px solid #ddd;
    color: #111;
    font-weight: 600;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-entry-content .page-links a:first-child {
    margin-left: 5px;
}

.evo-entry-content .page-links a:hover {
    border-color: #111;
}

.evo-entry-content .post-password-form {
    position: relative;
    display: inline-block;
    width: 100%;
    background-color: #f8f8f8;
    padding:20px;
}

.evo-entry-content .post-password-form p {
    font-size: 13px;
}

.evo-entry-content .post-password-form p input[type="password"] {
    display: inline-block;
    width: 240px;
    height: 40px;
    padding:0 15px;
    border:1px solid #ddd;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    outline: none;
    box-shadow: none;
}

.evo-entry-content .post-password-form p input[type="password"]:focus {
    border-color: #111;
}

.evo-entry-content .post-password-form p input[type="submit"] {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    background-color: #111;
    color: #fff;
    height: 40px;
    padding: 0 20px;
}

.single .evo-single.tag-pingbacks-2 ol {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/*============================================================================
  >> 10. FOOTER
  ============================================================================
*/
.evo-footer {
    padding-top: 50px;
}

.evo-footer-logo {
    display: inline-block;
    width: 100%;
    text-align: center;
    max-height: 90px;
    line-height: 90px;
    border-top:1px solid #eee;
    padding-top: 15px;
}

.evo-footer-logo .evo-brand-logo {
    z-index: 1;
}

.evo-footer-logo .evo-logo-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 48px;
    font-weight: 900;
}

.evo-footer-logo .evo-brand-logo a img {
    max-height: 40px;
}

.evo-footer-social ul {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-top:1px solid #eee;
}

.evo-footer-social ul li {
    display: inline-block;
    padding: 0 13px;
}

.evo-footer-social ul li a {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    color: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-footer-social ul li a span {
    margin-left: 5px;
    font-weight: 700;
    margin-left: 5px;
}

.evo-footer-copyright {
    position: relative;
    text-align: center;
    padding: 40px 0 20px;
    border-top:1px solid #eee;
    margin-top: 20px;
}

.evo-footer-copyright p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.evo-back-to-top {
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    margin: auto;
}

.evo-back-to-top a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 37px;
    border:2px solid #eee;
    background-color: #fff;
    color: #999;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-footer.dark {
    background-color: #111;
}

.evo-footer.light {
    background-color: #fff;
    border-top:1px solid #ddd;
}

.evo-footer.dark .evo-footer-copyright, .evo-footer.dark .evo-footer-social ul, .evo-footer.dark .evo-footer-logo {
    border-color: #333;
}

.evo-footer.dark {
    color: #999;
}

.evo-footer.dark a, .evo-footer.dark .evo-logo-text, .evo-footer.dark .evo-widget-title .evo-title {
    color: #fff;
}

.evo-footer.dark .evo-back-to-top a {
    border-color: #555;
    color: #555;
    background-color: #111;
}

.evo-footer.dark .evo-back-to-top a:hover {
    color: #fff;
    border-color: #fff;
}

.evo-footer.light .evo-footer-copyright {
    border-color: #eee;
}

.evo-footer.light .evo-back-to-top a:hover {
    color: #111;
    border-color: #111;
}

.evo-footer .evo-widget-title {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}
/*============================================================================
  >> 11. WOOCOMMERCE
  ============================================================================
*/
.evo-shopping-bag a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 42px;
    color: #111;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.evo-shopping-bag svg {
    width: 18px;
}

.evo-shopping-bag .evo-total-product {
    position: absolute;
    font-size: 9px;
    font-weight: 600;
    background-color: #ff5959;
    color: #fff;
    line-height: normal;
    bottom: 3px;
    right: 2px;
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
}
.pif-has-gallery {
    position: relative;
}

.pif-has-gallery .onsale {
    z-index: 999999;
}

.pif-has-gallery .wp-post-image {
    opacity: 1;
}

.pif-has-gallery .wp-post-image--secondary {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
}

.evo-shop-page {
    margin-top: 30px;
}

.evo-shop-page .page-title, .woocommerce-account .evo-main .woocommerce h2 {
    font-weight: 700;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.woocommerce .evo-standart-page-title {
    padding: 0 0 10px;
    border-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.woocommerce-checkout .woocommerce .evo-standart-page-title, .woocommerce-cart .woocommerce .evo-standart-page-title {
    border-bottom: 0;
    margin-bottom: 0;
}

.woocommerce .evo-standart-page-title h1 {
    font-weight: 700;
    text-align: left;
    margin: 0;
}

.woocommerce .woocommerce-result-count {
    font-size: 12px;
    margin-bottom: 30px;
}

.woocommerce .woocommerce-ordering select {
    margin-top: 0;
    outline: none;
    border: 0;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
}

.woocommerce .products ul, .woocommerce ul.products {
    margin-left: -15px;
    margin-right: -15px;
}

.woocommerce .related.products ul {
    display: -webkit-box;
}

.woocommerce .evo-shop-3 ul.products li.product, .woocommerce-page .evo-shop-3 ul.products li.product {
    position: relative;
    width: 33.33%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
    margin-left: 0;
}

.woocommerce .evo-shop-4 ul.products li.product, .woocommerce-page .evo-shop-4 ul.products li.product {
    position: relative;
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
    margin-left: 0;
}

.woocommerce .evo-shop-5 ul.products li.product, .woocommerce-page .evo-shop-5 ul.products li.product {
    position: relative;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
    margin-left: 0;
}

.woocommerce .evo-shop-6 ul.products li.product, .woocommerce-page .evo-shop-6 ul.products li.product {
    position: relative;
    width: 16.66%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
    margin-left: 0;
}

.woocommerce ul.products li.product .evo-product-thumb-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .evo-product-thumb a {
    display: block;
}

.woocommerce ul.products li.product .evo-product-thumb-wrapper .evo-product-thumb-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    opacity: 0;
    -webkit-transition: opacity 0.7s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    -moz-transition: opacity 0.7s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    -ms-transition: opacity 0.7s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    -o-transition: opacity 0.7s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    transition: opacity 0.7s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.woocommerce ul.products li.product:hover .evo-product-thumb-wrapper .evo-product-with-second .evo-product-thumb-bg {
    opacity: 1;
    transform: scale(1.08);
}

.woocommerce ul.products li.product .evo-product-thumb-wrapper img {
    margin:0;
}

.woocommerce ul.products li.product .onsale, .woocommerce span.onsale {
    min-width: auto;
    min-height: auto;
    line-height: normal;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 0;
    margin: 7px;
    padding: 4px 5px;
}

.woocommerce span.onsale {
    top: 0;
    left: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    padding-top: 0;
    padding-bottom: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title a, .woocommerce ul.products li.product .woocommerce-loop-product__title a, .woocommerce ul.products li.product h3 a {
    color: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce ul.products li.product .star-rating {
    font-size: 10px;
    margin-top: 7px;
}

.woocommerce ul.products li.product .price {
    font-size: 14px;
    font-weight: 400;
    color: #111;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce ul.products li.product .price del {
    display: inline-block;
    margin-right: 5px;
}

.woocommerce ul.products li.product .button {
    margin-top: -30px;
    position: absolute;
    width: 100%;
    border-radius: 0;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0;
    height: 38px;
    line-height: 38px;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce ul.products li.product .button.loading:after {
    top: 1px!important;
}

.woocommerce ul.products li.product .added_to_cart.wc-forward {
    position: absolute;
    width: 100%;
    bottom: 0;
    border-radius: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0;
    height: 38px;
    line-height: 38px;
    color: #515151;
}

.woocommerce ul.products li.product .button.added {
    display: none;
}

.woocommerce ul.products li.product:hover .button {
    opacity: 1;
    margin-top: -38px;
}

.woocommerce nav.woocommerce-pagination {
    text-align: initial;
}

.woocommerce nav.woocommerce-pagination ul {
    border:0!important;
}

.woocommerce-pagination ul li {
    margin-right: 2px!important;
    border:0!important;
}

.woocommerce-pagination ul li .page-numbers {
    width: 34px;
    height: 34px;
    font-size: 12px;
    text-align: center;
    line-height: 32px!important;
    font-weight: 600!important;
    color: #111;
    padding: 0!important;
    border:1px solid #ddd!important;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: #111;
    border-color: transparent;
    color: #fff;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
    border: 0;
}

.woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
    color: #111;
    font-weight: 600;
}

.woocommerce-account .evo-main .woocommerce {
    margin-top: 30px;
}

.woocommerce-account .evo-main .woocommerce h2 {
    border:0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.woocommerce-MyAccount-navigation {
    position: relative;
    background-color: #f8f8f8;
}

.woocommerce-MyAccount-navigation ul li~li {
    border-top:2px solid #fff;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    color: #111;
    padding:10px 25px;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border-radius: 0!important;
    border:0!important;
    background-color: #f8f8f8;
    padding:40px;
    margin-top: 15px;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    border: 1px solid #ddd;
}

.woocommerce .woocommerce-form-login .woocommerce-Button {
    margin-right: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    height: 40px;
    padding: 0 40px;
    border-radius: 0;
    background-color: #111;
    color: #fff;
    margin-top: 15px;
}

.woocommerce .woocommerce-form-login .woocommerce-Button:hover {
    color: #fff;
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox.inline {
    font-size: 12px;
    font-weight: 400;
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox.inline input[type=checkbox] {
    margin-top: -3px;
    margin-right: 5px;
    vertical-align: middle;
}

.woocommerce-LostPassword.lost_password {
    margin-top: 20px;
    font-size: 13px;
}

.single-product .product_title {
    letter-spacing: -0.3px;
}

.single-product .star-rating {
    font-size: 11px;
    margin-top: 9px!important;
    color: #eeb900;
}

.woocommerce ul.products li.product .star-rating {
    color: #eeb900;
}

.single-product .woocommerce-product-rating {
    margin-bottom: 5px!important;
}

.single-product .woocommerce-product-rating a {
    font-size: 12px;
    color: #111;
}

.single-product div.product .price {
    font-size: 28px!important;
    letter-spacing: -0.5px;
}

.single-product div.product .price ins {
    font-weight: 600!important;
    text-decoration: none;
}

.single-product .woocommerce-product-details__short-description p {
    font-size: 15px;
    line-height: 24px;
}

.single-product .product form.cart {
    margin-top: 20px;
}

.woocommerce .quantity {
    position: relative;
    margin-right: 10px!important;
}

.woocommerce .quantity .input-text {
    width: 70px;
    height: 40px;
    border: 1px solid #ddd;
    padding-right: 20px;
    outline: none;
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
}

.woocommerce .quantity .minus, .woocommerce .quantity .plus {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    top: 0;
    padding: 0;
    font-size: 13px;
    background-color: #fff;
    border: 1px solid #ddd;
    outline: none;
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
}

.woocommerce .quantity .minus {
    top: initial;
    bottom: 0;
    border-top:0;
}

.single-product .product form.cart button {
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    height: 40px;
    padding: 0 35px;
}

.single-product .woocommerce-message .button.wc-forward {
    font-size: 12px;
    text-transform: uppercase;
    background-color: transparent;
    padding: 0;
    margin-top: 5px;
}

.single-product .product_meta {
    font-size: 12px;
}

.single-product .product_meta > * {
    display: inline-block;
    width: 100%;
}

.single-product .product_meta a {
    color: #111;
}

.single-product .related.products h2 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
}

.woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.single-product .related.products ul.products li {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
}

.single-product .evo-related-post-2 .related.products ul.products li {
    width: 50%;
}

.single-product .evo-related-post-3 .related.products ul.products li {
    width: 33.33%;
}

.single-product .evo-related-post-4 .related.products ul.products li {
    width: 25%;
}

.single-product .related.products ul.products li .woocommerce-loop-product__title {
    padding-bottom: 0;
}

.single-product .related.products ul.products li span.price {
    font-size: 14px!important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 0;
    padding-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 0;
    background-color: #f8f8f8;
    border-color: #ddd;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child {
    border-left:1px solid #ddd;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom-color: #ddd;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
    content: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.woocommerce-tabs.wc-tabs-wrapper h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.woocommerce #reviews #comments ol.commentlist li {
    padding:15px 0;
}

.woocommerce #reviews #comments ol.commentlist li:first-child {
    padding-top: 0;
}

.woocommerce #reviews #comments ol.commentlist li:last-child {
    padding-bottom: 0;
}

.woocommerce #reviews #comments ol.commentlist li~li {
    border-top:1px solid #eee;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
    padding:0;
    border:0;
    width: 45px;
    top: 15px;
}

.woocommerce #reviews #comments ol.commentlist li:first-child img.avatar {
    top: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin-left: 70px;
    border:0;
    padding:0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
    margin-bottom: 5px;
}

.woocommerce #review_form #respond {
    padding-top: 20px;
    border-top:1px solid #eee;
}

.woocommerce #review_form .comment-form-rating a {
    color: #eeb900;
}

.woocommerce #review_form #respond textarea {
    min-height: 180px;
    padding:20px;
    border: 1px solid #ddd;
    outline: none;
    box-shadow: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce #review_form #respond textarea:focus {
    border-color: #111;
}

.woocommerce #review_form #respond .form-submit input {
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    height: 40px;
    padding: 0 35px;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce #review_form #respond .form-submit input:hover {
    opacity: 0.8;
}

.woocommerce #content div.product .woocommerce-tabs, .woocommerce div.product .woocommerce-tabs, .woocommerce-page #content div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.woocommerce .product_thumbnails {
    margin-top: 6px;
    margin-left: -3px;
    max-width: none;
}

.woocommerce .product_thumbnails li {
    padding-left: 3px;
    padding-right: 3px;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce .product_thumbnails li.slick-current.slick-active {
    opacity: 0.3;
}

.woocommerce div.product .product_title {
    font-size: 40px;
    margin-bottom: 0;
}

.woocommerce .woocommerce-breadcrumb {
    font-size: 12px;
    color: #666;
    margin-bottom: 30px;
    margin-right: 85px;
    border-bottom: 1px solid #eee;
}

.woocommerce .woocommerce-breadcrumb a, .woocommerce .woocommerce-breadcrumb span {
    color: #a9a9a9;
}

.woocommerce .evo-product-navigation {
    display: inline-block;
    float: right;
    margin-top: -3px;
}

.woocommerce .evo-product-navigation .product-nav-item {
    display: inline-block;
}

.woocommerce .evo-product-navigation .product-nav-item a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #111;
    border:1px solid #eee;
}

.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    float: none;
}

.woocommerce-billing-fields label, .woocommerce-shipping-fields__field-wrapper label, .woocommerce-additional-fields__field-wrapper label {
    font-size: 12px;
    text-transform: uppercase;
}

.woocommerce .woocommerce-billing-fields .form-row, .woocommerce .shipping_address .form-row {
    margin-bottom: 10px;
}

.woocommerce .woocommerce-billing-fields .form-row span.select2-selection, .woocommerce .shipping_address .form-row span.select2-selection {
    border-radius: 0;
    height: 40px;
}

.woocommerce .woocommerce-billing-fields .form-row span.select2-selection__rendered, .woocommerce .shipping_address .form-row span.select2-selection__rendered {
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    font-size: 13px;
}

.woocommerce .woocommerce-billing-fields .form-row .select2-container--default .select2-selection--single .select2-selection__arrow, .woocommerce .shipping_address .form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 40px;
    height: 40px;
}

#add_payment_method .checkout .col-2 h3#ship-to-different-address, .woocommerce-cart .checkout .col-2 h3#ship-to-different-address, .woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
    font-size: 14px;
    text-transform: uppercase;
}

.woocommerce-shipping-fields .woocommerce-form__input-checkbox {
    margin-left: 0!important;
    margin-top: 1px;
}

.woocommerce-shipping-fields #ship-to-different-address span {
    margin-left: 25px;
}

.woocommerce-additional-fields #order_comments {
    height: 180px;
    font-size: 13px;
    padding:20px;
}

.woocommerce-billing-fields > h3, .woocommerce-checkout h3 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #111;
    margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce table.shop_table {
    border: 0;
    border-radius: 0;
}

.woocommerce-checkout-table-wrapper {
    padding:20px;
    background-color: #f8f8f8;
}

.woocommerce-checkout-table-wrapper .product-total {
    text-align: right;
}

.woocommerce-checkout-table-wrapper .cart_item {
    font-size: 13px;
}

.woocommerce-checkout-table-wrapper th {
    font-size: 13px;
    text-transform: uppercase;
}

.woocommerce ul#shipping_method li label {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: top;
    padding-left: 26px;
}

.woocommerce-checkout-table-wrapper #payment {
    border-radius: 0;
    background-color: transparent;
    border-top: 1px solid #ddd;
}

.woocommerce-checkout-table-wrapper #payment label {
    font-size: 13px;
    text-transform: uppercase;
    vertical-align: top;
}

.woocommerce-checkout-table-wrapper #payment div.payment_box {
    background-color: transparent;
    padding: 0 0 0 30px;
    margin-top: 0;
    margin-bottom: 30px;
}

.woocommerce-checkout-table-wrapper #payment div.payment_box:before {
    content: none;
}

.woocommerce-checkout-table-wrapper #payment div.payment_box p {
    font-size: 13px;
    line-height: 22px;
}

.woocommerce-checkout-table-wrapper #payment .payment_method_paypal {
    position: relative;
}

.woocommerce-checkout-table-wrapper #payment .payment_method_paypal input {
    position: absolute;
    top: 5px;
}

.woocommerce-checkout-table-wrapper #payment .payment_method_paypal img {
    display: none;
}

.woocommerce-checkout-table-wrapper #payment .payment_method_paypal a {
    line-height: 25px!important;
    font-size: 12px!important;
    font-weight: 400;
    text-transform: capitalize;
    color: #999;
    border-bottom: 1px dashed;
}

.woocommerce-checkout-table-wrapper input[type="radio"], .woocommerce .evo-cart-page .cart-collaterals table #shipping_method li input[type="radio"] {
    position: absolute;
    left: -99999px;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: transparent;
}

.woocommerce-checkout-table-wrapper #payment li, .woocommerce .evo-cart-page .cart-collaterals table #shipping_method li {
    position: relative;
}

.woocommerce-checkout-table-wrapper #payment li label, .woocommerce .evo-cart-page .cart-collaterals table #shipping_method li label {
    width: 100%;
    padding-left: 32px;
}

.woocommerce-checkout-table-wrapper #shipping_method li label:before, .woocommerce-checkout-table-wrapper #payment li label:before, .woocommerce .evo-cart-page .cart-collaterals table #shipping_method li label:before {
    position: absolute;
    display: block;
    content: '';
    width: 16px;
    height: 16px;
    left: 0;
    top: 0px;
    background-image: url(includes/assets/css/radio.png);
    background-color: #fff;
    background-repeat: no-repeat;
    -webkit-background-size: 16px 40px;
    -o-background-size: 16px 40px;
    background-size: 16px 40px;
    background-position: 0 0;
    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    overflow: hidden;
}

.woocommerce-checkout-table-wrapper #payment li label:before {
    top: 4px;
}

.woocommerce-checkout-table-wrapper #shipping_method li input:checked + label:before, .woocommerce-checkout-table-wrapper #payment li input:checked + label:before, .woocommerce .evo-cart-page .cart-collaterals table #shipping_method li input:checked + label:before {
    background-position: 0px -24px;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    width: 100%;
    height: 47px;
    padding: 0 35px;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0;
    margin-top: 10px;
}

.woocommerce-checkout .woocommerce {
    margin-top: 30px;
}

.woocommerce-checkout .woocommerce-info {
    padding: 15px 20px;
    background-color: transparent;
    border: 1px dashed #ddd;
}

.woocommerce-checkout .woocommerce-info:before {
    content: none;
}

.woocommerce-checkout .woocommerce form.checkout_coupon {
    border: 0!important;
}

.woocommerce-checkout .checkout_coupon p {
    margin-bottom: 0;
}

.woocommerce-checkout .checkout_coupon input {
    height: 45px!important;
}

.woocommerce-checkout .checkout_coupon .button {
    width: 100%;
    height: 45px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce .evo-cart-page .cart_totals {
    float: none;
    width: 100%;
}

.woocommerce .evo-cart-page table.shop_table {
    border-radius: 0;
    border: 0;
}

.woocommerce .evo-cart-page table.shop_table thead {
    display: none;
}

.woocommerce .evo-cart-page table.shop_table thead th {
    font-size: 13px;
    text-transform: uppercase;
}

.woocommerce .evo-cart-page table.shop_table .product-thumbnail, .woocommerce .evo-cart-page table.shop_table .product-thumbnail img {
    width: 100px;
}

.woocommerce .evo-cart-page table.shop_table .product-thumbnail {
    padding:20px 0;
}

.woocommerce .evo-cart-page table.shop_table tbody td {
    font-size: 15px;
    padding:30px 15px;
}

.woocommerce .evo-cart-page table.shop_table tbody td.actions {
    padding-left: 0;
    padding-right: 0;
}

.woocommerce .evo-cart-page table.shop_table tbody td.actions .coupon .input-text {
    min-width: 300px;
    height: 43px;
    padding:0 15px;
    font-size: 13px;
}

.woocommerce .evo-cart-page table.shop_table tbody td.actions .coupon .button, .woocommerce .evo-cart-page table.shop_table tbody td.actions input[name="update_cart"] {
    border-radius: 0;
    font-size: 13px;
    text-transform: uppercase;
    height: 43px;
    padding:0 25px;
}

.woocommerce .evo-cart-page table.shop_table tbody td.actions input[name="update_cart"] {
    background-color: transparent;
    padding:0;
}

.woocommerce .evo-cart-page table.shop_table .product-subtotal .woocommerce-Price-amount {
    font-weight: 600;
}

.woocommerce .evo-cart-page table.shop_table tbody td.product-name {
    font-weight: 600;
}

.woocommerce .evo-cart-page table.shop_table tbody td a {
    color: #111;
}

.woocommerce .evo-cart-page table.shop_table .product-quantity .quantity {
    max-width: 70px;
}

.woocommerce .evo-cart-page .cart-collaterals {
    padding:30px;
    background-color: #f8f8f8;
}

.woocommerce .evo-cart-page .cart-collaterals h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    margin:0;
    padding-bottom: 10px;
}

.woocommerce .evo-cart-page .cart-collaterals table {
    margin-top: 10px;
}

.woocommerce .evo-cart-page .cart-collaterals table th {
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
}

.woocommerce .evo-cart-page .cart-collaterals table .shipping th, .woocommerce .evo-cart-page .cart-collaterals table .shipping td {
    padding-top: 13px;
}

.woocommerce .evo-cart-page .cart-collaterals table tbody td {
    padding: 8px 0;
}

.woocommerce .evo-cart-page .cart-collaterals .woocommerce-shipping-calculator {
    margin-top: 20px;
}

.woocommerce .evo-cart-page .cart-collaterals .woocommerce-shipping-calculator a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce .evo-cart-page .cart-collaterals .order-total td .woocommerce-Price-amount {
    font-size: 22px;
}

.woocommerce .evo-cart-page .cart-collaterals .order-total td, .woocommerce .evo-cart-page .cart-collaterals .order-total th {
    padding-top: 25px;
}

.woocommerce .evo-cart-page .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form select {
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    border: 1px solid #ddd;
}

.woocommerce .evo-cart-page .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form .button {
    border-radius: 0;
    width: 100%;
    font-size: 13px;
    height: 40px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce .evo-cart-page table.shop_table tbody td.actions .coupon .button, .woocommerce-checkout .checkout_coupon .button, .woocommerce-checkout .checkout_coupon .button:hover {
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce .evo-cart-page .cart-collaterals .wc-proceed-to-checkout a {
    font-size: 13px;
    text-transform: uppercase;
    height: 45px;
    line-height: 45px;
    border-radius: 0;
    padding:0;
}

.evo-cart-page {
    margin-top: 30px;
}

.woocommerce .cart-empty {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 20%;
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce .return-to-shop {
    text-align: center;
}

.woocommerce .return-to-shop a {
    height: 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 35px;
    line-height: 40px;
    border-radius: 0;
    margin-top: 20px;
    margin-bottom: 20%;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce .return-to-shop a:hover {
    opacity: 0.8;
    color: #fff;
}

/* Woocommerce Widgets */
.woocommerce.widget_product_categories .dropdown_product_cat {
    width: 100%;
    height: 40px;
    padding:0 15px;
}

.woocommerce.widget_rating_filter ul li, .woocommerce.widget_recently_viewed_products ul li, .woocommerce.widget_top_rated_products ul li, .woocommerce.widget_products ul li, .woocommerce.widget_recent_reviews ul li, .woocommerce.widget_products ul li, .woocommerce.widget_shopping_cart .cart_list li {
    padding-top: 10px;
    padding-bottom: 10px;
}

.woocommerce.widget_shopping_cart .cart_list li a.remove {
    top: 10px;
}

.woocommerce.widget_rating_filter ul li:first-child, .woocommerce.widget_recently_viewed_products ul li:first-child, .woocommerce.widget_top_rated_products ul li:first-child, .woocommerce.widget_products ul li:first-child, .woocommerce.widget_products ul li:first-child, .woocommerce.widget_recent_reviews ul li:first-child, .woocommerce.widget_products ul li:first-child, .woocommerce.widget_shopping_cart .cart_list li:first-child {
    padding-top: 0;
}

.woocommerce.widget_shopping_cart .cart_list li:first-child a.remove {
    top: 0;
}

.woocommerce.widget_rating_filter ul li:last-child, .woocommerce.widget_recently_viewed_products ul li:last-child, .woocommerce.widget_top_rated_products ul li:last-child, .woocommerce.widget_products ul li:last-child, .woocommerce.widget_products ul li:last-child, .woocommerce.widget_recent_reviews ul li:last-child, .woocommerce.widget_products ul li:last-child {
    padding-bottom: 0;
}

.woocommerce.widget_rating_filter ul li~li, .woocommerce.widget_recently_viewed_products ul li~li, .woocommerce.widget_top_rated_products ul li~li, .woocommerce.widget_products ul li~li, .woocommerce.widget_products ul li~li, .woocommerce.widget_recent_reviews ul li~li, .woocommerce.widget_products ul li~li, .woocommerce.widget_shopping_cart .cart_list li~li {
    border-top:1px solid #eee;
}

.woocommerce.widget_rating_filter ul li .star-rating, .woocommerce.widget_top_rated_products ul li .star-rating, .woocommerce.widget_products ul li, .woocommerce.widget_recent_reviews ul li .star-rating {
    font-size: 11px;
    color: #eeb900;
}

.woocommerce.widget_recent_reviews ul li .star-rating {
    margin-top: 0!important;
    margin-bottom: 5px;
}

.woocommerce.widget_recently_viewed_products ul li a, .woocommerce.widget_top_rated_products ul li a, .woocommerce.widget_products ul li a, .woocommerce.widget_products ul li a, .woocommerce.widget_recent_reviews ul li a, .woocommerce.widget_shopping_cart .cart_list li a {
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #111;
}

.woocommerce.widget_products ul li a, .woocommerce.widget_products ul li a {
    font-size: 14px;
}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    width: 44px;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px 25px;
}

.woocommerce .woocommerce-mini-cart__buttons.buttons .button.checkout {
    color: #fff;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    opacity: 0.8;
}

.woocommerce .widget_price_filter .price_label {
    font-size: 14px;
    font-weight: 600;
}

.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons.buttons {
    margin-top: 20px;
}

.woocommerce .widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons a {
    font-size: 11px;
    text-transform: uppercase;
    height: 34px;
    line-height: 34px;
    padding: 0 20px;
    border-radius: 0;
}

.woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total {
    padding: 10px 0 0;
    font-weight: 700;
}

.woocommerce ul.cart_list, .woocommerce ul.product_list_widget del, .woocommerce ul.cart_list, .woocommerce ul.product_list_widget ins, .woocommerce ul.product_list_widget  .woocommerce-Price-amount {
    font-size: 13px;
    color: #111;
}

/* backward compatibility - .woocommerce-LoopProduct-link will probably be removed in future releases */
body.woocommerce:not(.single-product) ul.products li.pif-has-gallery a.woocommerce-LoopProduct-link [class*="wp-post-image"] {
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

body.woocommerce:not(.single-product) ul.products li.pif-has-gallery a.woocommerce-LoopProduct-link:hover .wp-post-image {
    opacity: 0;
}

body.woocommerce:not(.single-product) ul.products li.pif-has-gallery a.woocommerce-LoopProduct-link:hover .wp-post-image--secondary {
    opacity: 1;
}

body.woocommerce:not(.single-product) ul.products li.pif-has-gallery a.woocommerce-loop-product__link [class*="wp-post-image"] {
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

body.woocommerce:not(.single-product) ul.products li.pif-has-gallery a.woocommerce-loop-product__link:hover .wp-post-image {
    opacity: 0;
}

body.woocommerce:not(.single-product) ul.products li.pif-has-gallery a.woocommerce-loop-product__link:hover .wp-post-image--secondary {
    opacity: 1;
}
body.woocommerce:not(.single-product) ul.products li .add-to-cart-button{
    position: absolute;
    top: 10px;
    left:10px;
    background-color: #fff;
    padding: 5px 10px; 
    opacity: 0;
}
/*============================================================================
  >> 12. MOBILE SETTINGS
  ============================================================================
*/

@media (max-width: 1280px) {
    .evo-featured-padding {
        padding:0 50px;
    }
}

@media (max-width: 1200px) {
    .evo-featured-padding {
        padding:0;
    }
    .evo-featured-style-a .evo-post, .evo-featured-style-b .evo-post, .evo-featured-style-d .evo-post {
        height: 500px;
    }
    .evo-featured-small-column {
        width: 415px;
    }
    .evo-featured-small-column .evo-entry-title {
        font-size: 28px;
    }
    .evo-cat-module-b .evo-lr-posts, .evo-cat-module-b .evo-small-list {
        width: 100%;
    }
    .evo-cat-module-b .evo-small-list .evo-post {
        display: inline-block;
        float: left;
        width: 49.55%;
        margin-top: 40px;
    }
    .evo-cat-module-b .evo-small-list .evo-post:nth-child(2) {
        float: right;
    }
    .evo-post-tv-body {
        padding: 0 0 50px;
    }
    .evo-blog-post-e .evo-post.one-post .evo-post-body-inner, .evo-blog-post-e .evo-post.two-post .evo-post-body-inner{
        padding: 20px;
    }
}

@media (max-width: 1170px) {
    .evo-mobile-hidden {
        display: none;
    }
    .evo-desktop-hidden {
        display: block;
    }
    .evo-featured > .container {
        width: 100%;
        margin-top: 15px;
    }
    .evo-single-main .evo-post-main, .evo-single-main .evo-sidebar, .evo-single .evo-post-image a {
        width: 100%
    }
    .evo-single-image.evo-standart-e {
        margin-top: -40px;
    }
    .evo-standart-e h1.evo-entry-title {
        padding: 0 100px;
    }
    .evo-single.evo-standart-f .evo-post-image .evo-overlay-inner {
        padding-top:0!important;
        -webkit-align-self: center;
        align-self: center;
    }
    .evo-standart-f h1.evo-entry-title {
        font-size: 54px;
    }
}

@media (max-width: 1024px) {
    .evo-post .evo-post-image img {
        width: 100%;
    }
    .evo-column-3 .evo-post {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .evo-blog-post-e .evo-post.two-post .evo-post-body-inner{
        margin-right: -300px;
    }
    .evo-blog-post-e .evo-post.one-post .evo-post-body-inner{
        margin-left:-300px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .evo-featured-large-column {
        width: 100%;
    }
    .evo-ft-post-large-body {
        padding:0;
    }
    .evo-featured-small-column {
        position: relative;
        display: inline-block;
        width: 100%;
        margin-top: 40px;
    }
    .evo-featured-small-column .evo-post {
        position: relative;
        display: block;
        display: -webkit-box;
        display: -moz-box;
        display: box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        box-orient: vertical;
    }
    .evo-featured-small-column .evo-post .evo-ft-white-body {
        display: block;
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        box-ordinal-group: 2;
        padding: 30px 0 0;
    }
    .evo-featured-small-column .evo-post .post-image {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        box-ordinal-group: 1;
    }
    .evo-featured-large-column .evo-entry-title {
        font-size: 28px;
    }
    .evo-cat-module-b .evo-lr-posts .evo-post, .evo-cat-module-b .evo-small-list .evo-post, .evo-cat-module-c .evo-post, .evo-cat-module-d .evo-post-image {
        display: inline-block;
        width: 100%;
        text-align: center!important;
        margin-bottom: 30px;
        margin-top: 0;
    }
    .evo-cat-module-b .evo-lr-posts .evo-post-image {
        margin:0!important;
    }
    .evo-cat-module-b .evo-small-list .evo-post {
        width: 100%;
    }
    .evo-cat-module-b .evo-lr-posts .evo-entry-title, .evo-cat-module-b .evo-small-list .evo-entry-title, .evo-cat-module-c .evo-small-list .evo-entry-title {
        font-size: 28px;
        margin-top: 20px;
    }
    .evo-cat-module-d .evo-module-title .evo-title, .evo-slider .slick-arrow {
        display: none!important;
    }
    .evo-cat-module-d .evo-post-body {
        width: 100%;
        margin-top: 0;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    .evo-cat-module-f .evo-small-list .evo-post {
        display: inline-block;
        float: left;
        width: 49%;
        margin-top: 20px;
        text-align: center;
    }
    .evo-cat-module-f .evo-small-list .evo-post:nth-child(2) {
        float: right;
    }
    .evo-blog-post-d .evo-post:nth-child(1) .evo-entry-title, .evo-blog-post-d .evo-post:nth-child(2) .evo-entry-title {
        font-size: 22px;
    }
    .evo-standart-e h1.evo-entry-title {
        padding:0;
        font-size: 44px;
    }
    .evo-post-tv-body.evo-single h1.evo-entry-title {
        padding:0;
    }
    .column-4 .evo-post {
        width: 50%;
        margin-bottom: 50px;
    }
    .evo-post-tv-other-videos {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .evo-search-form .search_input {
        font-size: 50px;
        height: 50px;
        padding: 40px 0;
    }
    .evo-featured-style-a .evo-entry-title, .evo-featured-style-b .evo-entry-title {
        font-size: 44px;
    }
    .evo-featured-large-column, .evo-blog-post-d .evo-post:nth-child(1), .evo-blog-post-d .evo-post:nth-child(2) {
        width: 100%;
    }
    .evo-ft-post-large-body, .evo-featured-style-d .evo-entry-title {
        padding:0;
    }
    .evo-featured-small-column {
        position: relative;
        display: inline-block;
        width: 100%;
        margin-top: 40px;
    }
    .evo-featured-small-column .evo-post {
        position: relative;
        display: block;
        display: -webkit-box;
        display: -moz-box;
        display: box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        box-orient: vertical;
    }
    .evo-featured-small-column .evo-post .evo-ft-white-body {
        display: block;
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        box-ordinal-group: 2;
        padding: 30px 0 0;
    }
    .evo-featured-small-column .evo-post .post-image {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        box-ordinal-group: 1;
    }
    .evo-featured-large-column .evo-entry-title {
        font-size: 28px;
    }
    .evo-cat-module-b .evo-lr-posts .evo-post, .evo-cat-module-b .evo-small-list .evo-post, .evo-cat-module-c .evo-post, .evo-cat-module-d .evo-post-image {
        display: inline-block;
        width: 100%;
        text-align: center!important;
        margin-bottom: 30px;
        margin-top: 0;
    }
    .evo-cat-module-b .evo-lr-posts .evo-post-image {
        margin:0!important;
    }
    .evo-cat-module-b .evo-small-list .evo-post, .evo-column-2 .evo-post, .evo-cat-module-g .evo-post-image, .evo-blog-post-e .evo-post-image, .evo-cat-module-e .evo-post:nth-child(2), .evo-cat-module-e .evo-post:nth-child(3) {
        width: 100%;
    }
    .evo-cat-module-b .evo-lr-posts .evo-entry-title, .evo-cat-module-b .evo-small-list .evo-entry-title, .evo-cat-module-c .evo-small-list .evo-entry-title, .evo-cat-module-f .evo-small-list .evo-entry-title, .evo-cat-module-g .evo-entry-title, .evo-cat-module-g .evo-entry-title {
        font-size: 28px;
        margin-top: 20px;
    }
    .evo-cat-module-d .evo-module-title .evo-title, .evo-slider .slick-arrow {
        display: none!important;
    }
    .evo-cat-module-d .evo-post-body {
        width: 100%;
        margin-top: 0;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    .evo-carousel-a .evo-entry-title, .evo-carousel-b .evo-entry-title, .evo-carousel-a .evo-slider[data-item="2"] .evo-entry-title, .evo-carousel-b .evo-slider[data-item="1"] .evo-entry-title, .evo-cat-module-a .evo-entry-title, .evo-cat-module-e .evo-entry-title, .evo-cat-module-e .evo-post:nth-child(1) .evo-entry-title, .evo-blog-post-a .evo-entry-title, .evo-blog-post-c .evo-entry-title {
        font-size: 28px;
    }
    .evo-cat-module-f .evo-small-list .evo-post {
        display: inline-block;
        float: left;
        width: 100%;
        margin-top: 30px;
        margin-bottom: 0;
        text-align: center;
    }
    .evo-cat-module-g .evo-post {
        display: inline-block;
    }
    .evo-cat-module-g .evo-post .evo-post-body {
        border:0;
        margin-left: 0!important;
        margin-right: 0!important;
        text-align: center!important;
        padding:0!important;
    }
    .evo-blog-post-e .evo-post {
        display: inline-block;
    }
    .evo-blog-post-e .evo-post .evo-post-body-inner {
        border:0;
        margin-left: 0!important;
        margin-right: 0!important;
        text-align: center!important;
        padding: 40px!important;
        border: 3px solid #eee;
    }
    .evo-cat-module-e .evo-post {
        height: 400px!important;
    }
    .evo-blog-post-c .evo-post {
        display: inline-block;
        width: 100%;
    }
    .evo-blog-post-c .evo-post .evo-post-image {
        width: 100%;
        margin:0;
    }
    .evo-blog-post-c .evo-post .evo-post-body {
        margin-top: 20px;
        text-align: center;
    }
    .evo-standart-e h1.evo-entry-title {
        padding:0;
        font-size: 34px;
    }
    .evo-standart-e .evo-post-image {
        height: 400px;
    }
    .evo-standart-e.evo-post-center .evo-overlay-inner {
        padding:0 20px;
    }
    .evo-standart-f h1.evo-entry-title {
        font-size: 38px;
        padding:0;
    }
    .evo-post-tv-body.evo-single h1.evo-entry-title {
        padding:0;
    }
    .column-4 .evo-post {
        width: 50%;
        margin-bottom: 50px;
    }
    .evo-post-tv-other-videos {
        margin-bottom: 0;
    }
    .evo-instagram-module ul li {
        width: 16.66%!important;
    }
    .evo-instagram-module ul li:nth-child(10), .evo-instagram-module ul li:nth-child(9), .evo-instagram-module ul li:nth-child(8), .evo-instagram-module ul li:nth-child(7) {
        display: none;
    }
    .evo-sidebar.right {
        padding-left: 15px;
    }

    .evo-sidebar.left {
        padding-right: 15px;
    }
    .single .evo-sidebar {
        display: inline-block;
        margin-top: 50px;
    }
    .evo-video-module .evo-module-title {
        margin-bottom: 30px;
    }
    .evo-video-mobile-thumb {
        display: block;
    }
}

@media (max-width: 689px) {
    .evo-column-3 .evo-post {
        width: 100%;
    }
    .evo-post-header-top .evo-post-body {
        padding:0;
        margin-top: 0;
    }
    .evo-post-header-top .evo-post-header:before {
        content: none;
    }
    .evo-post-header-top .evo-entry-title {
        padding-left: 0;
        padding-right: 0;
    }
    .evo-standart-b h1.evo-entry-title, .evo-standart-d h1.evo-entry-title, .evo-standart-e h1.evo-entry-title {
        padding: 0 25px;
    }
}

@media (max-width: 666px) {
    .evo-featured-style-a .evo-post, .evo-featured-style-b .evo-post, .evo-featured-style-c .evo-post, .evo-featured-style-d .evo-post {
        height: 400px;
    }
    .evo-featured-style-a .evo-entry-title, .evo-featured-style-b .evo-entry-title, .evo-standart-f h1.evo-entry-title, .evo-post-tv-body.evo-single h1.evo-entry-title {
        font-size: 34px;
    }
    .evo-decor-border-top {
        width: 70%;
        margin-bottom: 20px;
    }
    .evo-decor-border-bottom {
        width: 70%;
        margin-top: 20px;
    }
    .evo-featured-large-column .evo-entry-title, .evo-featured-small-column .evo-entry-title, .evo-cat-module-b .evo-lr-posts .evo-entry-title, .evo-cat-module-b .evo-small-list .evo-entry-title, .evo-cat-module-c .evo-small-list .evo-entry-title, .evo-cat-module-a .evo-entry-title, .evo-carousel-a .evo-entry-title, .evo-carousel-b .evo-entry-title, .evo-carousel-a .evo-slider[data-item="2"] .evo-entry-title, .evo-carousel-b .evo-slider[data-item="1"] .evo-entry-title, .evo-cat-module-f .evo-small-list .evo-entry-title, .evo-cat-module-g .evo-entry-title, .evo-blog-post-a .evo-entry-title, .evo-blog-post-b .evo-entry-title, .evo-blog-post-c .evo-entry-title, .evo-blog-post-d .evo-post:nth-child(1) .evo-entry-title, .evo-blog-post-d .evo-post:nth-child(2) .evo-entry-title {
        font-size: 22px;
    }
    .evo-cat-module-d .evo-entry-title {
        font-size: 24px;
    }
    .evo-archive-header .evo-archive-filter {
        width: 100%;
        margin-top: 15px;
    }
    .evo-video-frame > span {
        display: none;
    }
    .evo-video-frame {
        padding:0;
    }
}

@media (max-width: 480px) {
    .evo-search-form .search_input {
        font-size: 30px;
        height: 30px;
        padding: 20px 0;
    }
    .evo-decor-border-top, .evo-decor-border-bottom, .evo-slider .slick-arrow, .evo-share-post-inner a span {
        display: none!important;
    }
    .evo-review-total-rating, .evo-review-stars {
        float: none;
    }
    .evo-post-tags .evo-source, .column-4 .evo-post {
        width: 100%;
    }
    .evo-post-center .evo-overlay-inner {
        padding:0 30px;
    }
    .evo-featured-style-a .evo-post, .evo-featured-style-b .evo-post, .evo-featured-style-c .evo-post, .evo-featured-style-d .evo-post, .evo-standart-b .evo-post-image {
        height: 350px;
    }
    .evo-featured-style-a .evo-entry-title, .evo-featured-style-b .evo-entry-title, .evo-cat-module-f .post-overlay .evo-entry-title, .evo-single h1.evo-entry-title, .evo-standart-b h1.evo-entry-title, .evo-standart-d h1.evo-entry-title, .evo-standart-e h1.evo-entry-title, .evo-standart-f h1.evo-entry-title, .evo-post-tv-body.evo-single h1.evo-entry-title {
        font-size: 28px;
    }
    .evo-border-decor span, .evo-review-summary, .evo-review-item-title {
        width: 100%;
    }
    .review-point .evo-review-item-title {
        width: initial;
    }
    .evo-cat-module-c .evo-post-center .evo-post, .evo-carousel-b .evo-post, .evo-cat-module-f .post-overlay {
        height: 350px;
    }
    .evo-cat-module-d .evo-modulle-inner {
        padding:0;
        border:none;
    }
    .evo-cat-module-d .evo-entry-title, .evo-post-tv-videos .evo-post .evo-entry-title {
        font-size: 22px;
    }
    .evo-module-title .evo-title {
        font-size: 18px;
    }
    .evo-module-title.style-b, .evo-review-bottom {
        text-align: center;
    }
    .evo-module-title.style-b .evo-title {
        padding-left: 20px;
    }
    .evo-cat-module-d .evo-slider {
        margin-top: 0;
    }
    .evo-single .evo-single-top {
        display: inline-block;
        width: 100%;
    }
    .comment-respond {
        padding:20px 0 0;
        border:0;
        border-top:1px solid #eee;
    }
    .evo-post-directions > * {
        width: 100%;
        text-align: center!important;
    }
    .evo-post-directions > *~* {
        border-left: none;
        border-right: none;
        border-top:1px solid #eee;
    }
    .evo-standart-b h1.evo-entry-title, .evo-standart-d h1.evo-entry-title, .evo-standart-e h1.evo-entry-title {
        padding:0;
    }
    .evo-single.evo-post-center .evo-overlay-inner {
        padding:0 20px;
    }
    .evo-instagram-module ul li {
        width: 25%!important;
    }
    .evo-instagram-module ul li:nth-child(6), .evo-instagram-module ul li:nth-child(5) {
        display: none;
    }
}

@media (max-width: 360px) {
    .evo-featured-style-a .evo-entry-title, .evo-featured-style-b .evo-entry-title, .evo-featured-style-d .evo-entry-title, .evo-cat-module-c .evo-post-center .evo-entry-title, .evo-standart-f h1.evo-entry-title {
        font-size: 24px;
    }
    .evo-featured-large-column .evo-entry-title, .evo-featured-small-column .evo-entry-title, .evo-carousel-a .evo-entry-title, .evo-carousel-b .evo-entry-title, .evo-carousel-a .evo-slider[data-item="2"] .evo-entry-title, .evo-blog-post-b .evo-entry-title, .evo-blog-post-c .evo-entry-title, .evo-blog-post-d .evo-post:nth-child(1) .evo-entry-title, .evo-blog-post-d .evo-post:nth-child(2) .evo-entry-title, .evo-blog-post-d .evo-entry-title, .evo-post-tv-videos .evo-post .evo-entry-title {
        font-size: 20px;
    }
}

@media (max-width: 320px) {

}