/* ======================================================================================================================
        INFORMATION
=========================================================================================================================

Your design must allow for customisable colours. It is best to decide these colours at the start.
Your design must allow for a background (selected by the user) and it must also fall back to a colour gradient background.
Your design must allow for a customisable font.

Feel free to use the example(s) below.

Example colour set:
#ffffff
#ffffff

======================================================================================================================= */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body
{
    font-family:Georgia, Helvetica, Arial, sans;

    /* Safari 4-5, Chrome 1-9 */
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#ffffff));

    /* Safari 5.1, Chrome 10+ */
    background: -webkit-linear-gradient(top, #ffffff, #ffffff);

    /* Firefox 3.6+ */
    background: -moz-linear-gradient(top, #ffffff, #ffffff);

    /* IE 10 */
    background: -ms-linear-gradient(top, #ffffff, #ffffff);

    /* Opera 11.10+ */
    background: -o-linear-gradient(top, #ffffff, #ffffff);

	background: ;
	-webkit-background-size:;
	-moz-background-size:;
	-o-background-size:;
	background-size:;

    margin: 0 !important;
    padding: 0 !important;
}
select{

}
input, select {
    outline: 0;
}

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

.menu-header.header-push{
    position: relative !important;
}


ul, h1, h2, h3, p{
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

figure {
  margin:0;
  padding: 0;
}

textarea {
    font-family: inherit;
}

.all {
    width: 100%;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
}

.main {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}

.main form {
    
}

.main h2 {
    text-transform: uppercase;
    font-size: 12px;
    margin: 20px 0;
    width: 100%;
}

.main h2 a {
    text-decoration: none;
}

/* ==================
        HEADER
==================== */


.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    margin: 0;
    width: 100%;
    height: 48px;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*-webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);*/
    box-shadow: 0px 2px 4px 0 rgba(156,156,156,0.2);

}

.hamburger {
    margin-top: 5px;
    cursor: pointer;
}

.logo {
    height: 100%; 
}

.logo a {
    width: 100%; /* or any custom size */
    height: 100%; 
    object-fit: contain;
}

.logo img {
    width: 100%; /* or any custom size */
    height: 100%; 
    object-fit: contain;
}

.cart a:hover {
    color: inherit;
}

.cart .material-icons {
    position: relative;
}

.cart {
    margin-top: 5px;
}

.cart .material-icons .cart-count {
    position: absolute;
    left: 12px;
    top: 7px;
    margin-top: -40px;
    background: #1F3600;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: #fff;
    line-height: 21px;
    border: 3px solid #fff;
    text-align: center;
    position: relative;
}

.cart-count span {
    font-family: 'lato', sans-serif !important;
    font-weight: 700;
    font-size: 12px;
    position: absolute;
    right: 0px;
    top: 0.9px;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #000;
}

/* mobile menu items */
.menu-items {
    display: none;
    position: fixed;
    margin-top: 48px !important;
    width: 100%;
    z-index: 9;
    overflow-y: scroll;
    top: 0;
    right:0;
    bottom: 0;
    left:0;
    letter-spacing: 1.5px;
}

.menu-items.menu-items-push-header{
    margin-bottom: 0 !important;
    margin-top: 88px !important;
}

.menu-items .search {
    display: flex;
    align-items: center;
}

.menu-items .search form {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.search-form, .search-form input  {
    height: 40px;
    width: 100%;
}

.menu-items .search form .search-button button {
    border: none;
    background: none;
}

.search-form input {
    border: none;
    font-size: 14px;
    color: #666;
}

.menu-items .search form .search-form input:focus, .menu-items .search form .search-button button:focus {
    outline: none;
}

.menu-items .nav  {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 20px !important;
    margin: 0 !important;
}

.menu-items .nav h5, .menu-items .categories h5 {
    text-transform: uppercase;
    margin: 30px 0 10px 0;
    font-size: 8px;
}

.menu-items .nav li {
    text-transform: uppercase;
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
}

.menu-items .nav li:nth-child(1){
    border: none;
}

.menu-items .account  {
    padding: 0 !important;
    margin: 0 !important;
}

.menu-items .account li {
    text-transform: uppercase;
    width: 100%;
    display: block;
    border: 1px solid #eee;
    text-align:center;
}

.menu-items .account li a  {
    padding: 20px;
    width: 100%;
    text-decoration: none;
    display: block;
    color: #333;
    font-size: 14px !important;
    line-height: 18px;
    letter-spacing: 2px;
}

.menu-items ul li a  {
    padding: 20px;
    width: 100%;
    text-decoration: none;
    display: block;
    font-size: 14px !important;
    line-height: 18px;
}


.menu-items ul li a:hover, .menu-items ul li a:focus, .menu-items-desktop ul li a:hover, .menu-items-dsktop ul li a:focus {
    background: #1F3600;
}

.menu-items .account {
    display: flex;
    background: #333;
    flex-direction: column;
}

.menu-items .account li a {
    color: #fff;
}


[class^="icon-"]:before, [class*=" icon-"]:before {
    margin-left: 0 !important;
}

.menu-items .categories {
    text-transform: uppercase;
    padding: 0 20px 20px 20px !important;
    list-style: none;
}

.menu-items .categories li {
    border-bottom: 1px solid #eee;
}

.menu-items .categories .category-child {
    padding-left: 20px;
}

.menu-items .categories .category-child  a {
    font-size:12px !important;
}

/*menu items desktop */
.menu-items-desktop {
    display: none;
}

.menu-items-desktop ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.menu-items-desktop ul li {
    text-transform: uppercase;
    width: 100%;
    display: block;
}

.menu-items-desktop ul li a {
    padding: 20px 0;
    width: 100%;
    text-decoration: none;
    display: block;
    color: #666;
    font-size: 14px !important;
    line-height: 18px;
}

/* ===========================
        HOME PAGE CONTENT
============================== */


.slider-wrapper {
    z-index: -1000;
}

.flexslider {
    margin: 0 !important;
}

.slider-wrapper img {
    position: relative;
  display: block;
  width: 100%;
  height: calc(100vh - 149px);
  object-fit: cover;
}

.hero {
    width: 100%;
    font-size: 18px;
    line-height: 45px;
    align-items: center;
    z-index: 2;
}

.hero::after{
    content: '';
    display: block;
    width: 100%;
    clear: both;
}

.hero-message {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 45px 0;
    z-index: 800;
    position: absolute;
    top: 25%;
    background: none;
}

.hero .hero-message h1 {
  font-size: 1em;
  background: white;
  padding: 10px;
  line-height: 1;
  letter-spacing: 4px;
  margin: 0;
  font-weight: 400;
}

.featured {
    display: -ms-flexbox;
    display: flex;
    flex: 1 0 auto; /* safari */
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 0 0 -20px;
    flex-flow: row wrap;
    background: #fafafa;
}

.featured :after {
  content: "";
  flex: auto;
  display: block;
  clear: both;
}


.featured-item {
    display: block;
    width: 100%;
    margin-bottom: 0 !important;
    text-align: center;
    align-items: center;
    position: relative;
    padding: 0 0 0 20px;
    border-bottom: 1px solid #ddd;
}

.featured  .featured-item .featured-image {
    display: block;
    justify-content: center;
    object-fit: cover;
    width: 100%;
    height: calc(100vh - 49px);
}

.featured  .featured-item:nth-last-child(-n+1) {
    margin-bottom: 0 !important;
}

.featured  .featured-item .featured-image:before {
    content: "";
    display: block;
    padding-bottom: 140%;
}

.featured .featured-item .featured-item-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 10%;
    padding: 30px;
    left: 30px;
    right: 0;
}


.featured .featured-item .featured-item-text  h5 {
    background-color: white;
    padding: 15px;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 500;
    margin: 0 !important;
}

.featured .featured-item .featured-item-text  h5 a {
    text-decoration: none;

}

.featured .featured-item .featured-item-text p {
    text-transform: uppercase;
    background-color: white;
    padding: 8px;
    margin: 20px 0 !important;
    display: flex;
    justify-content: center;
}

.featured .featured-item .featured-item-text button {
    text-align: left;
    border: 0;
    background: 0 0;
    position: relative;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    padding: .4em 0;
    outline: 0;
    overflow: hidden;
    font-size: 16px;
    cursor: pointer;
    background: #1F3600;
    padding: 15px;
}


/* ===========================
        FEATURED BLOG
============================== */



.feature-blog-section {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px 20px 20px;
}

.feature-blog-main-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 20px!important;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px!important;
}

.feature-blog-item {
  border-bottom: 1px solid #ddd;
  padding: 0 0 40px 0;
  margin-bottom: 40px;
}

.feature-blog-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.feature-blog-img {
  width: 100%;
  object-fit: cover;
  height: 150px;
  /*width: 200px;
  height: 200px;
  border-radius: 50%;*/
}

.feature-blog-title{
  margin:20px 0;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: left;
  line-height: 30px;
}

.feature-blog-abstract {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 22px;
  font-weight: 300;
  padding-bottom: 20px;
  text-align: left;
}

.feature-blog-meta {
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 22px;
  font-weight: 300;
}

.feature-blog-meta li {
  margin-right: 20px;

}

.tag-btn {
   font-size: 10px!important; 
   margin-bottom: 10px;
}

.center {
  justify-content: center;
}

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


/* ===========================
       BLOG
============================== */

.blog-section {
  max-width: 640px;
  margin: 0 auto;
  height: 100%;
    padding: 20px 20px 5px 20px;
}

.blog-main-title {
  font-size: 1em;
  color: #333;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 20px;

}

.blog-share {
    margin-bottom: 20px;
}

.blog-share li {
  margin-right: 20px;
  color: #333;
}

.blog-main-img {
  margin-bottom: 20px;

}

.blog-img {
  height: 100%;
}

.blog img {
  width: 100%;
  object-fit: cover;
  /*width: 200px;
  height: 200px;
  border-radius: 50%;*/
}

.blog-title {
  padding: 20px 0 10px 0;
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-content h1, .blog-content h2, .blog-content h3, .blog-content figcaption {
  margin-bottom: 20px;
}


.blog-content p {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 22px;
  margin-bottom: 20px;
}

.blog-meta {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 10px;
}

.blog-meta li {
  margin-right: 20px;
}


.blog-content {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.blog-content img {
  margin-bottom: 20px;
}

.blog-response-section {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  padding: 20px;
  background: #fff;
   cursor:pointer;
}

.response-section {
  margin-top: 20px;
}

.response-btn {
}

.response {

}

.response-item{
  margin-top: 20px;
  border-top: 1px solid #ddd;
    padding-top: 20px;
    max-width: 640px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 10px;
}

.response-btn span {
  padding-left: 5px;
  font-size: 16px;
}

.fa-reply {
    position: relative;
}

.fa-comment-o {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.fa-comment-o span{
  color: #666;
  padding-left: 2.5px;
  font-size: 14px;
}

#comment-response-btn {
    font-size: 14px;
}

.blog_comments_reply_reply {
    margin-bottom: 20px;
    margin-left: 20px;
}

.response-name-input {
  padding: 1em;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 2px;
  outline: none;
  background: #fafafa;
}

.response-email-input {
  padding: 1em;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 2px;
  outline: none;
  background: #fafafa;
}

.response-email-textarea{
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 2px;
  outline: none;
  margin-bottom: 20px;
  background: #fafafa;
  height: 150px;
}

.reply-btn {
  padding: 1em;
  border: none;
  border-radius: 2px;
  outline: none;
  background: #dedede;
  color: #666;
}

.blog-response-section span, .response-section span{
    font-family: inherit !important;
}

.comment-section {
    max-width: 640px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px 20px 20px;
}

.comment-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 20px;
}

.comment-item:last-child{
  margin-bottom: 0;
}

.comment-details span{
    font-weight: 300;
}

.comment-name {
  font-size: 12px !important;
}
.comment-email {
  font-size: 12px !important;
}

.comment {
  font-size: 16px;
  padding-top: 10px;
  line-height: 27px;
}

.subcomment {
  margin-top: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.subcomment:first-child{
  border-top: 1px solid #ddd;
  padding-top: 20px!important;
}

.subcomment:last-child{
  border-bottom: none;
  padding: 0;
}

.subcomment-text {
  font-size: 14px;
}

/* flex */

.center {
  justify-content: center;
}

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

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.col-full {
  flex: 0 0 100%;
}

.col-fit {
  flex: 1;
}

.col-1-2 {
  flex: 0 0 50%;
}

.space-between {
  justify-content: space-between;
}

/* ===========================
       GENERAL INFO
============================== */



 .general-info-container {
    width: 100%;
    padding: 60px 20px;
     letter-spacing: 1px;
     line-height: 1.75;
     overflow: hidden;
     text-align: center;
}


.footer-banner {
    margin-bottom: 80px;
}


/* ===========================
        PRODUCT DETAILS PAGE
============================== */


h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1, h2, p, ul, li, a {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.product-main{
    -webkit-flex:1 0 auto;
}

.footer-image {
  display: block;
  width: 100%;
  height: calc(100vh - 220px);
  object-fit: cover;
  
}

.product-slideshow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-image{
    height: calc(100vh - 150px);
    width: 100%;
    object-fit: cover;
}

.thumbnails {
  display: flex;
  justify-content: center;
  align-item: center;
  margin: 20px 20px 20px 0px !important;
  transition: all .2s ease;
    vertical-align: middle;
}

.thumbnails li {
    width: 100%;    
    padding: 0 0 0 20px !important;
}

.thumbnail-image {
    width: 100%;
    margin-bottom: -3px;
    cursor: pointer;
}

label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.product-info {
  padding: 30px 30px 0 30px;
  text-align: left;
}

.product-info .price-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-info .price .rrp {
  text-decoration: line-through;
  color: grey;
}
.product-info .quantity{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.quantity-title {
    margin-bottom: 10px;
}


.product-options {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.product-options-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.product-options-title{
    margin-bottom: 10px;
}

.clean-selector {
outline: none;
    border-radius: 2px;
    padding: 0 10px;
    width: 100%;
    background: none;
    border: 1px solid #ddd;
    height: 40px;
}

.product-info table {
  border-collapse: collapse;
  width: 100%;
}
.product-info th, .product-info td {
  padding: 12px;
}
.product-info tr:nth-child(even) {
  background-color: #f2f2f2;
}
.product-info th {
  background-color: skyblue;
  color: white;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}
.product-info .contact-status span {
  padding-left: 10px;
}

.out-of-stock-notif{
    color: crimson;
    margin-bottom: 10px;
    font-size: 12px;
}

.out-of-stock span {
    text-transform: uppercase;
    font-size: 12px;
    font: inherit;
}

.out-of-stock a{
    text-transform: uppercase;
    font-size: 10px;
    text-decoration: none;
}




/* =============== 
        STOCK-NOTIFY
================== */

.stock_notify {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 600px;
    width: 90%;
    margin: 20px auto;
}

.stock_notify img {
    display: none;
}

.stock_notify center{
    text-align: left;
    margin-bottom: 20px;
}

.stock_notify h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.stock_notify header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 300;
    display: none;
}

.stock_notify label {
    font-weight: 600;
    display: block;
}


.stock_notify input, .stock_notify textarea {
    padding: 15px 15px 15px 10px;
    border-radius: 2px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 10px;
    margin-bottom: 20px;
    outline: none;
    width: 100%;
    max-width: 600px;
}

.stock_notify textarea {
    min-height: 250px;
}



.stock_notify_cancel, .stock_notify_submit {
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  color: inherit;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}

 .stock_notify_submit {
   background-color: #1F3600;
  color: #fff;
 }
 
.stock_notify_cancel {
   background-color: crimson;
  color: #fff;
    margin-bottom: 20px;
}


.add-to-cart button {
    display: flex;
  text-align: center;
  border-radius: 2px;
  margin-top: 20px;
  outline: none;
  font-size: 12px;
  background: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 30px 0;
  background: #1F3600;
  width: 100%;
  cursor: pointer;
  align-items: center
}

.button-price {
    border-right: 1px solid #ddd;
}

.share {
  display: flex;
  align-items: center;
  margin-top: 40px  !important;
}

.share h6 {
    margin: 0;
    font-weight: 500;
}
.share ul {
  display: flex;
  align-items: center;
  padding-left: 30px !important;
}
.share a {
  margin-left: 30px;
}

.product-tabs-container {
  margin-top: 30px;
}

.product-tabs-container h1 {
    margin: 50px 0 20px 0;
    font-weight: 300;
}
.product-name {
  letter-spacing: 4px;
}

.product-tabs {
  display: flex;
  flex-direction: column;
  color: #333;
}

.product-details > div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.tab-toggle {
  width: 100%;
  cursor: pointer;
}

.tab-message {
  display: none;
  padding: 20px 0;
  line-height: 1.5;
  word-spacing: 3px;
  letter-spacing: 0.1px;
}

#product-details-description, #product-details, #product-details-reviews {
    display: block;
}

.tab-toggle-header {
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =============== 
        REVIEW
================== */

.shop_product_review_form {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 600px;
    width: 90%;
    margin: 20px auto;
}

.shop_product_review_form div {
    display: flex;
    float: none !important;
}

.shop_product_review_form center {
    text-align:left;
    margin-bottom: 20px;
}

.shop_product_review_form h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.shop_product_review_form label {
    font-weight: 600;
    display: block;
}

.shop_product_review_form input, .shop_product_review_form select, .shop_product_review_form textarea {
    padding: 15px 15px 15px 10px;
    border-radius: 2px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 10px;
    margin-bottom: 20px;
    outline: none;
    width: 100%;
    max-width: 700px;
}

.shop_product_review_form textarea {
    min-height: 250px;
}

.shop_product_review_form br, .stock_notify br {
    display: none;
}


.shop_product_review_form img {
    display: none;
}

.shop_review_form_cancel, .shop_review_form_submit {
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  color: inherit;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}

 .shop_review_form_submit {
   background-color: #1F3600;
  color: #fff;
 }
 
.shop_review_form_cancel {
   background-color: crimson;
  color: #fff;
    margin-bottom: 20px;
}

.review-meta {
    font-weight: 200;
}

.review-meta-label {
    font-size: 12px;
    letter-spacing: 1px;
}

.review-details {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

.review-details:nth-last-child(1) {
    border-bottom: 1px solid #ddd;
}

.review-details:nth-child(2) {
    margin-top: 20px;
    border-top: none;
}

.review-details h3 {
    font-size: 14px;
}

.review-details p {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 10px 0;
}

/* =============== 
        MODALS
================== */


.md-content {
    color: #333;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.md-content center {
    margin: 20px 0;
}

.md-content button {
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
    margin-top: 20px;
  color: inherit;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
    color: #333;
}

.icon-money, .icon-basket {
    color: white !important;
}

.simplemodal-container {
    background: white!important;
    border-radius: 2px!important;
}

.simplemodal-close {
    display: flex!important;
    align-items: center;
    justify-content: center;
}

.simplemodal-data button {
      transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
    margin-top: 20px;
  color: inherit;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
    color: #333;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    margin: 0 auto;
    padding: 1.5em;
    color: #fff;
    background: #1F3600;
}


/* =============== 
        SITEMAP
================== */

.sitemap_divider {
    display: none;
}

.fws_sitemap_container {
    text-align:left;   
}

.fws_sitemap_container h2 {
    margin-bottom: 10px !important;
}

.fws_sitemap_container ul {
    display: flex;
    margin-bottom: 20px !important;
    list-style: none;
    
}

.fws_sitemap_container ul li{
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  color: inherit;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 10px;
}

.fws_sitemap_container ul li a{
    text-decoration: none;
}

/* =============== 
        BROWSE
================== */

.page-title{
  font-size: 1em;
  padding: 20px;
  line-height: 1;
  letter-spacing: 4px;
  margin: 0;
  font-weight: 400;
  color: #666;
}

.category-img-wrapper img {
  position: relative;
    display: block;
    width: 100%;
    object-fit: cover;  
    height: calc(100vh - 240px);
}

.breadcrumbs {
    text-align: left;
    display: flex;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    padding: 20px !important;
}

.breadcrumbs li a {
    text-decoration: none;
}

.breadcrumbs li:first-child:before {
    content: '';
}

.breadcrumbs li::before{
   content: "\00a0/\00a0";
}

#browse {
    display: flex;

}

.results_sortby_container {
    display: flex;
    flex: 0 0 100%;
    margin-bottom: 30px;
}

.browse-count{
    margin: 20px 0 40px 0;  
    padding: 0 20px;
}

.inline-list {
    display: flex;
    margin-left: 40px !important;
    justify-content: flex-start;
    align-items: flex-start;
}

.inline-list li:first-child{
    padding: 0.6em 1em 0.6em 0;
    text-align: left;
    text-transform: uppercase;
    font-size: 12px;
}

.divider {
    display: none!important;
}

.inline-list li:nth-child(n+2) {
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  color: inherit;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 12px;
}

.inline-list li a{
    text-decoration: none;
}

.uppercase {
    text-transform: uppercase;
}

.text-left {
    text-align: left;
}

.sub-title {
    padding: 0 20px;
}

.sub-cat-title {
    margin-bottom: 10px!important;
}
.sub-cat-menu {
    display: flex;
    flex-wrap: wrap;
    margin-left: 20px !important;
    margin-bottom: 40px!important;
}

.sub-cat-menu-item {
    margin-right: 10px;
    font-size: 12px!important;
    margin-top: 10px;
}

.sub-cat-menu a {
    text-decoration: none;
}


#pager_sort_by{
    flex-wrap: wrap;
}

ul#pager_sort_by li{
    margin-top: 10px;
}

/* =============== 
        PAGINATION
================== */

.results_pager_container {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

.featured :after {
    flex: none;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    margin-left: 40px!important;
    margin-top: 40px!important;
}

.pagination li{
    margin-right: 10px;
    margin-bottom: 40px;
}

.pagination li a {
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  color: inherit;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

/* =============== 
        INSTAGRAM
================== */

#instagrid{
    overflow: hidden;	
}

.fws-sb-instagram-style2 .instagram_item{
    width: 98%;
    margin: 1%;
}

.fws-sb-instagram-style2 .instagram_item a{
    background-color: #FFF;
    box-shadow: 1px 1px 1px #C3C3C3;
    display: block;
    padding: 5%;
    text-decoration: none;
    color: #404041;
}

.fws-sb-instagram-style2 .instagram_text{
    overflow: hidden;
}

.fws-sb-instagram-style2 .instagram_text span{
    color: #C02942;
    text-transform: capitalize;
    font-weight: bold;
}

.fws-sb-instagram-style2 .instagram_text i{
    color: #C02942;
}

.fws-sb-instagram-style2 .instagram_comments{
    float: left;
}

.fws-sb-instagram-style2 .instagram_likes{
    float: right;
}

.fws-sb-instagram-style2 .instagram_item img{
    width: 100%;
}


@media only screen and (min-width: 600px) {
    .fws-sb-instagram-style2 .instagram_item{
        width: 48%;
        float: left;
    }
}

@media only screen and (min-width: 1100px) {
    .fws-sb-instagram-style2 .instagram_item{
        width: 31%;
    }
}

@media only screen and (min-width: 1400px) {
    .fws-sb-instagram-style2 .instagram_item{
        width: 23%;
    }
}

/* =============== 
        CONTACT
================== */

.contact_form section , .contact_address {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 600px;
    width: 90%;
    margin: 20px auto;
}

.contact_address address{
    font-weight: 300;
    font-size: 16px;
}

.contact_form header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 300;
    display: none;
}

.contact_form label {
    margin-bottom: 10px;
}

.contact_form input, .contact_form textarea {
    padding: 15px 15px 15px 10px;
    border-radius: 2px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 10px;
    margin-bottom: 20px;
    outline: none;
    width: 100%;
    max-width: 600px;
}

.google-recaptcha {
    margin-bottom: 20px !important;
    width: 100%;
}

.contact_send_btn {
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  color: inherit;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
    background-color: #1F3600 !important;
  color: #fff !important;
}



/* =============== 
        BUTTONS
================== */



.btn {
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus {
  outline: thin dotted #666;
  text-decoration:none;
}

.btn--action {
  background-color: #1F3600;
}

.btn--danger {
  background-color: crimson;
  color: #fff;
}


.btn--danger {
  background-color: crimson;
  color: #fff;
}


.btn--wide {
  padding-right: 1.5em;
  padding-left: 1.5em;
}


/* ====================
        FOOTER
==================== */

footer {
    background: #1F3600;
    padding:40px;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
    text-align: center;
}

footer h4 {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
    margin: 0;
    padding-bottom: 30px;
}

footer > div {
    padding: 60px 0;
    /*border-bottom: 1px solid #333;*/
}

footer > div:nth-last-child(-n+1){
    margin-bottom: 0;
    padding-bottom: 0 ;
    border-bottom: none ;
}

footer .social {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

footer .social .social-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

footer .social .social-icons li {
    padding: 10px;
    width: 60px;
}

footer .additional ul li a, footer .support ul li a {
    text-decoration: none;
}

footer .additional ul li , footer .support ul li {
    font-size: 12px;
    margin-bottom: 6px;
}

footer .social ul, footer .additional ul, footer .support ul  {
    list-style: none;
    padding: 0;
}

footer .currency select, footer .language select {
    border-radius: 2px;
    font-size: 10px;
}

footer .language select, footer .newsletter input {
    width: 200px;
}


footer .currency select, footer .language select {
    padding: 0 15px;
    border-radius: 2px;
    border: none;
    margin-left: -1px;
    height: 40px;
}

footer .newsletter-inputs {
    display:flex;
    flex-direction: column;
    align-items: center;
}

footer .newsletter input::placeholder {
    padding: 0 10px;
}

.footer .newsletter input {
    padding: 15px 15px 15px 10px;
    border-radius: 2px;
    border: none;
    font-size: 10px;
    margin-bottom: 20px;
}


.footer .newsletter button {
        height: 40px;
        padding: 0 15px;
        border-radius: 2px;
        border: none;
        outline: none;
}


footer .copy {
    font-size: 10px;
    color: #333;
    margin: 0 auto;
}

footer .copy ul {
    padding: 20px 0 !important;
}


/* ============
   RECYCLING
============== */


/* colors */
.skyblue {
  background: skyblue;
}

.lightsalmon {
  background: lightsalmon;
}

.crimson {
  background: Crimson;
}

.darkmagenta {
  background: darkmagenta;
}


/* text center */
.text-center {
  text-align: center;
}


/* ============
   RESPONSIVE
============== */

.flex {
    display: flex;
    flex-wrap: wrap;
}

/* base flex */
.col {
  flex: 1;
}

.column {
  flex-direction: column;
}

.center {
    align-items: center;
}

.col-full {
  width: 100%!important;
  flex: none!important;
}

.col-1 {
  width: 100%!important;
}
.col-1-2 {
  width: 50%!important;
}
.col-1-3 {
  width: 33.3333%!important;
}
.col-1-4 {
  width: 25%!important;
}

/* Alignment per row */
.container--top {
  align-items: flex-start;
}
.container--bottom {
  align-items: flex-end;
}
.container--center {
  align-items: center;
}

/* Alignment per cell */
.item--top {
  align-self: flex-start;
}
.item--bottom {
  align-self: flex-end;
}
.item--center {
  align-self: center;
}



/* =============
    MEDIA QUERIES
=================== */

/*  medium & up  */
@media (min-width: 576px)  {
    .featured-item {
        width: 50%;
        border: none;
        margin-bottom: 20px !important;
    }
    
    .featured-image {
            height: 500px !important;
    }

    .menu-items {
        width: 40%;
    }
    /* ============
        RESPONSIVE CLASSES
    ============== */

    /* medium to large */
    .col-md-1 {
      width: 100%!important;
    }
    .col-md-1-2 {
      width: 50%!important;
    }
    .col-md-1-3 {
      width: 33.3333%!important;
    }
    .col-md-1-4 {
      width: 25%!important;
    }
}

/* large & up */
@media (min-width: 768px)  {

    .menu-items {
        z-index: -100;
        list-style:none;
        width: 30%;
        margin-bottom: 20px !important;
        box-shadow: 0px 4px 4px 0 rgba(156,156,156,0.2);
    }

    .main h2 {
        font-size: 16px;
        margin: 30px 0;
    }

    .featured {
        padding-bottom: 60px;
    }

    .hero .hero-message {
        position: absolute;
        top: 10%;
        background: none;
        width: 100%;
    }

    .featured-item {
        flex: 0 0 33.333%;
    }

    .featured  .featured-item:nth-last-child(-n+1) {
        margin-bottom: 20px !important;
    }


    .featured .featured-item .featured-item-text {
        padding: 20px;
    }

    .featured .featured-item .featured-item-text h5 {
        font-size: 18px;
    }
    
    .feature-blog-section {
        padding:0;
    }
    
    .feature-blog-item {
        padding-left: 30px;
        padding-right: 30px;
    }
    
  .feature-blog-title {
    padding: 0 0 10px 0;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .feature-blog-details {
    padding-left: 40px;
  }
  
    .blog-title {
    padding: 0 0 10px 0;

  }


  .col-lg-fit {
    flex: 1;
  }

  .col-lg-1-4 {
    flex: 0 0 25%;
  }

    h2 {
        margin-top: 0;
    }

    .general-info .general-info-container  span {
           font-size: 1.125em;
    }
    
    .review-text h3 {
        margin-top: 0;
    }
    
    .page-title {
        font-size: 1.5em;
        margin: 20px 0;
    }
    
    .category-img-wrapper img {
        height: inherit;
    }

    footer {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: inherit;
    }


    footer .social, footer .social, footer .support, footer .language{
        /*border-right: 1px solid #333;*/
    }

    footer .additonal, footer .currency {
       /*border-bottom: 1px solid #333;*/
    }


    footer .language  {
        border-bottom: none;
    }


    footer .copy {
        padding-top: 0;
    }

    footer .social, footer .additional, footer .support, footer .currency, footer .language, footer .newsletter, footer .copy {
        width: 50%;
    }

    /* ============
      LARGE RESPONSIVE CLASSES
    ============== */

      .col-lg-1 {
        width: 100%!important;
      }
      .col-lg-1-2 {
        width: 50%!important;
      }
      .col-lg-1-3 {
        width: 33.3333%!important;
      }
      .col-lg-1-4 {
        width: 25%!important;
      }
      
      .lg-row {
          flex-direction: row;
      }


    .col-lg-fit{
        flex: 1 !important;
      }

  .flex-lg {
    display: flex;
    flex-wrap: nowrap;
  }

}

/* styles for browsers larger than 960px; */
@media only screen and (min-width:960px){

    .menu-header {
        max-width: 1440px;
    }

    .hero {
        position: relative;
    }
    .hero .hero-message {
        margin-top: 200px;
    }
    

    .featured-item {
        max-width: 25%;
    }
    
.general-info-container {    
    margin-top: 60px;
}
    
    .feature-blog-main-title {
  border: none;
  margin-bottom: 20px!important;
}


.feature-blog-item:first-child{
    padding-top: 40px;
  border-top: 1px solid #ddd;
}

.feature-blog-item:last-child{
    padding-bottom: 60px;
}
    
        
    footer .additional, .currency {
       /*border-right: 1px solid #333;*/
    }

    .support {
        border-right: none !important;
    }
    
    .currency {
        border-bottom: none !important;
    }


     footer .social, footer .additional, footer .support, footer .currency, footer .language, footer .newsletter, footer .copy {
        width: 33.3333%;
    }


}
/* styles for browsers larger than 1440px; */
@media only screen and (min-width:1440px){
    .menu-items {
        width: 20%;
    }
    
    .main-image {
        height: 100%;
    }
    
        /* medium to large */
    
    .col-xl-fit {
      flex: 1!important;
    }
    
    .col-xl-1 {
      width: 100%!important;
    }
    .col-xl-1-2 {
      width: 50%!important;
    }
    .col-xl-1-3 {
      width: 33.3333%!important;
    }
    .col-xl-1-4 {
      width: 25%!important;
    }


}
/* for sumo sized (mac) screens */
@media only screen and (min-width:2000px){

}


/* header colors */
header h1, header h2, header h3, header h4, header h5, header h6 {
  color: #333333;
}

header p, header ul, header textarea, header input, header select, header button, header a{
  color: #222222;
}

header, .menu-items {
    background: #ffffff;
}

header a:hover {
    color: #fff;
}

.contact_address{
    text-align: center!important;
}

.contact_sent {
    padding: 20px;
}

.Pager {
    margin: 30px 0;
}

.Pager > div:nth-of-type(1) {
    display: none;
}


.Pager > div > span:nth-of-type(1) {
    display: none;
}

.Pager > div > span > a:nth-of-type(1){
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

.Pager > div > span:nth-of-type(5):nth-of-type(2){
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

.Pager > div:nth-of-type(2) > span:nth-of-type(5) {
    margin-left: 10px;
}

.Pager > div > span:nth-of-type(5){
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

.Pager > div > span > b{
  transition: background-color 0.2s;
  display: inline-block;
  padding: 0.6em 1em;
  background: hsla(31, 15%, 50%, 0.15);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 10px;
}

/*main colors */
main h1, main h2, main h3, main h4, main h5, main h6, .hero-message h1 {
  color: #000000;
  font-weight: 400;
}

main p, main a, main ul, main textarea, main input, main select, main i, main button, .tab-message, label, .article-info, figcaption,  main span, main li, .blog-meta, .featured-item-text a, .feature-blog-meta a, .blog-meta a {
  color: #C30000;
}

main {
    background: #ffffff;
}

main button, .button-price, .button-atc, .blog_comments_submit, .blog_comments_reply_submit, .write-review-button,  .blog_comments_reply_reply{
    color: #fff;
}

/* footer colors */

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #dddddd;
}

footer p, footer ul, footer textarea, footer input, footer select, footer i, footer li a, footer button, footer a{
  color: #dddddd;
}

::-webkit-input-placeholder {
    color: #dddddd;
}
     
 footer {
    background: #1F3600;
}

footer select, footer input, footer button {
    background: #555;
}

#nooffers{
    margin-left: 3em;
}


.price_breakdown hr{
    display: none;
}

.price_breakdown a, .price_breakdown .price_inc_tax span, .price_breakdown .price_ex_tax span{
    font-size: 0.7em;
}



.wishlist_container{
    clear: both;
    margin-top: 20px;
    text-align: center;
}


.wishlist_container a{
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.wishlist_container a span{
    margin-left: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
}

.wishlist_container a svg{
    font-size: 1.4rem;
    stroke: #1F3600;
    fill: transparent;
    transition: 0.2s;
    width: 30px;
    height: 30px;
    transform: scale(1);
}

#wishlist_logged_in_html a:hover svg,
#wishlist_not_logged_in_html a:hover svg{
    fill: #1F3600;
}

#wishlist_logged_in_html.wishlist_logged_in_html_activated a svg{
    fill: #1F3600;
    animation-name: wishlistAdd;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes wishlistAdd{
  0%   {transform: scale(1);}
  50%  {transform: scale(1.5);}
  100% {transform: scale(1);}
}

#wishlist_not_logged_in_html.wishlist_not_logged_in_html_activated a svg{
    fill: #1F3600;
    animation-name: wishlistAdding;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes wishlistAdding{
  0%   {transform: scale(1);}
  50%  {transform: scale(1.2);}
  100% {transform: scale(1);}
}


#wishlist_added_html a svg{
    fill: #1F3600;
}

#wishlist_added_html a:hover svg{
    fill: transparent;
}

#wishlist_added_html.wishlist_added_html_activated a svg{
    fill: transparent;
    animation-name: wishlistRemove;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes wishlistRemove{
  0%   {transform: scale(1);}
  50%  {transform: scale(0.5);}
  100% {transform: scale(1);}
}


/* further contact styling */

.contact_notify div[style="float:left"],
.contact_notify div[style="float:right"] {
    float: unset !important;
}

.contact_notify_cancel,
.contact_notify_submit {    
    display: inline-block;
    padding: 0.6em 1em;    
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
 }

.contact_notify_cancel {
    background: hsla(31, 15%, 50%, 0.15);
    margin-bottom: 10px;
}

.contact_notify_submit {
    background: #1F3600;
}






























