/*
Theme Name: Mercury Child
Theme URI: https://mercurytheme.com/
Description: Child theme for Mercury theme
Author: MercuryTheme.com
Author URI: https://mercurytheme.com/
Template: mercury
Version: 3.9.11
*/
@import url("../mercury/style.css");

.horizontal-list-container .horizontal-list {
    padding: 4px 0;
    margin-left: 0;
    display: flex;
    gap: 15px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;

    li {
        list-style: none;

        a {
            background-color: #E0E4EB;
            color: #2D4877;
            padding: 10px 25px;
            transition: color .3s, background-color .3s;
            border-radius: 8px;
            text-decoration: none;

            &:hover {
                background-color: #FEDFDF;
                color: #EC001E;
            }
        }

        &.active-page a {
            color: #EC001E;
            background-color: #FEDFDF;
        }
    }
}