/* Sell / Buy choice modal shown when the Odaii location call icon is tapped (AUT-6778). */
.odaii-call-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Above every other AutoDE overlay (bmw-cadou banner 10500, pdp gallery 10002, header 9999). */
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.odaii-call-modal.is-open {
    display: flex;
}
.odaii-call-modal__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(16, 24, 40, 0.6);
}
.odaii-call-modal__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 24px 24px;
    box-shadow: 0px 8px 24px rgba(16, 24, 40, 0.18);
    font-family: Poppins, sans-serif;
}
.odaii-call-modal__close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #61789e;
    cursor: pointer;
    padding: 4px 8px;
}
.odaii-call-modal__title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #282a6a;
}
.odaii-call-modal__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.odaii-call-card {
    display: block;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #c0c9d8;
    background: #fff;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
    .odaii-call-card:hover {
        border-color: #282a6a;
        box-shadow: 0px 2px 8px rgba(16, 24, 40, 0.12);
    }
}
.odaii-call-card:focus,
.odaii-call-card:active {
    border-color: #282a6a;
    box-shadow: 0px 2px 8px rgba(16, 24, 40, 0.12);
}
.odaii-call-card__title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #282a6a;
}
@media screen and (max-width: 480px) {
    .odaii-call-modal__content {
        padding: 36px 16px 16px;
    }
    .odaii-call-card {
        padding: 16px;
    }
    .odaii-call-card__title {
        font-size: 16px;
    }
}
