/* /bitrix/js/ozon.logistics.delivery/style.css */

#ozon-map-wrapper {
    font-family: "GTEago", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#ozon-info-panel {
    transition: all 0.3s ease;
    border: none !important;
    overflow: hidden;
}

.ozon-panel-card {
    padding: 20px;
    background: #fff;
}

.ozon-panel-title {
    font-size: 16px;
    font-weight: 700;
    color: #001a34;
    margin-bottom: 8px;
}

.ozon-panel-address {
    font-size: 14px;
    color: #4d5f71;
    line-height: 1.4;
    margin-bottom: 16px;
}

.ozon-select-btn {
    width: 100%;
    height: 40px;
    background: #005bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.ozon-select-btn:hover {
    background: #0046c7;
}

.ozon-select-btn.selected {
    background: #f0f7ff;
    color: #005bff;
    border: 1px solid #005bff;
    cursor: default;
}
#ozon-info-panel {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 240px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 4px;

    /* Состояние по умолчанию (скрыто) */
    display: none;
    opacity: 0;
    transform: translateX(20px); /* Панель чуть смещена вправо */
    transition: all 0.3s ease;   /* Плавность изменения всех свойств выше */
}

/* Состояние, когда добавлен класс .active */
#ozon-info-panel.active {
    opacity: 1;
    transform: translateX(0); /* Возвращается на место */
}
