/* CSS Document */
img{
    max-width:100%;
    height:auto;
}

/* Navbar */
.navbar-brand img{
    height:100%;
    width:auto;
}

.dropdown:hover .dropdown-menu {
    display: block;
 }
 
 /* Login */
 .remember-me-popup{
     display:none;
 }
 
 /* Product Category */
 .products-list .item{
     overflow:hidden;
     margin:10px 0px;
 }
 
 .products-grid .item{
     margin:10px 0px;
 }
 

 
 /* Footer */
 .footer-item{
     margin:10px 0px;
 }

label {
    font-weight: normal;
}
/*button*/
.btn-default, .btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger {
    text-shadow:none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
:focus, :active{text-decoration: none!important;}
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none;
}

.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    border-top: 0;
}
/*input*/
.form-control:focus {
    border-color: #c5c0bc;
    -webkit-box-shadow: none;
    box-shadow: none;
}
/* select */
.form-control {
    display: block;
    width: 100%;
    height: 44px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #685e56;
    background-color: #fff;
    background-image: none;
    border: 1px solid #c5c0bc;
    border-radius: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

select, select[name="country_id"], select[name="billing[country_id]"], select[name="shipping[country_id]"]{
    display:block;
    width:100%;
    height:44px;
    padding:6px 12px;
    font-size:14px;
    line-height:1.42857143;
    color:#685e56;
    background-color:#fff;
    background-image:none;
    border:1px solid #c5c0bc;
    border-radius:30px;
    -webkit-box-shadow:none;
    box-shadow:none;
    -webkit-transition:none;
    transition:none;
    /*appearance:none;*/
    /*-moz-appearance:none; *//* Firefox */
    /*-webkit-appearance:none; *//* Safari and Chrome */
    /*position: relative;*/
}
/*select:after{content: "&#x2B07;"; font-family: "SSGlyphish", sans-serif; color: #dd7b00; width: 16px; height: 10px; position: absolute; right: 0; top: 50%;}*/
select[name="country_id"]:focus, select[name="billing[country_id]"]:focus, select[name="shipping[country_id]"]:focus{
    border-color:#c5c0bc;
    outline:0;
    -webkit-box-shadow:none;
    box-shadow:none;
}
@media screen and (max-width: 767px) {
    .table-responsive {border: 0;}
}