.map-bar {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 20px;
}

.map-bar .map-bar-link {
    text-decoration: none;
    padding: 0 10px;
    color: #000;
}

.map-bar .map-bar-link:hover {
    text-decoration: underline;
}

/* start sidebar */
.sidebar {
    margin-top: 20px;
}

@media (min-width: 992px) {
    .sidebar.col-lg-3 {
        flex: 0 0 auto;
        width: 21%;
    }
}

.sidebar-single {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.sidebar-single .sidebar-body .checkbox-container ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(0, 0, 0, .55);
    padding: 5px;
}

/* start sidebar news */
.sidebar-news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    padding-right: 10px;
}

.sidebar-news-item .sidebar-news-img {
    width: 70px !;
    height: 70px;
    overflow: hidden;
    position: relative;
}

.sidebar-news-item .sidebar-news-img img {
    width: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
}

.sidebar-news-body {
    margin-right: 10px;
}

.sidebar-news-title {
    text-overflow: ellipsis !important;
}

.sidebar-news-title a {
    text-decoration: none;
    color: rgba(0, 0, 0, .55);
}

.sidebar-news-title a:hover {
    text-decoration: underline;
    color: #000000;

}

/* end sidebar news */

/* end sidebar */
/* start product */


.product-area {
    margin-top: 20px;
}

@media (min-width: 992px) {
    .product-area .col-lg-4{
        width: 31.33333333% !important;
    }
    .content.container{
        padding-left: 0;
        padding-right: 0;
    }
    .product-area {
        margin-right: 18px;
    }
    .product-area.col-lg-9 {
        flex: 0 0 auto;
        width: 78%;
    }
    .product.col-lg-3{
        flex: 0 0 auto;
        width: 23%;
    }
}
.product {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    padding: 20px;
    padding-top: 0;
    height: 470px;
    position: relative;
    margin-left: 17px;
}
.product-detail{
    text-align: center;
    position: absolute;
    bottom: 10px;
    transition: all .4s ease-in-out;
    background: #fff;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}
.product:hover .product-detail{
    transform: translateY(-10px);
}
.product:hover button{
    display: inline-block;
    opacity: 1;
    padding: 5px 20px;
    height: unset;
    transform: translateY(0);
}
.product .product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.product .product-img img {
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
}

h3.product-title a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
}
h3.product-title a:hover{
    color: #eee8f0;
    text-decoration: underline;
}
.product-compair button{
    border: 0;
    transform: translateY(50px);
    padding: 5px 20px;
    background-color: #d6e3ec;
    color: #fff;
    border-radius: 25px;
    transition: all .4s ease-in-out;
}
.product-compair button:hover{
    color: #000;
    text-decoration: underline;
}
.price{
   
}
.price, .price+p{
    font-size: 20px;
    color: #000;
} 
/* end product */

nav.page{
    margin: 0 auto;
}
.page-item a{
    color: #eee8f0;
}


.product-favorite{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-btn{
    background-color: #fff;
    width: 200px;
    height: 200px;
    position: fixed;
    bottom: 10px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
}
.compare-btn .img_compare{
    width: 50%;
    height: 50%;
    object-fit: cover;
}
.compare-btn p{
    position: absolute;
    bottom: 0;
    padding: 10px 40px;
    background-color: #d6e3ec;
    border-radius: 20px;
    color: #fff;
}
.product-special{
    margin-top: 10px;
}