.fl-menu li.mitypes-custom-image-item{
    border-top: 0;
    margin-top: .75rem;
}

.fl-menu li.mitypes-custom-image-item:first-of-type{
    margin-top: 1.5rem;
}

.fl-menu li.mitypes-custom-image-item .custom-image-item{
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
    padding: 0;
}

li.mitypes-custom-image-item .image-item-image{
    position: relative;
    width: 3rem;
    aspect-ratio: 1;
    border-radius: .25rem;
    background-color: rgba(196, 196, 196, 0.1);
    transition: background-color 200ms ease-in-out;
}

li.mitypes-custom-image-item .image-item-image img{
    position: absolute;
    object-fit: contain;
    object-position: center;
    width: 100%; height: 100%;
    inset: 0;
    scale: 1.25;
}

.image-item-title{
    font-weight: 700;
    display: flex;
    flex-direction: row;
    gap: .5rem;

    transition: gap 200ms ease-in-out;
}

.image-item-title .arrow svg{
    width: 1rem;
    height: auto;
    aspect-ratio: 2/1;
}

.image-item-subtitle{
    display: block;
    opacity: .55;
    font-size: .875rem;
}

li.mitypes-custom-image-item a.custom-image-item:hover{
    color: #fff !important;
}

li.mitypes-custom-image-item a.custom-image-item:hover .image-item-image{
    background-color: rgba(196, 196, 196, 0.15);
}

li.mitypes-custom-image-item a.custom-image-item:hover .image-item-title{
    gap: .75rem;
}

@media only screen and (max-width: 992px){

    .fl-menu li.mitypes-custom-image-item:first-of-type,
    .fl-menu li.mitypes-custom-image-item{
        margin-top: 0 !important;
    }

    header li.mitypes-custom-heading .custom-heading:not(.grid) + ul li a{
        margin-bottom: 0 !important;
    }
}