
@import 'theme.css'; 


@import url(https://fonts.googleapis.com/css?family=Lato:300,400);



html {
  box-sizing: border-box;
  font-size: 18px;
  font-family: var(--primary-font-name), Arial;
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #225d8d;
}

a:hover{
  color: var(--primary-color);
}


section{
  width: 100%;
}


h1{
  font-size: 36px;
  line-height: 1.28;
  margin: 10px 0 20px;
}

h2{
  font-size: 28px;
  margin: 10px 0 20px;
}

h2.heading{
  margin: 10px;
  font-weight: 400;
  color: #444;
}

h3{
  font-size: 24px;
  margin: 10px 0 0;
}

p {
  margin: 0 0 20px 0;
  line-height: 26px;
}


main{
  margin-top: 70px;
}


section .inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.5em;
  overflow: auto;  
}

section .inner-wide{
  max-width: 1200px;
}

section .inner-narrow{
  max-width: 800px;

}


nav{
  margin: 0;
  position: fixed;
  top: 0;
  z-index: 10;
  height: 60px;
  width: 100%;
  display: block;
  box-shadow: 0 0 10px #ddd;
  background: #fff;
}

nav .inner{
  padding: 0 0.5em;
}
.logo img{
  height: 60px;
}












footer {
  text-align: center;
  background: var(--primary-bk-color);
  color: var(--primary-bk-text-color);
  border-top: 1px solid #ddd;
  padding: 1em 0;
  margin: 2em 0 0;
}

footer a{
  color: #fff;
  margin: 5px 8px;
}

@media only screen and (max-width: 768px) {

  footer a{
    display: block;
    margin: 12px 0;
  }
}

footer .copy{
  margin: 20px 0 10px;
}

footer .usage{
  margin: 10px 0;
  font-size: 13px;
}




section.t1{
  background: var(--primary-bk-color);
  color: var(--primary-bk-text-color);
  margin: 2em 0 1em;
}
section.t1 .inner{
  padding: 1em;
}
section.t1 .image{
  position: relative;
  width: 160px;
  display: block;
  float: left;
  margin: 0 30px;
}
section.t1 .thumb{
  border-radius: 50%;
  padding: 2px;
  background: #fff;
  box-shadow: 0 0 6px #ccc;
  width: 160px;
  height: 160px;
}
section.t1 .icon{
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 4px #000;
  border: 1px solid #eee;
  background: #333E47;
  position: absolute;
  padding: 6px;
  overflow: visible;
  top: -5px;
  left: -15px;
}

section.t1 .text{
  display: inline-block;
  width: 540px;
}
section.t1 .title{
  margin: 20px 0 20px;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 0 4px #333;
}

section.t1 a{
  color: #eee;
}

section.t1 svg{
  fill: #fff;
}

section.t2{
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  color: #e9e9e9;
  text-align: center;
  margin: 2em 0 1em;
  padding: 1em;
}
section.t1 .inner,
section.t2 .inner{
  cursor: pointer;
}
section.t1 .inner img,
section.t2 .inner img,
section.t1 .inner svg{  
  transition: all 0.2s;
}
section.t1 .inner:hover img{
  box-shadow: 0 0 12px #000;
  background: #FFA724;
}
section.t1 .inner:hover svg{
  fill:#FFA724;
  border: 1px solid #FFA724;

}
section.t2 .inner:hover img{
  box-shadow: 0 0 8px #ccc;
  opacity: 0.9;
}

section.t2 .caption{
  margin: 0.5em 0 0.5em;
  color: #666;
}



@media only screen and (max-width: 768px) {
  section.t1 .inner{
    text-align: center;
  }
  section.t1 .image{
    margin: 0 auto;
    position: relative;
    left: calc(50% - 80px);
  }
  section.t1 .text{
    width: 100%;
  }
  section.t1 .title{
    width: 100%;
    margin: 10px 0;
  }
  section.t2{
    margin: 1em 0 0;
    padding: 0;
  }
  section.t2 .caption{
    font-size: 0.9em;
  }
  section.product-grid{
    overflow-x: scroll;
  }  
}



section.offer{
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);

  text-align: center;
  margin: 2em 0;
  padding: 1.5em;
}





section.product-grid .inner{
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 10px auto;
  min-width: 1000px;
}
section.product-grid .item{
    width: 20%;
    text-align: center;
    padding: 0.8em;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}
section.product-grid .item a{
  display: block;
  overflow: auto;
}
section.product-grid .item:nth-child(odd) {
  background: #fcfcfc;
}

section.product-grid .image img{
  max-width: 90%;
}
section.product-grid .image{
  margin: 1.2em 0 1em;
}
section.product-grid .brand{
  text-transform: uppercase;
  font-weight: bold;
  font-size: 19px;
  color: #333;
  margin: 0.5em 0;
}
section.product-grid .name a{
  font-size: 16px;
  color: #666;
}
section.product-grid .pros{
  font-size: 15px;
  color: #444;
}
section.product-grid .cons{
  font-size: 15px;
  color: #444;
}

@media only screen and (max-width: 768px) {
  section.product-grid .inner{
    margin-top: 0;
  }
}

section.product-grid .badge{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  display: block;
  text-align: center;
  line-height: 2.6em;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 0.8em;
  letter-spacing: 0.6px;
  color: #555;
  font-weight: 400;
  transition: all 0.1s;
}
section.product-grid .smart-choice .badge{
  color: #0099cc;
}
section.product-grid .best-buy .badge{
  color: #ff8800;
}

section.product-grid .item:hover{
  border: 2px solid #ddd;
}
section.product-grid .smart-choice:hover{
  border: 2px solid #33b5e5;
}
section.product-grid .best-buy:hover{
  border: 2px solid #ffbb33;
}
section.product-grid .smart-choice:hover .badge{
  background: #33b5e5;
  color: #fff;
}
section.product-grid .best-buy:hover .badge{
  background: #ffbb33;
  color: #fff;
}

section.review .inner{
  display: flex;
  flex-wrap: wrap;
  padding: 0;

}
section.review .image{
  display: inline-block;
  width: 66.6666%;

}

section.review .image img{
  vertical-align: middle;
  width: 100%;
}
section.review .intro{
  display: inline-block;
  width: 33.3333%;
  padding: 10px 20px;
  color: #444;
}
section.review .intro em{
  font-size: 0.8em;
  margin: 0.5em 0;
  display: block; 
}

@media only screen and (max-width: 992px) {
  section.review h1{
    font-size: 30px;
    margin: 0 0 5px 0;
  }
  section.review .intro{
    font-size: 17px;
  } 
}

@media only screen and (max-width: 768px) {
  section.review {
    margin-top: -10px;
  }
  section.review .inner{
    border: none;
  }
  section.review .image{
    width: 100%;
  }
  section.review .intro{
    width: 100%;
    text-align: center;
    margin: 0;
  }
  section.review h1{
    font-size: 28px;
    margin: 0 0 5px 0;
  }
  section.review .intro{
    font-size: 16px;
  }


}











.listing{
  display: flex;
  flex-wrap: wrap;
}
.listing .item{
  width: calc(33.3333% - 20px);
  margin-bottom: 2em;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 4px #ddd;
  margin: 10px;
  border-radius: 4px;
  transition: 0.3s;
  position: relative;
}
.listing .item a{
  padding: 10px;
  width: 100%;
  display: inline-block;
  overflow: auto;
}
.listing .item a.category{
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  color: var(--primary-color);
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75em;
  font-weight: bold;
  display: inline-block;
  width: auto;
}
.listing .item img{
  height: 200px;
  object-fit: cover;
  transition: 0.3s;
  width: auto;
}
.listing .item:hover{
  box-shadow: 0 0 8px #bbb;
}
.listing .item:hover img{
  opacity: 0.9;
}
.listing .item .title{
  margin: 0.7em;
  text-align: center;
  transition: 0.3s;
}
.listing .item .description{
  font-size: 0.85em;
  color: #666;
  text-align: center;
}
.listing .item:hover .description{
  color: #444;
}

@media only screen and (max-width: 992px) {
  .listing .item{
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 992px) {
  .listing .item{
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .listing .item{
    width: 100%;
    margin: 0 0 15px 0;
  }
  .listing .item img{
    max-height: 250px;  
  }
}
@media only screen and (max-width: 420px) {
  .listing .item img{
    height: 160px;  
  }
}






.product-listing{
  display: flex;
  flex-wrap: wrap;
}

.product-listing .item{
  width: calc(25% - 20px);
  text-align: center;
  margin-bottom: 2em;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 4px #ddd;
  margin: 10px;
  border-radius: 4px;
  transition: 0.3s;
  position: relative;  
  cursor: pointer;
}
.product-listing .item:hover{
  box-shadow: 0 0 8px #bbb;
}
.product-listing .item:hover img{
  opacity: 0.9;
}
@media only screen and (max-width: 992px) {
  .product-listing .item{
    width: calc(33.3333% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .product-listing .item{
    width: calc(50% - 20px);
    margin: 0 10px 15px 10px;
  }
}
@media only screen and (max-width: 420px) {
  .product-listing .item{
    width: 100%;
    margin: 0 0 15px 0;
  }
}

.product-listing .product{
  margin: 0.4em 0;
  display: block;
}
.product-listing .product img{
  padding: 0.5em 0;
}
.product-listing .product .title{
  font-size: 1.2em;
  color: #444;
}
.product-listing .product .description{
  padding: 0.5em;
  font-size: 1em;
  color: #444;
}
.product-listing .product:hover *{
   color: var(--primary-color);
}

.product-listing .review{
  font-size: 0.9em;
  display: inline-block;
  padding: 0.5em;
}
.product-listing .review span.smart-choice{
  background: #33b5e5;
  color: #fff;
  padding: 0.4em 0.8em;
  display: inline-block;
  font-weight: 400;
}
.product-listing .review span.best-buy{
  background: #ffbb33;
  color: #fff;
  padding: 0.4em 0.8em;
  display: block;  
  font-weight: 400;
}


section.product-heading .inner{
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
section.product-heading .item{
  width: 50%;
}

section.product-heading .image,
section.product-image .image{
  cursor: pointer;
  position: relative;
  text-align: center;
}
section.product-heading .more,
section.product-image .more{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.2s;
}
section.product-heading .image:hover .more,
section.product-image .image:hover .more{
  opacity: 1;
}
section.product-heading .more .wrapper,
section.product-image .more .wrapper{
  width: 100%;
  text-align: center;
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
}
section.product-heading .more span,
section.product-image .more span{
  margin: 10px 0 0 0;
    display: inline-block;
    padding: 0.4em 1em;
    color: #fff;
    background: #f90;
    font-size: 0.9em;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s
}
section.product-heading .more span:hover,
section.product-image .more span:hover{
  background: #302C2C;
}
section.product-heading h1{
  margin: 1em 0;
}
section.product-heading h1 span{
  font-size: 0.75em;
}
.check-price{
  margin: 10px 0 0 0;
    display: inline-block;
    padding: 0.4em 1em;
    color: #fff;
    background: #f90;
    font-size: 1.15em;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}
.check-price:hover,
section.product-grid .item:hover .check-price{
  background: #302C2C;
  color: #fff;
}


@media only screen and (max-width: 768px) {
  section.product-heading .item{
    width: 100%;
  }

  section.product-heading h1{
    line-height: 1em;
    margin: 0.2em 0 0.5em;
    font-size: 1.4em;
  }

  section.product-heading .inner{
    margin-top: -15px;
  }

  section.product-image .more{
    background: rgba(255, 255, 255, 0.6);
  }

  section.product-image .more{
    opacity: 1; 
  }
}

section.product-similar {
  text-align: center;
}
section.product-similar .item{
  width: calc(50% - 20px);
  padding: 1em;
  cursor: pointer;
}
section.product-similar .item .brand{
  font-size: 1.3em;
  line-height: 1.6em;
}
section.product-similar .item img{
  height: 300px;
}
section.product-similar .check-price{
  font-size: 1em;
}

@media only screen and (max-width: 768px) {
  section.product-similar .item{
    width: 100%;
    padding: 1em;
    cursor: pointer;
  }
}



section.product-boxes .inner{
  display: flex;
  flex-wrap: wrap;
  color: #444;
  font-size: 0.9em;
  line-height: 1.5em;
}
.box-blue{
  width: 100%;
  border: 1px solid #33b5e5;
  border-top: 6px solid #33b5e5;
  padding: 15px;
  margin: 10px;
}
.box-blue h2{
  color: #33b5e5;
  line-height: 1.2em;
}
.box-red{
  border: 1px solid #ff4444;
  border-top: 6px solid #ff4444
}
.box-red h2{
  color: #ff4444;
  line-height: 1.2em;
}
.box-green{
  border: 1px solid #00c851;
  border-top: 6px solid #00c851
}
.box-green h2{
  color: #00c851;
  line-height: 1.2em;
}
.box-green,
.box-red{
  width: calc(50% - 20px);
  padding: 15px;
  margin: 10px;
}

section.product-description{
  color: #444;
  font-size: 0.95em;
  line-height: 1.4em;
}
section.product-description h2{
  line-height: 1.2em;
}
@media only screen and (max-width: 768px) {
  section.product-boxes .inner{
    padding: 5px 0;
  }
  .box-green,
  .box-red{
    width: 100%;
  }
}

@media only screen and (max-width: 420px) {
  section.product-heading .image img{
    max-width: 200px
  }

  section.product-boxes h2,
  section.description{
    margin: 0 0 10px;
  }
  .box-blue,
  .box-green,
  .box-red{
    margin: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
}

.box-blue ul li:before,
.box-green ul li:before,
.box-red ul li:before{
  content: "\2022";
  padding-right: 0.3em;
}
.box-blue ul li:before{
  color: #33b5e5;
}
.box-green ul li:before{
  color: #00c851;
}
.box-red ul li:before{
  color: #ff4444;
}

section.product-review{
  background: var(--primary-bk-color);
  color: var(--primary-bk-text-color);
  margin: 2em 0 1em;
  text-align: center;
}
section.product-review .inner {
  padding: 1.5em 1em;
}
section.product-review .inner a{
  display: block;
}
section.product-review img{
  border: 2px solid #fff;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
section.product-review img:hover{
  box-shadow: none; 
  opacity: 0.9;
  box-shadow: 0 0 6px #ccc;
}
section.product-review a{
  color: #fff;
}

@media only screen and (max-width: 420px) {
  section.product-review .inner{
    padding: 0;

  }
  section.product-review img{
    border: none;
    box-shadow: none;
  }

  section.product-review  .info{
    padding: 0.2em 0.5em 1em;
    display: block;
    width: 100%;
  }
}





#topnav {
  overflow: hidden;
  float: right;
  margin-top: 10px;
}

#topnav a {
  float: left;
  display: block;
  color: #225d8d;
  text-align: center;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  text-decoration: none;
  font-size: 17px;
}
#topnav .icon{
  font-size: 32px;
  display: none;
}
#topnav .active {
  background-color: #225d8d!important;
  color: #fff!important;
}


.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: #225d8d;
  height: 40px;
  padding: 0 20px;
  cursor: pointer;
  background: inherit;
  margin-right: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  width: 140px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a{
  float: none;
  color: black;
  height: 30px;
  width: 100%;
  padding: 0 10px!important;
  line-height: 30px;
  text-decoration: none;
  display: block;
  text-align: left!important;
}

#topnav a:hover, .dropdown:hover .dropbtn {
  background: var(--primary-color);
  color: #fff;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
  color: #444;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 768px) {
  #topnav a, .dropdown .dropbtn {
    display: none;
  }
  #topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 768px) {

  #topnav a:first-child{
    margin-top: 40px;
  }
  #topnav.responsive {
    position: absolute;
    background: #fff;
    top: 0px!important;
    right: 10px!important;
  }
  #topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  #topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  #topnav.responsive .dropdown {float: none;}
  #topnav.responsive .dropdown-content {position: relative;}
  #topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
  #topnav.responsive .dropdown-content a{
    margin-top: 0;
  }

  #topnav.wrapper{
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  }
}



section.pagination {
  text-align: center;
}
section.pagination a{
  margin: 5px;
  padding: 0.5em 0.8em;
  border: 2px solid #eee;
  border-radius: 6px;
  font-size: 1em;

  display: inline-block;
  background: #fafafa;
  color: #666;
}
section.pagination a:hover{
  border: 2px solid var(--primary-color);
  background: #fff;
  color: var(--primary-color);
}
section.pagination a.active{
  color: #fff;
  border: 2px solid var(--primary-color);
  background: var(--primary-color)
}


@media only screen and (max-width: 420px) {
  section.pagination a span{
    display: none;
  }
}





section.category{
  margin-top: -10px;
}

section.category .inner{
  position: relative;
  padding: 0;
}
section.category .inner img{
  width: 100%;
}
section.category .heading{
  display: block;
  width: 100%;
  position: absolute;
  height: 80px;
  text-align: center;
  top: calc(50% - 100px);
}

section.category .heading h1{
  color: #fff;
  margin: 0;
  font-size: 4em;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #000;
  background: rgba(0,0,0,0.3);
  display: inline-block;
  padding: 20px 40px;
}

@media (max-width: 767px) {

  section.category .heading{
    height: 50px;
    top: calc(50% - 50px);
  }
  section.category .heading h1 {
    font-size: 3em;
    padding: 10px 20px;
  }
}

@media (max-width: 420px) {

  section.category .heading{
    height: 30px;
    top: calc(50% - 30px);
  }
  section.category .heading h1 {
    font-size: 2em;
    padding: 5px 15px;
    letter-spacing: 0.5px;
  }
}

section.tiles{
  overflow: visible;
  z-index: 2;
  position: relative;
}

section.tiles .inner{
  overflow: visible;
  margin-top: -5em;
  display: flex;
  flex-wrap: wrap;
  padding: 0;

  background: #fff;
}

section.tiles .inner .item{
  width: 33.3333%;
  text-align: center;
  border: 1px solid #f5f5f5;
}
section.tiles .inner .item a{
  padding: 10px;
  margin: 10px;
  display: block;
}
section.tiles .inner .item img{
  width: 80%;
}
@media (max-width: 767px) {
  section.tiles .inner{
    margin-top: -10px;
  }
  section.tiles .inner .item{
    width: 50%; 
  }
}