.ngx-acs-point-selector {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    box-sizing: border-box;
}
.ngx-acs-selected-point {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.45;
}
.ngx-acs-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.ngx-acs-modal.is-open {
    display: flex;
}
.ngx-acs-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}
.ngx-acs-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
.ngx-acs-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ngx-acs-modal__header h2 {
    margin: 0;
    font-size: 20px;
}
.ngx-acs-modal__close {
    appearance: none;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.ngx-acs-modal__body {
    padding: 20px;
}
.ngx-acs-point-search {
    width: 100%;
    min-height: 46px;
    margin: 0 0 16px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    box-sizing: border-box;
    font: inherit;
}
.ngx-acs-point-results {
    display: grid;
    gap: 10px;
    max-height: min(540px, calc(100vh - 190px));
    overflow: auto;
    overscroll-behavior: contain;
}
.ngx-acs-point-result {
    appearance: none;
    display: grid;
    gap: 5px;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 7px;
    background: #fff;
    color: inherit;
    text-align: left;
    font: inherit;
    cursor: pointer;
}
.ngx-acs-point-result:hover,
.ngx-acs-point-result:focus-visible {
    border-color: currentColor;
    outline: none;
}
.ngx-acs-point-result.is-loading {
    opacity: 0.55;
}
.ngx-acs-point-result__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.ngx-acs-point-result__name {
    font-size: 15px;
}
.ngx-acs-point-result__kind {
    flex: 0 0 auto;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.07);
    font-size: 11px;
    line-height: 1.2;
}
.ngx-acs-point-result__address,
.ngx-acs-point-result__hours {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    opacity: 0.78;
}
.ngx-acs-point-state {
    padding: 24px 12px;
    text-align: center;
}
.ngx-acs-point-state--error {
    color: #b32d2e;
}
body.ngx-acs-modal-open {
    overflow: hidden;
}
/* Ο χάρτης (1.16.0). Το κουτί έχει ύψος πάντα: χάρτης μέσα σε στοιχείο χωρίς ύψος δεν
   σχεδιάζεται καθόλου. Με χάρτη, το παράθυρο γίνεται στήλη flex ώστε η λίστα να μαζεύεται
   μόνη της σε κοντές οθόνες αντί να κόβεται. */
.ngx-acs-point-map {
    height: 250px;
    margin: 0 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 7px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
}
.ngx-acs-point-map__state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 16px;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.8;
}
.ngx-acs-point-map__state--error {
    color: #b32d2e;
    opacity: 1;
}
.ngx-acs-modal__dialog.has-map {
    display: flex;
    flex-direction: column;
}
.ngx-acs-modal__dialog.has-map .ngx-acs-modal__header {
    flex: 0 0 auto;
}
.ngx-acs-modal__body.has-map {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}
.ngx-acs-modal__body.has-map .ngx-acs-point-search,
.ngx-acs-modal__body.has-map .ngx-acs-point-map {
    flex: 0 0 auto;
}
.ngx-acs-modal__body.has-map .ngx-acs-point-results {
    flex: 1 1 auto;
    min-height: 120px;
    max-height: none;
}
.ngx-acs-map-popup {
    display: grid;
    gap: 4px;
    min-width: 170px;
}
.ngx-acs-map-popup__name {
    font-size: 14px;
    line-height: 1.3;
}
.ngx-acs-map-popup__line {
    font-size: 12px;
    line-height: 1.35;
    opacity: 0.8;
}
.ngx-acs-map-popup__select {
    appearance: none;
    margin-top: 6px;
    padding: 8px 12px;
    border: 1px solid currentColor;
    border-radius: 6px;
    background: #fff;
    color: inherit;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}
@media (max-width: 600px) {
    .ngx-acs-point-map {
        height: 190px;
    }
    .ngx-acs-modal {
        align-items: flex-end;
        padding: 0;
    }
    .ngx-acs-modal__dialog {
        width: 100%;
        max-height: 88vh;
        border-radius: 12px 12px 0 0;
    }
    .ngx-acs-point-result__top {
        display: grid;
        justify-content: stretch;
    }
    .ngx-acs-point-result__kind {
        width: fit-content;
    }
}
