/* =========================================================
   DIANAPARTS - FOOTER CLICKABLE INFO BLOCKS
   ========================================================= */

.dp-inline-footer-link {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: inherit !important;
}

.dp-inline-footer-link:hover {
    color: #ffcc27 !important;
}

.dp-footer-clickable,
.dp-footer-click-row {
    cursor: pointer !important;
}

.dp-footer-clickable {
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dp-footer-clickable:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 203, 39, .45) !important;
    box-shadow:
        0 20px 42px rgba(0,0,0,.42),
        0 0 22px rgba(255,203,39,.16) !important;
}

.dp-footer-clickable::after {
    content: "Открыть →";
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: #ffcc27;
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}

.dp-footer-clickable:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.dp-footer-click-row {
    border-radius: 8px;
    transition: color .15s ease, background .15s ease, padding-left .15s ease;
}

.dp-footer-click-row:hover {
    color: #ffcc27 !important;
    background: rgba(255, 203, 39, .08);
    padding-left: 8px;
}

.dp-footer-block a,
.dp-footer-bottom-links a,
.dp-footer-info a {
    cursor: pointer !important;
}
