#phone_topper
{
    display: grid;
    grid-template-columns: 200px 1fr auto;
    height: calc(0.75 * var(--header-ht));
    border-bottom: 1px solid var(--blue);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
    #phone_topper a
    {
        text-decoration: none;
        color: black;
    }
    #phone_topper > *
    {
        display: flex;
        align-items: center;
        position: relative;
    }
        #phone_topper > *:nth-child(1)
        {
            /* Phone number */
            padding-left: 30px;
        }
            #phone_topper > *:nth-child(1):before
            {
                content: "\260E";
                display: flex;
                top: 50%;
                left: 1px;
                height: 20px;
                width: 20px;
                border-radius: 50%;
                align-items: center;
                text-align: center;
                justify-content: center;
                position: absolute;
                transform: translateY(-50%);
            }
        #phone_topper > *:nth-child(3)
        {
            /* Icons */
            justify-content: flex-end;
            text-align: right;
        }
            #phone_topper > *:nth-child(3) > *
            {
                height: 20px;
                width: 20px;
                border-radius: 50%;
                position: relative;
                background-color: black;
            }
                #phone_topper > *:nth-child(3) > *:after
                {
                    content: attr(alt);
                    display: block;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    color: white;
                    transform: translate(-50%, -50%);
                }