/*
    Our shops
*/

.title {
    margin-bottom: 2.5rem;
}
.shops-wrapper {
    display: flex;
    border: 2px solid #D2D2D2;
    margin-bottom: 2.5rem;
}
.shops-list {
    width: 45%;
    height: 90vh;
    overflow-y: scroll;
}
.shops-item {
    padding: 25px 70px 25px 50px;
    border-bottom: 1px solid #D2D2D2;
    position: relative;
    cursor: pointer;
}
.shops-list .active{
    cursor: unset;
    background: #f2f2f261;
}

.shop-name {
    font-weight: 700;
    color: #3A5E69;
    margin-bottom: 12px;
}
.shop-phone > img, .shop-location > img {
    margin-right: .5rem;
}
.shop-location, .shop-phone {
    font-weight: 400;
    color: #3A5E69;
}
.shop-location {
    margin-bottom: .5rem;
}
.map-wrapper {
    width: 100%;
    height: 100%;
}
.map-wrapper iframe {
    height: 100%;
    width: 100%;
}
.shop-map {
    width: 55%;
}
.shops-item .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 15px;
    bottom: 50%;
    transition: .3s;
}
.shops-item:hover .shop-icon {
    right: 13px;
}
.shop-image {
    max-width: 100%;
}
.text-center {
    text-align: center !important;
}
