.types{
    margin-top: 20px;
}

.type{
  margin-top: 80px;
}

.form-control[type="search"]{
    border: solid 1px turquoise;
    border-radius: 5px !important;
}

.form-control[type="search"]:focus{
    background-color: rgba(0,0,0,0.2);
    box-shadow: none;
    outline: none;
    border: none;
    border-radius: 0px !important;
}

.btn-dark {
    margin-left: 5px !important;
}

.headline{
    padding-top: 10px;
    color: teal;
    text-transform: uppercase;
}

 .btn-default{
    margin-top: 5px;
    margin-left: 12px;
 }
    /*Forms*/
  .form-control,
  .form-control:focus {
    box-shadow: none;
    outline: none;
  }
  
  /*Checkboxes*/

  .checkbox a{
    text-decoration: none;
    color: grey;
  }

  .checkbox a:hover{
    text-decoration: none;
    color: grey;
}

.checkbox a:focus{
    color: black;
    font-weight: bold;
}
  .checkbox input[type="checkbox"] {
    display: none;
  }
  .checkbox label {
    padding-left: 0;
  }
  .checkbox label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #eee;
    text-align: center;
    font-family: "FontAwesome";
  }
  .checkbox input[type="checkbox"]:checked + label::before {
    content: "";
  }

  .shop-filter__price input[type="number"]{
      margin: 5px 10px;
  }
  /* Radios */

  .radio a{
    text-decoration: none;
    color: grey;
  }

  .radio a:hover{
      text-decoration: none;
      color: grey;
  }

  .radio a:focus{
      color: black;
      font-weight: bold;
  }
  .radio input[type="radio"] {
    display: none;
    
  }
  .radio label {
    padding-left: 0;
  }
  .radio label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 10px solid #eee;
    background-color: #333333;
  }
  .radio input[type="radio"]:checked + label:before {
    border-width: 7px;
  }
  
  .breadcrumb{
    width: 200px;
    position: absolute;
    right: 50px;
  }


/********************* Shopping Demo-6 **********************/

@media only screen and (max-width:990px){
  .product-grid6{margin-bottom:30px
  }
}

.product-grid6,.product-grid6 .product-image6{
  overflow:hidden;
}
.product-grid6{
font-family:'Open Sans',sans-serif;
text-align:center;
position:relative;
transition:all .5s ease 0s;
padding: 20px;
}
.product-grid6:hover{
box-shadow:0 0 10px rgba(0,0,0,.3);
}
.product-grid6 .product-image6 a{
display:block;
}
.product-grid6 .product-image6 img{
width:100%;
height:auto;
transition:all .5s ease 0s;
}
.product-grid6:hover .product-image6 img{
transform:scale(1.1);
}
.product-grid6 .product-content{
padding:12px 12px 15px;
transition:all .5s ease 0s;
}
.product-grid6:hover .product-content{
opacity:0;
}
.product-grid6 .title{
font-size:20px;
font-weight:600;
text-transform:capitalize;
margin:0 0 10px;
transition:all .3s ease 0s;
}
.product-grid6 .title a{
color:#000;
}
.product-grid6 .title a:hover{
color:teal;
}
.product-grid6 .price{
font-size:18px;
font-weight:600;
color:teal;
}
.product-grid6 .price span{
color:#999;
font-size:15px;
font-weight:400;
text-decoration:line-through;
margin-left:7px;
display:inline-block;
}
.product-grid6 .social{
background-color:#fff;
width:100%;
padding:0;
margin:0;
list-style:none;
opacity:0;
transform:translateX(-50%);
position:absolute;
bottom:-50%;
left:50%;
z-index:1;
transition:all .5s ease 0s;
}
.product-grid6:hover .social{
opacity:1;
bottom:20px;
}
.product-grid6 .social li{
display:inline-block;
}
.product-grid6 .social li a{
color:teal;
font-size:16px;
line-height:45px;
text-align:center;
height:45px;
width:45px;
margin:0 7px;
border:1px solid teal;
border-radius:50px;
display:block;
position:relative;
transition:all .3s ease-in-out;
}
.product-grid6 .social li a:hover{
color:#fff;
background-color:teal;
border:1px solid transparent ;
width:80px;
}
.product-grid6 .social li a:after,.product-grid6 .social li a:before{
content:attr(data-tip);
color:#fff;
background-color:teal;
font-size:12px;
letter-spacing:1px;
line-height:20px;
padding:1px 5px;
border-radius:5px;
white-space:nowrap;
opacity:0;
transform:translateX(-50%);
position:absolute;
left:50%;
top:-30px;
}
.product-grid6 .social li a:after{
content:'';
height:15px;
width:15px;
border-radius:0;
transform:translateX(-50%) rotate(45deg);
top:-20px;
z-index:-1;
}
.product-grid6 .social li a:hover:after,.product-grid6 .social li a:hover:before{
opacity:1;
}