﻿/* 
   Custom glyphicons CSS File to keep using current glyphicons font set in Boostrap 4/5.
   font styles located in /lib/bootstrap/fonts/.
*/

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../lib/bootstrap/fonts/glyphicons-halflings-regular.eot');
    src: url('../lib/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
         url('../lib/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), 
         url('../lib/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), 
         url('../lib/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), 
         url('../lib/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

/* 
    Basic icon style 
*/
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: black;
}

/* 
    Glyphicons used
*/
.glyphicon-eye-open:before {
    content: "\e105";
}

.glyphicon-eye-close:before {
    content: "\e106";
}

/*
    Room to add more Glyphicons
*/

