/*
 * Theme Name: E4K Framework
 * Theme URI: http://www.e4k.co
 * Author: E4K Dev Team
 * Author URI: http://www.e4k.co
 * Description: Custom WordPress Theme created by the E4K Development Team. This theme is just a template to help build up the process speed of creating a website. This theme is using WordPress coding standards
 * Version: 0.96.0
 */

/* Import Fonts */
@font-face {
    font-family: Avenir;
    src: url(assets/font/Avenir.otf);
}

@font-face {
    font-family: MeganJune;
    src: url(assets/font/MeganJune.otf);
}

/**
|---------------------
| =Global Styles
|---------------------
*/

body {
    font-family: 'Avenir', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    cursor: default;
}

p, li, a {
    font-size: 20px;
}

a:hover {
	cursor: pointer;
}

/*
Typography
*/

html {font-size: 1em;}

body {
  background-color: white;
  font-weight: 400;
  line-height: 1.45;
  color: #333;
}

p {margin-bottom: 1.3em;}

h1, h2, h3, h4 {
  margin: 1.414em 0 0.5em;
  font-weight: inherit;
  line-height: 1.2;
}

h1 {
  margin-top: 0;
  font-size: 3.157em;
}

h2 {font-size: 2.369em;}

h3 {font-size: 1.777em;}

h4 {font-size: 1.333em;}

small, .font_small {font-size: 0.75em;}

/*
End Typography
*/

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

img {
    max-width: 100%
}

section#error-page {
    padding-top: 150px;
    text-align: center;
    padding-bottom: 149px;
}

/*
    Header
*/
nav.navbar-default {
    background-color: #FFF;
    position: relative;
    padding: 15px 0;
}

nav.navbar-default ul.nav a {
    color: #3A3A3A;
    text-transform: uppercase;
    font-size: 14px;
    transition: all .5s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

nav.navbar-default ul.nav a:hover,
nav.navbar-default ul.nav a:focus {
    background-color: transparent;
    color: #bc0f01;
}

nav.navbar-default ul.dropdown-menu {
    background-color: #f0f0f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .20);
    border: none;
    z-index: 1001;
    left: 50%;
    transform: translate( -50%, 0 );
    padding: 0;
}

nav.navbar-default ul.dropdown-menu a {
    padding: 15px 0;
    text-align: center;
    min-width: 175px;
    border-bottom: 1px solid #cccccc;
}

nav.navbar-default ul.dropdown-menu li:last-of-type a {
    border-bottom: none;
}

div.logo-wrap {
    text-align: center;
}

div.logo-wrap img {
    width: 70%;
}

div.menu-navbar-container,
div.logo-wrap,
div.header_cart {
    flex-flow: column;
}

div.cart_header a {
    color: #3a3a3a;
    text-transform: uppercase;
    font-size: 15px;
    transition: all .5s ease;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 10px;
    float: right;
}

header#navbar-wrapper button.nav-toggle {
    position: absolute;
    top: -2px;
    right: 10px;
    z-index: 1002;
}

header#navbar-wrapper button.nav-toggle span.icon {
    background-color: #3A3A3A;
}

.flickity-prev-next-button {
    background-color: #FFF!important;
    padding: 0;
    border-radius: 0%;
}

.flickity-prev-next-button.previous {
    left: 0px;
}

.flickity-prev-next-button.next {
    right: 0px;
}

.is_flex {
    display: flex;
    align-items: center;
}

div.header_overflow {
    position: relative;
    overflow: hidden;
    justify-content: space-evenly;
}

div#nav_button {
    font-size: 20px;
    display: none;
    cursor: pointer;
}

a.cart_mobile {
    display: none;
}

@media (max-width: 991px) {
    div.header_cart i {
        font-size: 24px;
    }
    div.cart_header {
        text-align: center;
        margin: 15px 0;
    }
    div.cart_header a {
        float: none;
    }
    div#nav_button {
        display: block;
    }
    div.mobile-menu {
        margin-top: 0;
    }
    div.menu-navbar-container {
        display: none;
    }
    a.cart-customlocation {
        display: none;
    }
    a.cart_mobile {
        display: block;
    }
    a.wishlist,
    a.account,
    a.email {
        display: none;
    }

    div.mobile_nav_container div.menu-navbar-container {
        display: block;
    }

    div.shop_filter {
        position: relative!important;
        top: 0px!important;
    }
}

/*
    End Header
*/

/*
    Marquee
*/

div.marquee_container {
    overflow: hidden;
    background-color: #FFF;
    border-top: 2px solid #3A3A3A;
}

div.marquee {
    display: block;
    position: relative;
    height: 35px;
}

div.marquee_text:hover {
  animation-play-state: paused;
}

div.marquee_text {
    float: left;
    width: fit-content;
    line-height: 35px;
    color: #3a3a3a;
    text-shadow: 1px 0 10px #fff;
    font-size: 20px;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    position: relative;
    font-weight: bold;
}

div.marquee_text p {
    margin: 0;
    margin-right: 100px;
    display: inline;
}

@keyframes scroll {
    0% {
        transform: translateX(100vw);
    } 100% {
        transform: translateX(-100%);
    }
}


/**
|---------------------
| =Mobile Menu
|---------------------
*/

div#mobile_navigation {
    position: fixed;
    top: 0;
    left: -5px;
    background-color: #3A3A3A;
    width: 60%;
    z-index: 9999999;
    height: 100vh;
    transform: translate(-100%, 0);
    transition: .3s ease-in-out;
    border-left: 2px solid #FFF;
}

.navMove {
    transform: translate(0%, 0)!important;
}

div.mobile_nav_container {
    margin-top: 135px;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

div.mobile_nav_container ul {
    margin: 0;
}

div.mobile_nav_container ul,
div.mobile_nav_container li {
    width: 100%;
}

div.mobile_nav_container li {
    margin-bottom: 18px
}

div.mobile_nav_container li a {
    color: #FFF;
    font-weight: bold;
    font-size: 24px;
}

div.mobile_contact {
    margin-bottom: 15px;
    margin-top: 20px;
    text-align: center;
}

div.mobile_nav_container li a:hover {
    background-color: transparent!important;
    text-decoration: underline;
}

div#nav_close {
    position: absolute;
    right: 17px;
    top: 38px;
    color: #FFF;
    font-size: 24px;
}

div.mobile_contact a i {
    color: #FFF;
    font-size: 22px;
    margin-right: 10px;
}

@media (max-width: 991px) {
    nav.navbar-default {
        padding: 15px;
    }
    div.header_navigation {
        display: none;
    }
    div#nav_button {
        display: block;
    }
}

/*
    Footer
*/

footer {
    background-color: #3A3A3A;
    color: #fff;
    margin-top: 50px;
    padding: 30px 0 10px 0;
}

footer p {
    margin:  0;
}

div.footer_social_container {
    margin-bottom: 15px;
    background-color: #FFF;
    color: #3A3A3A;
    border: 1px solid #3A3A3A;
}

div.footer_social_container * {
    display: inline-block;
}

div.footer_social_container h1 {
    margin: 0;
    margin-right: 50px;
}

div.footer_social_container i {
    font-size: 28px;
    margin-right: 8px;
    color: #3A3A3A;
    transition: .3s ease-in-out;
}

div.footer_social_container i:hover {
    color: rgba(255,255,255,0.4);
}

div.footer-section-content.social i {
    font-size: 18px;
    margin-right: 8px;
    color: #FFF;
    transition: .3s ease-in-out;
}

div.footer_copyright,
div.footer_powered {
    color: #FFF;
    margin-top: 50px;
}

div.footer_copyright a {
    color: #96CA1E;
}

div.footer_powered a {
    /*color: #96CA1E*/
    color: #fff;
}

div.footer-section-content ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

div.footer-section-content ul li {
    padding: 5px 0px;
    transition: .5s ease-in-out;
    width: fit-content;
}

div.footer-section-content ul li a {
    color: #fff;
}

div.footer-section-content ul a:hover {
    border-bottom: 1px solid #fff;
}

div.footer-section-content img {
    height: 30px;
}

div.footer-section-content div.facebook,
div.footer-section-content div.twitter,
div.footer-section-content div.youtube,
div.footer-section-content div.instagram {
    display: inline-block;
    margin-right: 10px;
}

/*
    End Footer
*/

/*
    General
*/

div.banner {
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 6vw 0;
    background-attachment: fixed;
}

div.banner h1 {
    color: #FFF;
    text-shadow: 1px 0 10px #3A3A3A;
    text-align: center;
}

div.home_banner img.mobile {
    display: none;
}

div.category_overlay {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .3s ease-out;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

div.category_overlay:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

div.home_categories_container,
div.instagram_container {
    margin: 50px 0 60px 0;
}

div.category_image {
    /*width: 33vw;*/
    display: inline-block;
}

div.category_image img {
    width: 100%;
    height: 100%;
}

div.section_header {
    display: flex;
    justify-content: center;
}

div.section_header h1 {
  width: fit-content;
  margin-bottom: 30px;
  position: relative;
}

div.section_header h1:after,
div.section_header h1:before {
    content: "";
    border-bottom: 2px solid #b81000;
    width: 2em;
    margin: 0 0.5em;
    position: absolute;
    bottom: .5em;
}

div.section_header h1:after {
    left: 100%;
}

div.section_header h1:before {
    right: 100%;
}

div.featured .row {
    display: flex;
    flex-wrap: wrap;
}

div.featured .row > div {
    flex-flow: column;
}

div.featured_text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

div.signup {
    background-color: #3A3A3A;
}

.signup_bg {
    color: #FFF;
    padding: 50px 20px;
}

.signup_bg h3 {
    margin: 0;
}

div.signup .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

div.signup img {
    height: 39vh;
}

div.signup h2 {
    margin: 0;
    margin-bottom: 25px;
}

div.form_container input {
    padding: 8px;
    font-size: 18px;
    height: auto;
    margin: 0;
}

div.form_container input.wpcf7-submit {
    background-color: #be0e01;
    color: #FFF;
    border: 1px solid #be0e01;
}

@media (max-width: 991px) {
    div.footer_social_container {
        padding: 10px 0;
    }
    div.signup img {
        height: auto;
    }
    .signup_bg {
        text-align: center;
    }
}

@media (max-width: 767px) {
    div.home_banner img.desktop {
        display: none;
    }
    div.home_banner img.mobile {
        display: block;
    }
}

/*
    End General
*/

/*
    Modal
*/

div.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: rgba(0,0,0,0.5);
  display: none;
  animation: modalOpen .8s;
}

div.modal_content {
  width: 50%;
  background-color: #FFF;
  padding: 30px;
  position: relative;
  box-shadow: 1px 0 5px #000;
  margin: auto;
  top: 50%;
  transform: translate(0,-50%);
}

span.modalClose {
  float: right;
  color: #ccc;
  font-size: 30px;
  font-weight: bold;
  user-select: none;
}

span.modalClose:hover {
  color: #000;
  cursor: pointer;
}

@keyframes modalOpen {
  from {
    opacity: 0;
  } to {
    opacity: 1;
  }
}

div.size_guide button {
    padding~:;
    padding: 5px 10px;
    backgroUnd-color: #fff;
    border: 1px solid #3A3A3A;
}

@media (max-width: 991px) {
    div.modal_content {
        width: 90%;
    }
}

/*
    End Modal
*/

/*
    WooCommerce
*/

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    text-align: center;
}

.tinvwl_add_to_wishlist_button {
    color: #3a3a3a;
}

.container.single-product,
div.cart_container {
    margin-top: 50px;
}

div.shop_filter {
    position: sticky;
    top: 30px;
}

.shop_page {
    margin: 50px 0;
}

.wpf_search_button {
    background-color: #000!important;
}

.wpf_search_button:hover {
    background-color: #c20e08!important;
}

.wpf_slider.ui-slider .ui-widget-header {
    background-color: #c20e08!important;
}

.wpf_item input[type="checkbox"] {
    color: #c20e08!important;
}

.pswp__bg {
    background-color: rgba(0,0,0,0.45);
}
/*
    End WooCommerce
*/

/*
    Partnership
*/

div.home_form_item {
    margin: 8px 0;
}

.home_form_item input {
    width: 100%;
    padding: 5px;
    padding-left: 9px;
    border: 1px solid #3A3A3A;
    background-color: transparent;
    color: #3A3A3A;
}

.home_form_item textarea {
    width: 100%;
    padding: 5px;
    padding-left: 9px;
    border: 1px solid #3A3A3A;
    background-color: transparent;
    color: #3A3A3A;
}

div.home_form_submit input {
    padding: 7px 15px;
    border: 1px solid #3A3A3A;
    background-color: transparent;
    color: #3A3A3A;
    transition: .3s ease-in-out;
}

div.home_form_submit input:hover {
    background-color: #3A3A3A;
    color: #FFF;
}

div.general-content-page {
    margin: 30px 0;
}

/*
    End Partnership
*/

/*
    Contact
*/

.page_padding {
    padding-top: 80px;
    position: relative;
}

div.contact_form input,
div.contact_form textarea {
    border: 1px solid #3A3A3A;
    width: 100%;
    margin-bottom: 7px;
    padding: 5px;
    padding-left: 9px;
    max-width: 100%;
}

span.wpcf7-list-item {
    margin: 0 5px;
}

.form_item.recaptcha input {
    width: auto;
}

.form_submit input {
    width: 25%!important;
}

div.form_item.recaptcha {
    margin-bottom: 10px;
}

div.contact_form .form_submit input {
    background-color: #3A3A3A;
    color: #FFF;
    border-color: #FFF;
    transition: .3s ease-out;
}

div.contact_form .form_submit input:hover {
    background-color: #FFF;
    color: #3A3A3A;
    border-color: #3A3A3A;
}

div.contact_container a p {
    display: inline-block;
    color: #3A3A3A;
    text-decoration: underline;
    margin: 0;
}

div.contact_container a p:hover {
    cursor: pointer;
}

.contact_container a {
    display: block;
    width: fit-content;
}

div.contact_container p.company_location::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
    color: #3A3A3A;

    font-size: 22px;
    margin-right: 29px;
}

div.contact_container a.contact_number::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f095";
    color: #3A3A3A;

    font-size: 22px;
    margin-right: 20px;
}

div.contact_container a.contact_email::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0e0";
    color: #3A3A3A;

    font-size: 22px;
    margin-right: 20px;
}

p.company_name_container {
    margin: 0;
    font-weight: bold;
    margin-bottom: 5px;
}

div.contact_container p.company_location {
    margin-bottom: 0px;
}

nav.woocommerce-MyAccount-navigation li {
    background-color: #fff;
    border: 1px solid #c5c5c5;
    padding: 25px 20px;
    list-style-type: none;
}

nav.woocommerce-MyAccount-navigation li.is-active {
    background-color: #e8e8e8;
}

nav.woocommerce-MyAccount-navigation li a {
    color: #000;
}

.woocommerce-MyAccount-content {
    font-size: 16px;
}

#mc_embed_signup {
    background: none!important;
}

#mc_embed_signup input.email,
#mc_embed_signup .button {
    height: 50px!important;
}

#mc_embed_signup .button {
    background-color: #C52B1F!important;
}

.instagram-feed {
    padding: 0px;
}

.woocommerce span.onsale {
    background-color: #000;
    border-radius: 100%;
    height: 55px;
    width: 55px;
    font-size: 15px;
    border: 2px solid #C10101;
}

h2.woocommerce-loop-product__title {
    height: 100px;
}

span.cart_price.wdr_product_strikeout del {
    color: red!important;
}

span.cart_price.wdr_product_strikeout ins {
    color: #000!important;
}

@media only screen and (max-width: 1200px) {
    nav.woocommerce-MyAccount-navigation ul {
        margin: 0px;
        padding: 0px;
    }

    nav.woocommerce-MyAccount-navigation li {
        padding: 15px 10px;
    }

    .cart_container {
        margin: 0px 10%;
    }
}

div.woof_container h4 {
    background-color: #e8e8e8;
    padding: 10px;
}

div.woof_container ul {
    padding-left: 15px;
}

div.woof_container a.chosen-single,
div.woof_container div.chosen-drop {
    border: 1px solid #000!important;
    background-image: none!important;
    border-radius: 0px!important;
}

div.footer_powered a:hover {
	text-decoration: underline;
}