.customl-popup-overlay {
    display: block;
    position: fixed;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url(img/custom-popup-overlay.png) repeat;
    z-index: 10000;
}
.customl-popup {
    border-radius: 0px;
    width: 860px;
    max-height: 512px;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 40px;
    padding-right: 40px;
}

.customl-popup.customl-popup_loaded {
    opacity: 1;
    top: 45%;
}

.customl-popup {
    position: fixed;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #fff;
    z-index: 2001;
    max-width: 100%;
    overflow: hidden;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: -1px 2px 13px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 2px 13px 0px rgba(0, 0, 0, 0.25);
    box-shadow: -1px 2px 13px 0px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    grid-template-columns: 1fr;
    grid-gap: 0;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity .2s ease-in, top .2s ease-out;
}

.customl-popup > .customl-popup__close {
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    z-index: 9;
}
.customl-popup__close {
    display: flex;
    position: absolute;
    cursor: pointer;
    opacity: 0.2;
    align-items: center;
    justify-content: center;
}

.customl-popup__close:before, .customl-popup__close:after {
    position: absolute;
    content: '';
    width: 2px;
    background-color: #333;
    height: 20px;
}

.customl-popup > .customl-popup__close:before, .customl-popup > .customl-popup__close:after {
    width: 2px;
    height: 30px;
}

.customl-popup__close:before {
    transform: rotate(45deg);
}
.customl-popup__close:after {
    transform: rotate(-45deg);
}

.customl-popup__title-container {
    position: relative;
    width: 100%;
}


.customl-popup__title {
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    width: calc(100% - 40px);
}

.customl-popup__title {
    font-size: 28px;
    font-family: 'Roboto', sans-serif;
}

.customl-popup__search-wrapper {
    margin-bottom: 15px;
}

.customl-popup__search {
    margin-top: 15px;


    position: relative;
    padding: 0;
}
.customl-popup .customl-popup__search-input {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.customl-popup .customl-popup__search-input, .customl-popup .customl-popup__search-input:focus {
    outline: unset;
    color: #333;
    border-radius: 0;
    box-sizing: border-box;
    line-height: 1;
    padding: 10px 5px 12px;
    width: 100%;
    position: relative;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background: bottom no-repeat, 50% 100% /*calc(100% - 1px)*/;
    transition: background ease-out;
    background-size: 0 100%, 100% 100%;
    background-image: linear-gradient(to top, #1f2949 2px, rgba(255, 86, 5, 0) 2px), linear-gradient(to top, rgb(189, 189, 189) 1px, rgba(189, 189, 189, 0) 1px);
}

.customl-popup__search-icon {
    height: 40%;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    text-align: right;
}

.customl-popup__container {
    position: relative;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.customl-popup__scroll-container {
    overflow-y: auto;
    scrollbar-width: thin;
    position: relative;

}

.customl-popup__list {
    list-style: none outside none;
    padding: 0;
    line-height: 1.25;
    margin-bottom: 15px;
    column-width: 150px;
    column-count: 3;
    column-gap: 10px;
    column-rule: 0px solid #ccc;
    display: block;
}

.customl-popup__list li {
    padding-bottom: 7.5px;
    overflow: hidden;
    list-style: none;
    page-break-inside: avoid;
    break-inside: avoid;
    padding-left: 0;
}
.customl-popup__list li.hide-link-item{
    display: none;
}

.customl-popup__location-link {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;

    color: #333;
    text-decoration: none;
    border-bottom: 1px dashed #777;
}