.dpd-mega-menu__inner {
    padding: 0;
    background-color: #ffffff;
}

.dpd-mega-menu__menus {
    display: flex;
    flex-direction: column;
}

.child-menu {
    padding: 11px 33px;
    border-bottom: 1px solid #E6E7E8;
}

.child-menu__header {
    display: flex;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
    outline: none;
}

.child-menu__header-link {
    font-size: 17px;
    color: #414042;
}

.child-menu__header-link:hover {
    color: #414042;
    opacity: 0.9;
}

.child-menu__icon {
    transition: all 0.2s ease;
}

[open] .child-menu__icon {
    transform: rotate(180deg);
}

.child-menu__list {
    display: flex;
    flex-direction: column;
}

.child-menu__link {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    color: rgba(65, 64, 66, 0.9);
}

.child-menu__link:hover {
    color: #DC0032;
    opacity: 0.9;
}

.child-menu__link-icon {
    display: inline-block;
    width: 14px;
    height: 14px!important;
    margin-right: 6px;
}

.dpd-mega-menu__promos {
    display: none;
}

@media screen and (min-width: 1024px) {
    .dpd-mega-menu__menus {
        flex-direction: row;
        justify-content: space-between;
    }

    .dpd-mega-menu__inner {
        max-width: 1160px;
        margin: 0 auto;
        padding: 35px;
        box-shadow: 0px 13px 20px -12px rgba(65, 64, 66, 1);
    }

    .child-menu__header {
        margin-bottom: 6px;
    }

    .child-menu__header-link {
        font-size: 14px;
        line-height: 16px;
        color: #DC0032;
    }

    .child-menu__header-link:hover {
        color: #DC0032;
        opacity: 0.9;
    }

    .child-menu__icon {
        display: none;
    }

    .child-menu__link {
        margin: 4px 0;
        padding: 2px 0;
        font-size: 12px;
        line-height: 14px;
        color: #414042;
        transition: all 0.2s ease;
    }

    .child-menu__link.child-menu__link--highlighted {
        color: #DC0032;
        text-decoration: underline!important;
    }

    .child-menu__link:hover {
        color: #DC0032;
    }

    .child-menu__link.child-menu__link--highlighted:hover {
        opacity: 0.9;
    }

    .dpd-mega-menu__promos {
        display: flex;
        column-gap: 22px;
        margin-top: 30px;
    }

    .mega-menu-promo {
        position: relative;
        display: flex;
        flex: 1;
    }

    .mega-menu-promo__text-wrapper {
        display: flex;
        flex-direction: column;
        width: 60%;
        padding: 9px 15px;
    }

    .mega-menu-promo__heading,
    .mega-menu-promo__description,
    .mega-menu-promo__button {
        font-family: 'Pluto Sans DPD', sans-serif;
        color: #FFFFFF;
    }
    .mega-menu-promo__button {
        display: flex;
        align-items: flex-end;
        flex: 1;
    }

    .mega-menu-promo__button:hover {
        color: #FFFFFF;
    }

    .mega-menu-promo__button[href=""] {
        cursor: auto;
    }

    .mega-menu-promo__button:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
    }

    .mega-menu-promo__heading {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .mega-menu-promo__description,
    .mega-menu-promo__button {
        font-size: 12px;
    }

    .mega-menu-promo__description {
        margin-bottom: 5px;
    }

    .mega-menu-promo__icon {
        display: inline-block;
        margin-left: 10px;
        margin-bottom: 6px;
    }

    .mega-menu-promo__image-wrapper {
        width: 40%;
        aspect-ratio: 1.44;
    }

    .mega-menu-promo__image {
        display: block;
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }
}