.car-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.car-modal-window {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;   /* ширина окна */
    height: 500px;  /* высота окна */
    margin-left: -350px; /* -width/2 */
    margin-top: -250px;  /* -height/2 */
    background: #ffffff;
    box-shadow: 0 0 15px #000;
    border-radius: 4px;
    overflow: hidden;
}

.car-modal-close {
    position: absolute;
    top: 4px;
    right: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    z-index: 9999;
}

.car-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* чтобы поведение myCarLink осталось таким же по визуалу */
a.myCarLink {
    cursor: pointer;
}