/*
Theme Name: finbar-new
Author: Maxine Ellah
Description: simple template for woocommerce shop
Version: 0.0.1
Tags: bootstrap
*/


.home-landing-img img {
  max-width: 350%;
  position: fixed;
  left: 0;
}


html {
  position: relative;
  height: 100%;
}

* {
  box-sizing: border-box;
}


body {
  margin: 0;
}

a {
  text-decoration: none;
  color: black;
}

.blog-nav a {
  text-decoration: none;
  color: pink;
}

.blog-nav a:hover {
  font-weight: 700;
}

li {
  display: inline-block;
  margin: auto;
  list-style: none;
  padding: 10px;
}

ul {
  padding: 0;
  display: flex;
  flex-direction: row;
}

.container {
  position: relative;
}

.blog-post {
  flex-direction: column;
  margin: 10vh auto;
  font-family: 'Fira Mono', monospace;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1.5px;
}

.blog-nav {
  top: auto;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  position: fixed;
  letter-spacing: 2.5px;
  font-family: 'Fira Mono', monospace;
  font-weight: 400;
  font-size: 15px;
  z-index: 1;
}

.blog-title {
  text-align: center;
  padding: 10vh 0 0;
  flex-direction: column;
}

.blog-title img {
  max-width: 70%;
  padding: 10vh 2vh 0;
}

.home-landing-img .second {
  text-align: center;
}

.home-landing-img .first {
  display: none
}

.inner-container {
  text-align: center;
}

/* customisation */

.page-title {
  display: none;
}

/* woocommerce */

.woocommerce {
  font-family: 'Roboto Mono', monospace;
}

.woocommerce div.product {
  padding: 15vh 15vh 0;
}

.woocommerce ul.products {
    padding: 20vh 40px 0;
    flex-direction: column;
}

.woocommerce-Tabs-panel .woocommerce-Tabs-panel--description .panel .entry-content .wc-tab a {
  text-decoration: underline;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 5vh 0;
}

.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
  display: none;
}

.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
  display: none;
}

.woocommerce ul.products li.product a img {
  margin: 0 0 1em;
  box-shadow: none;
  display: inline;
  width: 80%;
  border-radius: 5px;
}

.woocommerce ul.products[class*="columns-"] li.product, .woocommerce-page ul.products[class*="columns-"] li.product {
  width: 100%;
}

.woocommerce table.shop_table {
  border: none;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce .cart-collaterals .cross-sells, .woocommerce .cart-collaterals .shipping_calculator, .woocommerce-page .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .shipping_calculator {
  text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: none;
}

.woocommerce div.product div.images img {
  border-radius: 5px;
}

.product_meta {
  display: none;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-direction: column;
  align-content: space-between;
}

.woocommerce div.product form.cart .button {
  margin-top: 3vh;
  background-color: #92a8d1;
}

.woocommerce a.button.alt {
  background-color: #f9d5e5;
}

.woocommerce a.button.alt:hover {
  background-color: #fbefcc;
}

@media (min-width: 800px) {

  .home-landing-img .first {
    display: unset;
  }

  @keyframes homePageImagesFadeInOut {
    0% {
      opacity: 1;
    }
    17% {
      opacity: 1;
    }
    25% {
      opacity: 0;
    }
    92% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .home-landing-img img:nth-of-type(1) {
    animation-delay: 10.5s;
  }

  .home-landing-img img:nth-of-type(2) {
    animation-delay: 7s;
  }

  .home-landing-img img:nth-of-type(3) {
    animation-delay: 3.5s;
  }

  .home-landing-img img:nth-of-type(4) {
    animation-delay: 0;
  }

  .home-landing-img img {
    max-width: 150%;
    animation-name: homePageImagesFadeInOut;
    animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
    animation-iteration-count: infinite;
    animation-duration: 14s;
  }

  .blog-post {
    width: 50%;
  }

}

@media (min-width: 1200px) {

  ul {
    padding: 0;
    margin: 5px 0px 5px;
    justify-content: space-between;
    flex-direction: row;
  }

  .woocommerce ul.products {
    flex-direction: row;
  }

  .container {
    position: unset;
  }

  .blog-nav {
    top: 0;
    bottom: 100%;
    color: #ffe4b3;
  }

  .blog-title img {
    max-width: 40%;
    padding: 20vh 2vh 0;
  }

  .blog-post {
    margin: 15vh auto;
  }

  .home-landing-img {
    position: relative;
    margin: 0 auto;
  }

  .home-landing-img img {
    max-width: 100%;
    position: absolute;
    left: 0;
  }
}
