.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.navbar-nav li a.nav-link{
    position: relative;
}
.nav-logo{
    max-height: 35px;
}
@media (max-width: 992px){
    .navbar-nav li a.nav-link.active:not(#cart-icon){
        text-decoration: underline;
    }
}
@media (min-width: 992px){
    .navbar-nav li a.nav-link:not(#cart-icon):after{
        content: '';
        display: none;
        width: 0;
        height: 0;
        border-bottom: 10px  solid #fff;
        border-right: 10px  solid transparent;
        border-left: 10px  solid transparent;
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 50%;
        margin-left: -10px
    }
    .navbar-nav li:hover a.nav-link:not(#cart-icon):after {
        display: block !important;
    }

    .navbar-nav li a.nav-link.active:not(#cart-icon):before{
        content: '';
        width: 0;
        height: 0;
        border-bottom: 10px  solid #fff;
        border-right: 10px  solid transparent;
        border-left: 10px  solid transparent;
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 50%;
        margin-left: -10px
    }
}
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-10px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
} 

.padding-1{
    padding: 1px !important;
}
.nopad {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/*image gallery*/
.image-checkbox {
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid transparent;
    margin-bottom: -10px;
    outline: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    padding-bottom: 100%;
    height: 100%;
    width: 100%;
}
.image-checkbox input[type="radio"] {
    /*display: none;*/
    position: absolute;
    top: 0;
    left: calc(50% - 15px);
    width: 0;
    height: 0;
}
.image-checkbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    background-color: #cccccc;
}
/*.image-checkbox img:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/common/no-image-available.png'), center, no-repeat, #cccccc;
    background-size: cover;
}*/
.image-checkbox .fa{
    width: 100%;
    /* height: 100%; */
    display: none;
    position: absolute;
    bottom: calc(50% - 12px);
    left: 0;
    font-size: 24px;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
}
.image-checkbox input[type="radio"]:checked + img {
    /*    border-color: #ed1f24;
        box-shadow: inset 0 1px 1px rgba(237, 31, 36, 0.7), 0 0 8px rgba(237, 31, 36, 0.7);*/
}
.image-checkbox input[type="radio"]:checked ~ .fa{
    display: block !important;
    pointer-events: none;
}
.image-checkbox-checked {
    border-color: #4783B0;
}

#product-zoomer{
    position: absolute;
    width: 300px;
    min-height: 150px;
    left: -330px;
    background-color: aliceblue;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    border-radius: 10px;
}
.hidden{
    display: none !important;
}

.card > .card-group-item:first-child > .card-header{
    border-radius: .625rem .625rem 0 0 !important;
    border-bottom: 1px solid #00000050;
}

#cart-icon{
    position: relative;
}
#cart-item-count{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 10px;
    padding: 3px;
    line-height: inherit;
    min-width: 22px;
}




.lighter-text {
    color: #abb0be;
}
.main-color-text {
    color: #00c0cb;
}
#addtocart {
    width: 250px;
}
.badge {
    background-color: red;
    border-radius: 10px;
    color: white;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 3px 7px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}
.shopping-cart {
    background: white;
    width: 320px;
    position: absolute;
    top: 70px;
    right: 5px;
    border-radius: 3px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26) !important;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    -webkit-transform-origin: right top 0;
    -webkit-transform: scale(0);
    transform-origin: right top 0;
    transform: scale(0);
    z-index: 1;
}
.shopping-cart.active {
    opacity: 1;
    -webkit-transform-origin: right top 0;
    -webkit-transform: scale(1);
    transform-origin: right top 0;
    transform: scale(1);
}
.shopping-cart .shopping-cart-header {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
}
.shopping-cart .shopping-cart-header .shopping-cart-total {
    float: right;
}
.shopping-cart .shopping-cart-items {
    padding-top: 20px;
    padding-left: 0;
    list-style-type: none;
    max-height: 283px;
    overflow-y: auto;
}
.shopping-cart .shopping-cart-items li {
    margin-bottom: 18px;
}
.shopping-cart .shopping-cart-items img {
    float: left;
    margin-right: 12px;
    width: 70px;
    height: 70px;
    object-fit: cover;
    position: relative;
    background-color: #cccccc;
}
/*.shopping-cart .shopping-cart-items img:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/common/no-image-available.png'), center, no-repeat, #cccccc;
    background-size: cover;
}*/
.shopping-cart .shopping-cart-items .item-name {
    display: block;
    font-size: 16px;
}
.shopping-cart .shopping-cart-items .item-detail {
    display: block;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.shopping-cart .shopping-cart-items .item-price {
    color: #00c0cb;
    margin-right: 8px;
}
.shopping-cart .shopping-cart-items .item-quantity {
    color: #abb0be;
}
.shopping-cart:after {
    bottom: 100%;
    left: 89%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: white;
    border-width: 8px;
    margin-left: -8px;
}
.cart-icon {
    color: #515783;
    font-size: 24px;
    margin-right: 7px;
    float: left;
}
.button {
    background: #f8770c;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    display: block;
    border-radius: 3px;
    font-size: 16px;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
}
.button:hover {
    background: #f87f1b;
}
.button i {
    padding-left: 5px;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.popover.clour-img-hover{
    margin-right: 20px;
    background-color: white;
}
.popover.clour-img-hover .popover-body {
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
    text-align: center;
}
.popover.clour-img-hover .popover-body img{
    object-fit: cover;
    height: -webkit-fill-available;
    width: 100%;
    position: relative;
    min-width: 150px;
    min-height: 150px;
}
[role="button"]{
    cursor: pointer;
}
.card .list-group-item.active {
    color: #fff !important;
    background-color: rgba(0, 123, 255, 0.18) !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    color: #000 !important;
}
.accordian-cart .list-group-item{
    padding: 15px;
    border-radius: 0;
    border: none;
}
.list-group-item:first-child{
    border-radius: 0;
}

.search-result{
    position: absolute;
    top: 42px;
    z-index: 1023;
    background: #fff;
    width: calc(100% - 30px);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26) !important;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    -webkit-transform-origin: ccenter top 0;
    -webkit-transform: scale(0);
    transform-origin: center top 0;
    transform: scale(0);
}
.search-result.active {
    opacity: 1;
    -webkit-transform-origin: center top 0;
    -webkit-transform: scale(1);
    transform-origin: center top 0;
    transform: scale(1);
}
.search-result-items{
    list-style-type: none;
    max-height: 280px;
    overflow-y: auto;
}
.search-result-items li a{
    font-weight: 600;
    outline: none;
}
.list-group-item-in{
    padding: 2px 1.25rem 5px 1.25rem !important;
    margin-bottom: -1px;
    background-color: #fff;
    border-top: none !important;
    font-weight: 300;
    margin-top: -15px;
}
.accordian-cart .list-group-item-in{
    padding: 2px 1rem 5px 1rem !important;
    margin-bottom: -1px;
    background-color: #fff;
    border-top: none !important;
    font-weight: 300;
    margin-top: -15px;
}

#side-product-menu .card-header {
    cursor: pointer;
    border-top: 1px solid rgba(0,0,0,.125);
}
#side-product-menu .card-header:first-child {
    border-radius: 0;
    border: none;
}
#side-product-menu .card-header:after {
    font-family: 'FontAwesome';  
    content: "\f068";
    float: right; 
}
#side-product-menu .card-header.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\f067"; 
}
#side-product-menu .list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

#side-product-menu .list-group-item {
    border: none;
    border-top: 1px solid rgba(0,0,0,.125);
}