/* ==========================================
   SUMAWATCH THEME - swell-icons.css
   Icon font definitions using CSS pseudo-elements
   ========================================== */

/* Base icon style */
[class^="icon-"]::before,
[class*=" icon-"]::before {
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hamburger menu icon */
.icon-menu-thin::before {
    content: "☰";
    font-size: 1.2em;
}

/* Close icon */
.icon-close-thin::before {
    content: "✕";
    font-size: 1em;
}

/* Chevron up (back to top) */
.icon-chevron-up::before {
    content: "↑";
    font-size: 1.1em;
    font-weight: bold;
}

/* Folder icon (category) */
.icon-folder::before {
    content: "📁";
    font-size: 0.9em;
}

/* Posted / clock icon (date) */
.icon-posted::before {
    content: "🕐";
    font-size: 0.9em;
}

/* Search icon */
.icon-search::before {
    content: "🔍";
    font-size: 0.9em;
}

/* Tag icon */
.icon-tag::before {
    content: "#";
    font-size: 1em;
    font-weight: bold;
}

/* Arrow right */
.icon-arrow-right::before {
    content: "›";
    font-size: 1.2em;
}

/* Arrow left */
.icon-arrow-left::before {
    content: "‹";
    font-size: 1.2em;
}

/* Home icon */
.icon-home::before {
    content: "⌂";
    font-size: 1em;
}

/* Calendar icon */
.icon-calendar::before {
    content: "📅";
    font-size: 0.9em;
}

/* Chevron down */
.icon-chevron-down::before {
    content: "↓";
    font-size: 1.1em;
}
