/* Root */
.service_centers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.service_centers_header h3{
    color: #141719;
    font-size: 24px;
    line-height: 30px;
}
.service_centers .service_centers_main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

/* Header + Search */
.service_centers .service_centers_header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 30px;
}
.service_centers .search {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}
.service_centers .search icon{
    color: var(--color-icon-soft-default);
    width: 24px;
    height: 24px;
    transition-duration: .11s;
    transition-timing-function: linear;
    mask-image: var(--icon-mask-image-property, "none");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    width: var(--input-width, 24px);
    height: var(--input-height, 24px);
    background-color: #555f62;
    display: inline-flex;
    position: absolute;
    z-index: 99;
    left: 15px;
    user-select: none;
    top: 16px;
}
.service_centers .select {
    width: 300px;
    margin-right: 20px;
}
.service_centers .select ul{
    display: none;
}
.service_centers .select .selected,.service_centers input{
    outline: none;
    padding: 0;
    background-color: #f6f8f8;
    border: 1px solid #e1e4e5;
    transition: border-color .2s linear;
    border-radius: 6px;
    height: 60px;
    padding-left: 15px;
    width: 100%;
    cursor: pointer;
    color: #555f62;
    font-family: 'Conv_FiraGO-Book';
}
.service_centers .search_address {
    width: 100%;
    position: relative;
}

/* Tabs */
.service_centers .tabs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}
.service_centers .tabs div{
    padding: 20px 0px;
    color: #555f62;
    cursor: pointer;
    margin-right: 25px;
    font-size: 16px;
}
.service_centers .tabs .active, .service_centers .tabs div:hover {
    color: #141719;
    border-bottom: 2px solid #00adee;
}

/* Content split */
.service_centers .service_centers_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}
.service_centers .service_centers_content .list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 45%;
    height: 560px;
    padding-right: 10px;
    scrollbar-width: thin; /* thin | auto | none */
    scrollbar-color: #888 #f0f0f0; /* thumb ფერი, track ფერი */
    overflow-y: auto;
    scrollbar-gutter: stable;
    scroll-snap-type: y mandatory;   /* ვერტიკალური სნეპი */
    overscroll-behavior: contain;    /* ინერციული გადახტომების კონტროლი */
    /* iOS-ზე რბილი ინერციული სკროლი */
    -webkit-overflow-scrolling: touch;
}
/* scrollbar-ის საერთო ზოლი */
.service_centers .service_centers_content .list::-webkit-scrollbar {
    width: 6px; /* scrollbar-ის სისქე */
}

/* scrollbar-ის ფონური ნაწილი */
.service_centers .service_centers_content .list::-webkit-scrollbar-track {
    background: transparent;
}

/* scrollbar-ის მოძრავი ნაწილი */
.service_centers .service_centers_content .list::-webkit-scrollbar-thumb {
    background-color: #777;
    border-radius: 3px;
}

/* hover-ზე */
.service_centers .service_centers_content .list::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
/* Card */
.service_centers .address {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    cursor: pointer;
    background-color: #f6f8f8;
}
.service_centers .address:last-child{
    margin-bottom: 0px;
}
.service_centers .address:hover {
    background: #f4f4f4;
}
.service_centers .address .address_header {
    display: flex;
    flex-direction: row;
}
.service_centers .address .address_header img{
    width: 100px;
    border-radius: 7px;
    margin-top: 8px;
    margin-bottom: 8px;
}
.service_centers .address .address_header svg{
    margin-top: 37px;
    margin-left: 10px;
    color: #515457;
}
.service_centers .address .address_title {
    color: #141719;
    margin-left: 10px;
    width: 280px;
    display: flex;
    align-items: center;
    font-size: 15px;
    text-align: left;
    font-family: 'Conv_FiraGO-Book';
}
.service_centers .address .address_type {
    font-weight: 500;
    font-size: 12px;
    background: rgba(6, 167, 76, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 35px;
    border-radius: 23px;
    padding: 5px 15px;
    height: 26px;
    margin-left: 0px;
}
.service_centers .address .address_content {
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
}
.service_centers .address .address_content h4{
    color: rgba(0, 0, 0, 0.92);
    font-weight: bold;
    font-size: 13px;
}
.service_centers .address .address_content p{
    font-weight: 500;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.68);
}
/* Map */
.service_centers .address_map {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 53%;
}
.service_centers .address.open{
    height: auto !important;
}
.service_centers .select .selected{
    text-align: center;
    font-size: 13px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 15px;
}
.search input {
    padding-left: 45px;
    font-size: 13px;
}
.selected{
    position: relative;
}
.selected svg{
    position: absolute;
    right: 11px;
}
.selected svg.close{
    position: absolute;
    right: 40px;
}
#map{
    border-radius: 12px;
}
#dropdown{
    position: absolute;
    z-index: 99;
    background: #fff;
    list-style: none;
    padding: 0px;
    width: 235px;
    border: 1px solid #e1e4e5;
    border-radius: 12px;
}
#dropdown li{
    padding: 15px 20px;
    font-size: 14px;
    cursor: pointer;
}
#dropdown li:hover{
    background: #f6f8f8;
}
.placeholder{
    position: absolute;
    top: 10px;
}
.city{
    position: absolute;
    top: 30px;
    color: #141719;
}
.close{
    display: none;
}
.service_centers .service_centers_content .list.noscrol{
    overflow-y: hidden;
}
.mapInfo b{
    font-weight: bold;
    color: #141719;
}
.mapInfo .line{
    display: block;
    margin-bottom: 4px;
}
#selectarrow,#addressarrow{
    transition: transform .2s ease;
}
#selectarrow.rotate,#addressarrow.rotate{
    transform: rotate(180deg);
}
.gm-ui-hover-effect{
    outline: none;
    border: none;
}
.branch_image{
    max-width: 50% !important;
    float: left;
    margin-right: 10px;
}
.address_img{
    display: flex;
    justify-content: flex-start;
    padding-left: 10px;
}
#map{
    height: 560px;
    width: 100%;
}
@media (max-width: 767px) {
    .service_centers .search,.service_centers .service_centers_content{
        flex-direction: column;
    }
    .service_centers .select,.service_centers .address_map{
        width: 100%;
    }
    .service_centers .search_address{
        margin-top: 20px;
    }
    #dropdown{
        z-index: 99999;
        width: 100%;
    }
    .service_centers .service_centers_content .list{
        width: 100%;
        padding-right: 0px;
    }
    .service_centers .address .address_header img{
        width: 60px;
        margin-top: 5px;
        margin-bottom: 5px
    }
    .service_centers .address .address_title{
        font-size: 12px;
    }
    .service_centers .service_centers_content .list{
        height: auto;
    }
    #map{
        margin-top: 20px;
        height: 300px;
    }
    .service_centers .address .address_type{
        display: none;
    }
    .service_centers .address .address_header svg{
        margin-left: 10px;
        margin-right: 0px;
        margin-top: 20px;
    }
    .service_centers .tabs div{
        font-size: 14px;
    }
    .service_centers .search{
        position: relative;
    }
    .address_img{
        padding-left: 6px;
    }
}
@media (max-width: 500px) {

}
