/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
:root {
    --list_BG: #f4f4f4;
    --border-radius: 11px;
    --title-color: #161615;
    --map-height: 700px;
    --search-height: 65px;
}

.compu_main_map_holder {
    max-width: 100% !important;
}

.compu_main_map_wrap {
    display: flex;
}

.compu_main_map_left {
    width: 42%;
    margin-right: 2%;

}

.compu_main_map_list_wrap {

    height: var(--map-height);
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 10px 10px 30px 0;
    position: relative;
}

.compu_main_map_right {
    width: 55%;
    background: grey;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.compu_main_map_list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.compu_main_map_list li {
    padding: 30px 30px 30px 40px;
    background: var(--list_BG);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
}

.compu_main_map_list li:last-child {
    margin-bottom: 0;
}

.compu_main_map_list li:hover {
    cursor: pointer;
}

.cmp_title {
    display: flex;
    align-items: center;
}

.cmp_title_text {
    width: 67%;
}

.cmp_title_text h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
}

.cmp_title_icon {
    width: 23%;
    display: flex;
    justify-content: end;
}

.cmp_title_icon img {
    max-width: 100%;
    max-height: 48px;
    height: auto;
    width: auto;

}

.cmp_title_arrow {
    width: 10%;
    display: flex;
    justify-content: end;
    margin-left: 10px;

}

.cmp_title_arrow img {
    max-width: 24px !important;
    height: auto;
    margin-left: 10px;

}

.cmp_content {

}

.cmp_content_wrap {
    display: flex;
    margin: 20px 0;
}

.cmp_con_left {
    width: 50%;
}

.cmp_con_right {
    width: 50%;

}

.cmp_content h5 {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold !important;
}

.cmp_content p {
    font-size: 14px;
    margin: 0;
}

.cmp_con_left_phone {
    margin-top: 10px;
}

.cmp_con_left_bottom {
    margin-top: 20px;
}

.compu_main_maparea {
    position: relative;
    height: 100%;
}

#compu_map {
    /*height: var( --map-height);*/
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.cmp_content {
    display: none;
}

.compu_main_map_list li.show .cmp_content {
    display: block;
}

.compu_main_map_list li.show .cmp_title_arrow img {
    transform: rotate(180deg);
    transform-origin: center;
}

.compu_main_search_list li.selected {
    background: grey;
}

#compu_search {
    min-height: var(--search-height);
    border: 1px solid #e5e5e5;
    border-radius: 11px;
    padding-left: 72px;
    color: #161615;
    font-size: 18px;
}

.compu_main_map_search {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    margin-bottom: 20px;
}

#compu_search_btn{
    position: absolute;
    z-index: 100000;
    left: 20px;
    top: 15px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
#compu_search_result_area {
    width: 100%;
    position: absolute;
    left: 0;
    top: calc(var(--search-height) + 10px);
    border: 1px solid #eee;
    right: 0;
    background: #fff;
    display: none;
    border-radius: var(--border-radius);
    box-shadow: 3px 7px 20px rgba(0, 0, 0, .05);
    z-index: 99;
}

#compu_search_result_area.show_search {
    display: block;
}

ul.compu_main_search_list {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.compu_main_search_list li {
    padding: 5px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

ul.compu_main_search_list li:last-child {
    border-bottom: none;
}

ul.compu_main_search_list li:hover {
    cursor: pointer;
    background: #eee;
}

#comp_search_loader {
    display: none;
}

#comp_search_loader {

    position: relative;
    width: 40px;
    height: 40px;
}

#comp_search_loader div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: grey;
    animation: comp_search_loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

#comp_search_loader div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

#comp_search_loader div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

#comp_search_loader div:nth-child(3) {
    left: 56px;
    animation-delay: 0s;
}

@keyframes comp_search_loader {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
    .cmp_con_left {
        width: 49%;
        margin-right: 1%;
    }

    .cmp_con_right {
        width: 49%;
        margin-left: 1%;
    }

    .cmp_title_text h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) {
    .compu_main_map_wrap {
        flex-direction: column-reverse;
    }

    .compu_main_map_left {
        flex: 0 0 100%;
        width: 100%;
        margin-right: 0;
    }

    .compu_main_map_right {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 30px;
    }

    .compu_main_maparea {
        min-height: 400px;
    }

    .cmp_title_text h3 {
        font-size: 20px;
    }

    .compu_main_map_list li {
        padding: 25px;
    }
}