.content-body .map-container {
    padding: 0;
    border-radius: var(--border-radius-lg);
    background-color: white;
    box-shadow: var(--container-box-shadow);
    /* border-bottom: 1px solid var(--color-gray-light); */

    #map {
        width: 100%;
        max-width: 100%;
        height: 350px;
        max-height: 50vh;
        /* Match map main color */
        background-color: #f8f3e3;
        border: 2px solid white;
        border-radius: var(--border-radius-lg);
    }

    #map-spinner {
        width: 50px;
        height: 30px;
        position: absolute;
        display: flex;
        bottom: 0;
        right: 0;
        left: 0;
        top: -30px;
        margin: auto;
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.1s ease-in, transform 0.1s ease-in;
        transition-delay: 0.3s;

        svg {
            width: 100%;
            height: auto;
            fill: var(--color-black);
        }

        &.done {
            opacity: 0;
            transform: scale(0.9);
        }

        &::before {
            content: 'Loading';
            width: 100%;
            position: absolute;
            top: -22px;
            line-height: 1;
            padding: 3px;
            text-align: center;
            background: #ffffff;
            border-radius: 14px;
            font-size: 10px;
            font-family: var(--font-family-bold);
            font-weight: var(--font-weight-bold);
        }
    }

    #map-day-transition {
        width: 100%;
        height: 100%;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        left: 0;
        top: 0;
        pointer-events: none;
        z-index: 3;
        opacity: 0;

        span {
            padding: 8px 16px;
            letter-spacing: -0.3px;
            font-family: var(--font-family-bold);
            font-weight: var(--font-weight-bold);
            font-size: 17px;
            border-radius: 99px;
            background-color: #fff;
            box-shadow: var(--container-box-shadow);
        }

        .sun-moon-container {
            width: 180px;
            height: 180px;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            z-index: -1;

            .sun,
            .moon {
                width: 70px;
                height: 70px;
                position: absolute;
                margin: auto;
                top: 0;
                bottom: 0;
            }

            .sun {
                left: 0;
            }

            .moon {
                right: 0;
            }
        }

        &.transitioning {
            --transition-duration: 2s;

            animation-name: day-transition;
            animation-duration: var(--transition-duration);
            animation-timing-function: linear;
            animation-fill-mode: both;

            .sun-moon-container {
                animation-name: sun-container-spin;

                .sun,
                .moon {
                    animation-name: sun-icon-spin;
                }
            }

            .sun-moon-container,
            .sun,
            .moon {
                animation-duration: var(--transition-duration);
                animation-timing-function: ease-in-out;
                animation-iteration-count: infinite;
                animation-fill-mode: both;
            }
        }
    }

    nav.event-day-nav {
        ul {
            list-style: none;
            padding: 2px 4px 4px;
            margin: 0;
            display: flex;
            justify-content: space-between;
            text-align: center;

            /*
            Fix for an iOS z-index scroll bug that makes 
            the header logo overhang go behind the map,
            despite valid z-indexing.
            */
            /* -webkit-transform: translate3d(0,0,0); */

            small {
                display: block;
                top: -6px;
                margin-bottom: -4px;
                position: relative;
            }

            li {
                position: relative;
                flex: 1 1 0px;
                padding: 0 4px;

                button {
                    --transition-length: 0.3s;

                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: stretch;
                    margin: 0 auto;
                    padding: 0;
                    border: 0;
                    font-family: var(--font-family-bold);
                    font-weight: var(--font-weight-bold);
                    letter-spacing: -0.3px;
                    color: var(--color-red);
                    text-shadow: 0 1px 4px #fff;
                    background-color: transparent;
                    border-radius: var(--border-radius-md);
                    transition: background-color var(--transition-length) ease-out, box-shadow var(--transition-length) ease-out;

                    /* height: 100%;
                    display: block;
                    margin: 0 auto;
                    padding: 0 7px;
                    font-family: var(--font-family-bold);
                    font-weight: var(--font-weight-bold);
                    letter-spacing: -0.3px; */

                    & > div:first-child {
                        padding: 5px 6px 0;
                        font-size: 14px;
                        border-top-left-radius: var(--border-radius-md);
                        border-top-right-radius: var(--border-radius-md);
                        transform: translateY(2px);

                        transition: background-color var(--transition-length) ease-out, transform var(--transition-length) ease-out;
                    }
                    
                    & > div:last-child {
                        padding: 0 0 3px;
                        font-size: 16px;
                        
                        transform: translateY(-2px);
                        transition: transform var(--transition-length) ease-out;
                    }
                }

                &:not(:first-child)::after {
                    content: "";
                    width: 2px;
                    height: 100%;
                    position: absolute;
                    left: -1px;
                    top: 0;
                    border-left: 2px solid var(--color-red-transparent);
                    -moz-mask-image: linear-gradient(transparent 0%, #000 20%, #000 80%, transparent 100%);
                    -webkit-mask-image: linear-gradient(transparent 0%, #000 20%, #000 80%, transparent 100%);
                    mask-image: linear-gradient(transparent 0%, #000 20%, #000 80%, transparent 100%);
                }

                &:first-child {
                    padding: 0 4px 0 0;

                    button {
                        border-bottom-left-radius: calc(var(--border-radius-lg) - 2px);
                    }
                }

                &:last-child {
                    padding: 0 0 0 4px;

                    button {
                        border-bottom-right-radius: calc(var(--border-radius-lg) - 2px);
                    }
                }

                &.active button {
                    /* .day-event-count {
                        background-color: var(--color-black);
                    } */

                    /* Similar visually: .calendar-day-style */

                    background-color: var(--color-red-transparent);
                    box-shadow: inset 0 0 0 2px var(--color-red-transparent);

                    & > div:first-child {
                        transform: translateY(0);
                        background-color: var(--color-red-transparent);
                    }

                    & > div:last-child {
                        transform: translateY(0);
                    }
                }
            }

            .day-event-count {
                width: 15px;
                height: 15px;
                margin: auto;
                position: absolute;
                top: -12px;
                right: 0;
                left: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                font-family: var(--font-family-bold);
                font-weight: var(--font-weight-bold);
                letter-spacing: -0.3px;
                font-size: 10px;
                color: #fff;
                background-color: var(--color-red);
                box-shadow: 0 0 0 2px white;
                border-radius: 3px;
                cursor: pointer;
            }
        }
    }
}

.calendar-day-style {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    color: var(--color-red);
    text-shadow: 0 1px 4px #fff;
    background-color: var(--color-red-transparent);
    box-shadow: inset 0 0 0 2px var(--color-red-transparent);
    border-radius: var(--border-radius-md);

    & > div:first-child {
        background-color: var(--color-red-transparent);
        padding: 5px 0 3px;
        border-top-left-radius: var(--border-radius-md);
        border-top-right-radius: var(--border-radius-md);
    }

    & > div:last-child {
        padding: 2px 0 4px;
        font-size: 14px;
    }
}

@keyframes sun-container-spin {
    from {
        transform: rotate(30deg);
    }
    to {
        transform: rotate(150deg);
    }
}

@keyframes sun-icon-spin {
    from {
        transform: rotate(-30deg) scale(1);
    }
    to {
        transform: rotate(-150deg) scale(0);
    }
}

@keyframes day-transition {
    0% {
        opacity: 0;
    }
    20%, 90% {
        opacity: 1;
        background-color: #63413B40;
    }
    100% {
        opacity: 0;
    }
}

.marker-icon,
.marker-place-icon {
    /* Click-area is larger than visual icon */
    width: 44px;
    height: 40px;
    border-radius: 100%;
    cursor: pointer;

    &.active-marker {
        /* Remove clickability from active (popup open) marker */
        pointer-events: none;
        /* Put marker above other markers */
        z-index: 1;
    }

    /* Visual icon is created in :after */
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        z-index: -1;
    }
}

.marker-icon {
    animation-name: show-map-marker;
    animation-duration: 200ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;

    &:nth-child(1) {
        animation-delay: calc((1 * 180ms));
    }

    &:nth-child(2) {
        animation-delay: calc((2 * 180ms));
    }

    &:nth-child(3) {
        animation-delay: calc((3 * 180ms));
    }

    &:nth-child(4) {
        animation-delay: calc((4 * 180ms));
    }

    &:nth-child(5) {
        animation-delay: calc((5 * 180ms));
    }

    &:nth-child(6) {
        animation-delay: calc((6 * 180ms));
    }

    &:nth-child(7) {
        animation-delay: calc((7 * 180ms));
    }

    &:nth-child(8) {
        animation-delay: calc((8 * 180ms));
    }

    &:nth-child(9) {
        animation-delay: calc((9 * 180ms));
    }

    &:nth-child(10) {
        animation-delay: calc((10 * 180ms));
    }
}

@keyframes show-map-marker {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.marker-place-icon {
    &::after {
        width: 14px;
        height: 14px;
        background-color: var(--color-green);
        box-shadow: 0 0 0 2px #FFF, inset 0 0 0 2px var(--color-green-dark), inset 0 3px 0 0 rgba(255,255,255,0.26);
        border-radius: 20%;
        transform: rotate(-45deg);
    }
}

.marker-icon {
    width: 44px;
    height: 40px;
    font-family: var(--font-family-bold);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.3px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;

    svg.featured-icon {
        width: 14px;
        height: 14px;
        top: 4px;
        right: 4px;
        position: absolute;
    }

    &::after {
        width: 24px;
        height: 24px;
        background-color: var(--color-red);
        box-shadow: 0 0 0 2px #FFF, inset 0 0 0 2px var(--color-red-dark), inset 0 3px 0 0 rgba(255,255,255,0.26);
        border-radius: 100% 100% 100% 30%;
        transform: rotate(-45deg);
    }
}

.alert-list {
    background: var(--color-brown-dark);
    padding: 5px 10px 6px 8px;
    border-radius: 8px;
    margin-top: var(--border-radius-md);
    line-height: 1.2;

    & > div {
        display: flex;
        gap: 5px;
        align-items: center;
    
        svg {
            width: 12px;
            height: 12px;
            margin-top: 1px;
            flex: 0 0 auto;
            vertical-align: middle;
            fill: var(--color-orange);
        }
    }
}

.maplibregl-map {
    font-family: var(--font-family-normal);
}

/* Attribution html code added manually */
.map-custom-attribution {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 4px;
    bottom: 9px;
    right: 0;
    position: absolute;
    z-index: 2;
    text-align: right;

    a {
        display: block;
        line-height: 1;
        margin-bottom: 1px;
        color: var(--color-black);
    }

    .map-custom-logo {
        margin-bottom: 2px;

        a {
            width: 70px !important;
            height: 21px !important;
            background-size: 70px 21px !important;
            background-repeat: no-repeat;

            cursor: pointer;
            margin: 0px 0px -4px -4px;
            overflow: hidden;
            background-image: url("https://api.maptiler.com/resources/logo.svg");
        }
    }

    .map-custom-attrib {
        background-color: transparent;
        font-size: 9px;
        opacity: 0.9;
        text-align: right;
    }
}

@keyframes popup-fade-animation {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.maplibregl-popup,
.maplibregl-popup-content {
    width: 320px;
    /* Contain within screen */
    max-width: 80vw !important;
    /* Above markers */
    z-index: 2;
}

.maplibregl-popup,
.map-place-popup,
.map-event-popup {
    /* Hide triangle tip of the popup */
    .maplibregl-popup-tip {
        display: none;
    }

    &.isVisible {
        .maplibregl-popup-content {
            animation-name: popup-fade-animation;
            animation-duration: 0.3s;
            /* animation-delay: 0.8s; */
            animation-timing-function: ease-out;
            animation-fill-mode: both;
            visibility: visible;
        }

        .maplibregl-popup-content {
            &::before {
                transform: rotate(45deg) translate(0, 0);
            }
        }
    }

    .maplibregl-popup-content {
        padding: 0;
        border-radius: var(--border-radius-md);
        box-shadow: 0 2px 20px rgba(0,0,0,0.15);
        font-weight: var(--font-weight-normal);
        font-family: var(--font-family-normal);
        visibility: hidden;
        opacity: 0; /* animate into view */

        & > div:last-child {
            margin-bottom: 10px;
        }

        &::before {
            /* Pointy triangle bit */
            content: '';
            width: 20px;
            height: 20px;
            border-bottom-right-radius: 2px;
            transform: rotate(45deg) translate(-3px,-3px);
            transform-origin: 50% 50%;
            transition: transform 0.3s ease-out;
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            margin: auto;
            background-color: #fff;
            pointer-events: none;
        }
    }

    .popup-featured-logo {
        width: 74px;
        height: 24px;
        position: absolute;
        top: -14px;
        left: 0;
        right: 0;
        margin: auto;
        border-top-left-radius: var(--border-radius-md);
        border-top-right-radius: var(--border-radius-md);

        svg {
            width: 74px;
            height: 24px;
        }
    }

    .popup-tags {
        padding: 9px 12px 0;
        opacity: 56%;
        font-size: 12px;
        line-height: 15px;
        font-family: var(--font-family-normal);
        font-weight: var(--font-weight-normal);

        & + .popup-title {
            padding: 0 12px 1px;
        }
    }

    .popup-title {
        padding: 10px 12px 1px;
        line-height: 1.1;
        font-size: 16px;
        font-family: var(--font-family-bold);
        font-weight: var(--font-weight-bold);
        letter-spacing: -0.3px;
    }

    .popup-description {
        padding: 2px 12px 10px;
        line-height: 1.2;
        font-size: 14px;
    }

    .popup-time,
    .popup-location,
    .popup-link {
        padding: 0 12px;
        margin-top: 2px;
        line-height: 1.25;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 3px;

        .icon-inline {
            top: 0;
            min-width: 1em;
        }
    }

    .popup-location,
    .popup-link {
        color: var(--color-red);
        
        .ellipsis {
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
    }

    .popup-location a:focus-visible,
    .popup-link a:focus-visible {
        outline-style: none;
    }
}

.map-place-popup {
    .popup-cover-image {
        width: 100%;
        max-width: calc(100% - 8px);
        height: 120px;
        min-height: 120px;
        margin: 4px auto 0;
        position: relative;
        overflow: hidden;
        background-color: var(--color-gray-light);
        border-radius: calc(var(--border-radius-md) - 4px);

        img, video {
            width: 100%;
            max-width: 100%;
            min-height: 120px;
            height: 120px;
            object-fit: cover;
            transition: opacity 0.2s ease-out;
            opacity: 0;

            &.loaded {
                opacity: 100%;
            }
        }

        .rounded-overlay {
            display: none;
            content: '';
            width: 100%;
            height: 30px;
            background: #fff;
            position: absolute;
            left: 0;
            bottom: -2px;
            border-top-left-radius: 100%;
            border-top-right-radius: 100%;
        }
    }
}

article.event-list-container {
    display: flex;
    flex-direction: column;
    padding: 14px;
    
    /* @media (max-width: 461px) {
        padding: 4px 6px 10px;
    } */

    .event-list-group {
        display: none;

        &.active {
            display: block;
        }
    }
}

.event-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;

    li {
        padding: 10px 0 0;
        display: flex;
        gap: 12px;
        position: relative;

        animation-name: list-item-animation;
        animation-duration: 320ms;
        animation-delay: calc(10ms + ((var(--animation-order) + 1) * 200ms));
        animation-timing-function: ease-out;
        animation-fill-mode: both;

        /* Dashed vertical chronological line */
        &::before {
            content: "";
            width: 2px;
            height: 100%;
            position: absolute;
            left: 11px;
            top: 10px;
            /* border-left: 2px dashed var(--color-gray-light); */
            background: repeating-linear-gradient(to bottom,
                var(--color-gray-light) 0,
                var(--color-gray-light) 4px,
                transparent 4px,
                transparent 6px);
            background-size: 2px 6px;
            z-index: -1;
        }

        &:first-child {
            padding-top: 0;
        }

        &:last-child {
            .event-details {
                border-bottom: 0;
                padding-bottom: 0;
            }
        }

        /* Last element with class */
        /* &:nth-last-child(1 of [class^="event-type-"]) { */
        &:nth-last-child(2) {
            /* Fade out dashed line */
            &::before {
                -moz-mask-image: linear-gradient(#000 0%, #000 calc(100% - 30px), transparent 100%);
                -webkit-mask-image: linear-gradient(#000 0%, #000 calc(100% - 30px), transparent 100%);
                mask-image: linear-gradient(#000 0%, #000 calc(100% - 30px), transparent 100%);
            }
        }

        &.choose-for-me {
            /* Hide dashed line */
            &::before {
                display: none;
            }

            svg {
                transform: rotate(20deg);
                transition: transform 0.8s ease-out;
            }

            &.animating {
                svg {
                    transform: rotate(380deg);
                }
            }
        }

        &.is-on-map {
            &::after {
                content: "›";
                width: 6px;
                height: 100%;
                display: flex;
                align-items: center;
                opacity: 0.3;
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto;
                transition: opacity 200ms ease-in-out;
            }

            .event-title {
                text-underline-offset: 3px;
                text-decoration-line: underline;
                text-decoration-style: solid;
                text-decoration-color: rgba(0,0,0,0.15);
                text-decoration-thickness: 2px;
                transition: text-decoration-color 200ms ease-in-out;
            }
        }

        &.is-on-map:hover {
            &::after {
                opacity: 1;
            }

            .event-title {
                text-decoration-color: var(--color-black);
            }
        }

        &.event-type-holiday {
            .event-meta {
                display: none;
            }
        }

        & > div:first-child {
            flex-shrink: 0;
        }

        & > div:last-child {
            flex-grow: 1;
        }

        .list-icon {
            width: 24px;
            height: 24px;
            margin-top: 3px;
            font-family: var(--font-family-bold);
            font-weight: var(--font-weight-bold);
            letter-spacing: -0.3px;
            font-size: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FFF;
            cursor: pointer;
            position: relative;
            border-radius: 8px;

            &::after {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                width: 24px;
                height: 24px;
                background-color: var(--color-red);
                box-shadow: inset 0 0 0 2px var(--color-red-dark), inset 0 3px 0 0 rgba(255,255,255,0.26), -1.5px 1.5px 0 0 rgba(0,0,0,0.08);
                border-radius: 100% 100% 100% 30%;
                transform: rotate(-45deg);
                z-index: -1;
            }

            &.list-icon--holiday,
            &.list-icon--sun {
                cursor: auto;

                &::after {
                    display: none;
                }

                svg {
                    width: 16px;
                    height: 16px;
                    fill: #ffffff;
                }
            }

            &.list-icon--sun {
                background-color: var(--color-blue);
                box-shadow: inset 0 0 0 2px var(--color-blue-dark), inset 0 3px 0 0 rgba(255,255,255,0.26), 0 2px 0 0 rgba(0,0,0,0.08);
            }

            &.list-icon--holiday {
                background-color: var(--color-teal);
                box-shadow: inset 0 0 0 2px var(--color-teal-dark), inset 0 3px 0 0 rgba(255,255,255,0.26), 0 2px 0 0 rgba(0,0,0,0.08);
            }
            
            &.list-icon--place {
                svg {
                    width: 12px;
                    height: 12px;
                }

                &::after {
                    content: "";
                    width: 22px;
                    height: 22px;
                    background-color: var(--color-green);
                    box-shadow: inset 0 0 0 2px var(--color-green-dark), inset 0 3px 0 0 rgba(255,255,255,0.26), -1.5px 1.5px 0 0 rgba(0,0,0,0.08);
                    border-radius: 7px;
                }
            }

            svg.featured-icon {
                width: 14px;
                height: 14px;
                top: -3px;
                right: -7px;
                position: absolute;
            }
        }
        
        .event-details {
            padding-bottom: 14px;
            border-bottom: 1px solid var(--color-gray-light);
        }

        .event-subtitle {
            width: 100%;
            position: relative;
            font-size: 12px;
            line-height: 15px;
            display: flex;
            gap: 10px;
            align-items: center;
            /* justify-content: space-between; */

            .event-tags {
                .happening-now-tag {
                    display: flex;
                    align-items: center;
                    gap: 3px;
                    font-size: 10px;
                    font-family: var(--font-family-bold);
                    color: var(--color-red);
                    border-radius: 12px;

                    &::before {
                        content: '';
                        width: 6px;
                        height: 6px;
                        background-color: var(--color-red);
                        border-radius: 8px;

                        animation-name: fade-pulse;
                        animation-duration: 1s;
                        animation-timing-function: ease-in-out;
                        animation-iteration-count: infinite;
                        animation-direction: alternate;
                    }
                }
            }

            .event-weather {
                white-space: nowrap;

                .icon-inline {
                    margin-top: -1.5px;
                }
            }
        }

        .event-title {
            padding-right: 22px;
            font-size: 18px;
            font-family: var(--font-family-bold);
            font-weight: var(--font-weight-bold);
            letter-spacing: -0.3px;
            line-height: 21px;
        }

        .event-meta {
            display: flex;
            flex-direction: row;
            align-items: center;
            line-height: 1;
            gap: 4px;
            padding-top: 3px;

            .icon-inline {
                width: 13px;
                height: 13px;
                top: 0;
            }
        }
    }

    &:not(.event-list-empty) li {
        cursor: pointer;
    }

    &.event-list--mini {
        li {
            padding: 5px 0 7px;
            gap: 9px;
            /* align-items: center; */
            border-bottom: 1px solid var(--color-gray-light);

            &::before {
                display: none;
            }

            &:last-child {
                border-bottom: 0;
            }

            .event-day-card {
                margin-top: 5px;
                flex-basis: 40px;
                line-height: 1.1;
                text-align: center;
                font-family: var(--font-family-bold);
                font-size: 12px;
                color: var(--color-red);
                background-color: var(--color-red-transparent);
                border-radius: var(--border-radius-md);
                box-shadow: inset 0 0 0 2px var(--color-red-transparent);
            }

            .event-details {
                padding: 5px 0;
                border-bottom: 0;
            }

            .event-title {
                margin-bottom: 2px;
                font-size: 16px;
                line-height: 18px;
                text-underline-offset: 2px;
            }

            .event-meta {
                font-size: 14px;
                padding-top: 0;
            }
        }
    }
}

@keyframes fade-pulse {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes list-item-animation {
    0% {
        opacity: 0;
        transform: translateY(-4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-disclaimer {
    margin: 50px 0;
    text-align: center;
    color: var(--color-brown);
}

.featured-heading {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 10px 2px;

    .featured-icon {
        width: 20px;
        height: 20px;

        &.featured-icon--left {
            order: 0;
            transform: rotate(-10deg);
        }

        &.featured-icon--right {
            order: 1;
            transform: rotate(10deg);
        }
    }

    .featured-logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;

        .featured-logo {
            width: 178px;
            height: 58px;
            max-width: 100%;
            margin-top: -8px;
        }
    
        .featured-logo-subtext {
            width: 72px;
            height: 20px;
            margin-top: -16px;
        }
    }
}