* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: 'segoe ui';
}
.navbar-inverse{
    height: 75px;
    background: white;
    border-bottom: none;
    box-shadow: 0px 0px 5px;
}
.navbar-inverse ul{
    margin-top: 8px;
}
.navbar-inverse ul li a{
/*background: #f1745f!important;*/
border-radius: 5px;
    color: black!important;
    display: block;
    width: 140px;
    text-align: center;
    margin:5px;
    transition: 0.3s;
}
 .navbar-inverse ul .active a{
    background: #e14c3d!important;
     color: white!important;
     transition:0.3s;
}
 .navbar-inverse ul li a:hover{
    background: #e14c3d!important;
     color: white!important;
     transition:0.3s;
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover{
    background: none;
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{
    background: white;
}
.navbar-inverse .navbar-toggle .icon-bar{
    background: #e14c3d;
}
.navbar-brand img{
    width: 120px;
}
.navbar-brand{
    margin-top: -10px;
}
.navbar-brand img{
    width: 180px;
}

.cart_button{

    background: #4b6b49;
    padding: 10px;
    text-align: center;
    /* color: white !important; */
    font-weight: 999;
}
.buy_button{

    background: #4b6b49;
    padding: 10px;
    text-align: center;
    /* color: white !important; */
    font-weight: 999;
}
.cart_button a{
  text-decoration: none;
  color: #fff;}

.buy_button a{
  text-decoration: none;
  color: #fff;}
  .buy_button:hover{
    background: red;
    transition: 2s;
  }
    .cart_button:hover{
    background: red;
    transition: 2s;
  }
  .item_head{
    background: #ff4e4e;
    color: white;
    text-align: center;
    padding: 7px;
    text-transform: uppercase;
    font-weight: bold;
  }
.item-grid{    background: #f2f0f0;
    padding: 10px;
    margin-top: 24px;
}
.nav-links{
  z-index: 999
}





a {
  color: #35a785;
  text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}

/* -------------------------------- 

xnugget info 

-------------------------------- */
.cd-nugget-info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  bottom: 0;
  left: 0;
}
.cd-nugget-info a {
  position: relative;
  font-size: 14px;
  color: #5e6e8d;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.no-touch .cd-nugget-info a:hover {
  opacity: .8;
}
.cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}
.cd-nugget-info span svg {
  display: block;
}
.cd-nugget-info .cd-nugget-info-arrow {
  fill: #5e6e8d;
}

/* -------------------------------- 

Main components 

-------------------------------- */


.cd-popup-trigger {
    display: block;
    /* width: 170px; */
    height: 40px;
    line-height: 43px;
    /* margin: 3em auto; */
    text-align: center;
    /* font-weight: bold !important; */
    color: #FFF;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    /* border-radius: 50em; */
    background: #35a785;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.07);
}
@media only screen and (min-width: 1170px) {
  .cd-popup-trigger {
    text-decoration: none;
  
  }
}

/* -------------------------------- 

xpopup 

-------------------------------- */
.cd-popup {
  z-index:100;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 4em auto;
  background: #FFF;
  border-radius: .25em .25em .4em .4em;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-popup-container p {
  padding: 3em 1em;
}
.cd-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
  list-style: none;
}
.cd-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-popup-container .cd-buttons li:first-child a {
  background: #fc7169;
  border-radius: 0 0 0 .25em;
}
.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
  background-color: #fc8982;
}
.cd-popup-container .cd-buttons li:last-child a {
  background: #b6bece;
  border-radius: 0 0 .25em 0;
}
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
  background-color: #c5ccd8;
}
.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}
.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: #8f9cb5;
}
.cd-popup-container .cd-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.cd-popup-container .cd-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}
.is-visible .cd-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
  .cd-popup-container {
    margin: 8em auto;
  }
}
@media only screen an (max-width: 800px){
  .loginform, .registerform {
    width: 356px;}
}

.loginform, .registerform
{
  width: 350px;
  height: 350px;
  position: absolute;
  left: 50%;
  margin-left:-175px;
  border: none;
  border-radius: 10px;
  top: 100px;
  line-height: 5px;
  text-align: center;
  background-color: #fff !important;
  -webkit-box-shadow: 0px 0px 36px 1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 36px 1px rgba(0,0,0,0.75)
box-shadow: 0px 0px 36px 1px rgba(0,0,0,0.75);
  
}
.loginform
{
  z-index: 1;
}
.registerform-active
{
  z-index: 2;
  background-color: #0B4C5F;
}
.registerform input
{
  background-color: #fff;
  color: white;
}
.registerform .submit
{
  background-color: white;
  color: #0B4C5F;
  position: relative;
  top: 120px;
}

.whitetop
{
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  box-shadow: none;
  background: white;
  border-radius: 10px 10px 0px 0px; 
}

h3
{
 font-family: Verdana;
 position: relative;
 top: 5px;
}

.mail, .pass
{
  position: relative;
  top: 110px;
  height: 25px;
  width: 200px;
  margin: 10px;
  border:none;
  background-color: #A9E2F3;
  border: none;
  border-bottom: 2px solid white;
  transition: all 0.5s ;
}

.mail:focus, .pass:focus 
{
  outline: none; 
  border-bottom: 2px solid #088A85;
  width: 250px;
}

.submit
{
  position: relative;
  top: 160px;
  width: 160px;
  height: 30px;
  border: none;
  background-color: white;
  color: #49B8A8;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.5s;
}
.submit:hover
{
  background-color: #088A85;
  color: white;
   border-radius: 10px;
}
.login
{
position: absolute;
left: 0;
top: 50px;
height: 40px;
width: 173px;
text-align: center;
vertical-align: middle;
line-height: 40px; 
cursor: pointer;
}
.register
{
  position: absolute;
  right: 0;
  top: 50px;
  height: 40px;
  width: 173px;
  text-align: center;
  vertical-align: middle;
  line-height: 40px; 
  cursor: pointer;
}

.img-adj{
      min-height: 196px;
}










  
/*----------------------------*\
  Single product
\*----------------------------*/
.product{
      background: #f4f4f4;
    box-shadow: 10px #ffff;
    -webkit-box-shadow: 10px 19px 59px -29px rgba(0,0,0,0.75);
}
.product.product-single {
  margin-top: 15px;
  margin-bottom: 15px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.product.product-single:hover {
  -webkit-box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.175);
  box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.175);
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}

.product.product-single .product-thumb {
  position: relative;
  margin-bottom: 15px;
}

.product.product-single .product-thumb>img {
  width: 100%;
}

.product.product-single .product-thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  opacity: 0;
  visibility: visible;
  z-index: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.product.product-single:hover .product-thumb:after {
  opacity: 0.7;
  visibility: visible;
}

.product.product-single .quick-view {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}

.product.product-single:hover .quick-view {
  opacity: 1;
  visibility: visible;
}

.product.product-single .product-label {
  position: absolute;
  left: 0;
  top: 0;
}

.product.product-single .product-label>span {
  display: block;
}

.product.product-single .product-countdown {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
}

.product.product-single .product-body {
     padding: 5px 11px 10px 11px;
    margin-top: -29px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}


.product.product-single .product-price {
  display: inline-block;
  font-size: 19px;
}

.product.product-single .product-rating {
  float: right;
  margin-top: 23px;
}

.product.product-single .product-name {
  font-size: 14px!important;
}

.product.product-single .product-btns {
  margin-top: 20px;

  visibility: visible;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.product.product-single:hover .product-btns {
  opacity: 1;
  visibility: visible;
}

/*-- hot product --*/

.product.product-single.product-hot {
  border: 2px solid #F8694A;
}

.product.product-single.product-hot .product-btns {
  opacity: 1;
  visibility: visible;
}

}
.product.product-single .quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 20;
}
.main-btn {
    color: #f71010;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 6px transparent;
    box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 6px transparent;
}
.primary-btn{
    background:#35a785; 
}
.main-btn, .primary-btn {

    display: inline-block;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
  
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.cd-popup-trigger{
  min-height: 63px;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}
button, select {
    text-transform: none;
}
button {
    overflow: visible;
}





  /*delete*/



.portfolio
{
    width: 668px;
    margin: 0 auto;
    margin-top: 40px;
}


.select
{
    opacity: 0.3;
}

.delete-x
{
    display: none;
    transition: all 0.5s;
}


.buttons
{
    width: 750px;
    margin-bottom: 20px;
}

.buttons button
{
    border: none;
    width: 151px;
    height: 40px;
    background: #569eef;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 15px;
    margin-left: 10px;
    position: relative;
    margin-top: 10px;
    transition: all 0.5s;
    border-radius: 4px;
    left: 1px;
}



.buttons button:hover
{
    background: transparent;
    border: 1px solid #569eef;
    color: #569eef;
}

.div1 { background: #f1c40f;}
.div2 { background: #2ecc71;}
.div3 { background: #e74c3c;}
.div4 { background: #3498db;}
.div5 { background: #EA2E49;}
.div6 { background: #0092B2;}
.div7 { background: #34495e;}
.div8 { background: #F9690E;}
.div9 { background: #40D341;}

.done 
{
    font-size: 70px;
    line-height: 2.2;
}


/*redesign section*/
footer { background-color:#101010; min-height:350px; }
.footerleft { margin-top:50px; padding:0 36px; }
.logofooter { margin-bottom:10px; font-size:25px; color:#fff; font-weight:700;}
.logofooter img{ margin-left: -10px;}

.footerleft p { color:#fff; font-size:12px !important;  margin-bottom:15px;}
.footerleft p i { width:20px; color:#999;}


.paddingtop-bottom {  margin-top:50px;}
.footer-ul { list-style-type:none;  padding-left:0px; margin-left:2px;}
.footer-ul li { line-height:29px; font-size:12px;}
.footer-ul li a { color:#a0a3a4; transition: color 0.2s linear 0s, background 0.2s linear 0s; }
.footer-ul i { margin-right:10px;}
.footer-ul li a:hover {transition: color 0.2s linear 0s, background 0.2s linear 0s; color:#ff670f; }

.social:hover {
     -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
     -o-transform: scale(1.1);
 }
 
 
@media(max-width:761px){
    .navbar-brand img{
    width: 120px;
    }
    .navbar-inverse ul li a{
        width: 100%;
    }
}
 
 .icon-ul { list-style-type:none !important; margin:0px; padding:0px;}
 .icon-ul li { line-height:75px; width:100%; float:left;}
 .icon { float:left; margin-right:5px;}
 
 
 .copyright { min-height:40px; background-color:#000000;}
 .copyright p { text-align:left; color:#FFF; padding:10px 0; margin-bottom:0px;}
 .heading7 { font-size:21px; font-weight:700; color:#d9d6d6; margin-bottom:22px;}
 .post p { font-size:12px; color:#FFF; line-height:20px;}
 .post p span { display:block; color:#8f8f8f;}
 .bottom_ul { list-style-type:none; float:right; margin-bottom:0px;}
 .bottom_ul li { float:left; line-height:40px;}
 .bottom_ul li:after { color:#FFF; margin-right:8px; margin-left:8px;}
 .bottom_ul li a { color:#FFF;  font-size:12px;}

.touch{
    position: absolute; z-index: 500; top: 20%; left: 20%; font-size: 50px; font-family: sans-serif; display: block; color: #2e2e2e;
    position: absolute; z-index: 500; top: 20%; left: 20%; font-size: 50px; font-family: sans-serif; display: block; color: #2e2e2e;
}

@media(max-width:761px){
    .touch{
        font-size: 40px;
        
    }
}




/*faq*/

.headings{
  font-weight: 600;
  font-size: 2.5rem;

}
.pad-remover{
  padding: 0;
}
.html{
  font-size: 67.5%;
}
.con-con p{
  font-weight: 600;
}