@charset "UTF-8";
/*
|--------------------------------------------------------------------------
| Material Symbols
| ------------------------------------------------------------------------------
| https://developers.google.com/fonts/docs/material_symbols#fill_axis
| https://github.com/marella/material-symbols/tree/main/material-symbols#readme
|  https://developers.google.com/fonts/docs/material_symbols#styling_icons_in_material_design
| https://developers.google.com/fonts/docs/material_symbols
|--------------------------------------------------------------------------
https://developers.google.com/fonts/docs/material_icons#using_the_icons_in_html
 */
/** https://web.dev/learn/design/micro-layouts?continue=https%3A%2F%2Fweb.dev%2Flearn%2Fdesign%23article-https%3A%2F%2Fweb.dev%2Flearn%2Fdesign%2Fmicro-layouts */
.icon-card {
    display: flex;
    align-items: center;
    gap: 1em;
}




/* Match any class name that starts with icon */
/** [class^="icon"] { */

[class="icon"] {
    padding: 6px;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
    border-radius: 50%;
    background-color: #eeeeee;
}


[class="icon"]:hover {
    border-radius: 50%;
    background-color: #e5e5e5;
    font-variation-settings: 'GRAD' -25;
    transition: all 0.25s ease-out;
}

 .material-symbols-outlined {
     font-variation-settings:
             'FILL' 1,
             'wght' 400,
             'GRAD' 0,
             'opsz' 24
 }







/**
How TO - Icon Buttons
https://www.w3schools.com/howto/howto_css_icon_buttons.asp

 */
/* Style buttons */
.btn {
    background-color: DodgerBlue; /* Blue background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 12px 16px; /* Some padding */
    font-size: 16px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
}

/* Darker background on mouse-over */
.btn:hover {
    background-color: RoyalBlue;
}


/** thin outlined icons */
.thin-outlined-icons {
font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' 0, 'opsz' 48;
}
/** thick filled icons */
.thick-filled-icons {
font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
}

.size-14 {
    font-size: 14px;
    font-variation-settings: 'OPSZ' 14;
    /*
    padding-right: 0.2em;

     */
}
.size-20 {
    font-size: 20px;
    font-variation-settings: 'OPSZ' 20;
    padding-right: 0.2em;
}
     /* Recommended icon sizes */
span.size-20 {
    font-size: 20px;
    font-variation-settings: 'OPSZ' 20;
}
span.size-24 {
    font-size: 24px;
    font-variation-settings: 'OPSZ' 24;
}
span.size-40 {
    font-size: 40px;
    font-variation-settings: 'OPSZ' 40;
}
span.size-48 {
    font-size: 48px;
    font-variation-settings: 'OPSZ' 48;
}

/* Rules for using icons as black on a light background. */
.dark {
    background: black;
    color: rgba(255, 255, 255, 1);
    font-variation-settings: 'GRAD' -25;
}
.dark-inactive {
    background: black;
    color: rgba(255, 255, 255, 0.3);
    font-variation-settings: 'GRAD' -25;
}
/*
 .material-symbols-outlined {
     font-variation-settings:
             'FILL' 1,
             'wght' 600,
             'GRAD' 0,
             'opsz' 24
 }
*/
/*
|--------------------------------------------------------------------------
| Add icon automatic before every external link
|--------------------------------------------------------------------------

a[href^="mailto:"]::before {
    color: #1c5ebf;
    padding-right: 1rem;
    font-family: 'Material Symbols Outlined';
    content: 'forward_to_inbox';
    font-variation-settings:
            'FILL' 1,
            'wght' 600

}
a[href^="tel:"]::before {
    color: #1c5ebf;
    padding-right: 1rem;
    font-family: 'Material Symbols Outlined';
    content: 'phone';
    font-variation-settings:
            'FILL' 1,
            'wght' 600
}
a[href^="https:"]::after {
    color: #1c5ebf;
    padding-left: 0.6rem;
    font-family: 'Material Symbols Outlined';
    content: 'open_in_new';
    font-variation-settings:
            'FILL' 1,
            'wght' 600
}

a.logo::after {
    content: none;
}

 */
/*
a[href^="tel:"]::before {
    display: none;
    font: var(--fa-font-solid);
    content: '\f095';
}
https://developers.google.com/fonts/docs/material_symbols#fill_axis
 */
/*
a[href^="https:"]::before {
    content: "🔗";

    display: none;
    font: var(--fa-font-solid);
    content: '\f0c1';
a[href^="https:"]::before:has(+ img) {

}
*/


