/*--------------------------------
-------------------------------- */


@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: 'utasngp';
        src: url('../fonts/utasngp.woff') format('woff');
        font-weight: normal;
        font-style: normal;
    }
}


/*------------------------
	base class definition
-------------------------*/
.ng-icon {
  display: inline-block;
  font: normal normal normal 32px/1 'utasngp';
  speak: none;
  text-transform: none;
  /* Better Font Rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*------------------------
  change icon size
-------------------------*/

.ng-icon.sm {
    font-size: .6em;
}

.ng-icon.md {
    font-size: 1em;
}

.ng-icon.lg {
    font-size: 1.33333333em;
}

.ng-icon.lgSearch {
    font-size: 1.5em;
}

.ng-icon.xl {
    font-size: 1.5em;
}

.ng-icon.x1 {
    font-size: 1.8em;
}

.ng-icon.x2 {
    font-size: 2em;
}

.ng-icon.x3 {
    font-size: 3em;
}

.ng-icon.ico-scale-wide {
    -webkit-transform: scale(1.2, 1);
    -moz-transform: scale(1.2, 1);
    -ms-transform: scale(1.2, 1);
    -o-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
}


/*------------------------
  change icon color
-------------------------*/

.ng-icon.ico-white {
    color: white !important;
}

.ng-icon.ico-black {
    color: black !important;
}

.ng-icon.ico-utasblue {
    color: #0033ab !important;
}

.ng-icon.ico-utasgray {
    color: #cccccc !important;
}


/*------------------------
  icon background colors
-------------------------*/

.ng-icon.bgwhite {
    background-color: white !important;
}

.ng-icon.bgblack {
    background-color: black !important;
}

.ng-icon.bgutasblue {
    background-color: #0033ab !important;
}


/*----------------------------------
  add a square/circle background
-----------------------------------*/

.ng-icon.square,
.ng-icon.circle {
    padding: 0.33333333em;
    vertical-align: -16%;
    /* background-color: #eee; */
}

.ng-icon.circle {
    border-radius: 50%;
    border-style: solid;
    border-width: thin;
    border-color: #0033ab !important;
}


/*------------------------
  list icons
-------------------------*/

.ng-icon-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

.ng-icon-ul>li {
    position: relative;
}

.ng-icon-ul>li>.ng-icon {
    position: absolute;
    left: -1.57142857em;
    top: 0.14285714em;
    text-align: center;
}

.ng-icon-ul>li>.ng-icon.lg {
    top: 0;
    left: -1.35714286em;
}

.ng-icon-ul>li>.ng-icon.circle,
.ng-icon-ul>li>.ng-icon.square {
    top: -0.19047619em;
    left: -1.9047619em;
}


/*------------------------
  spinning icons
-------------------------*/

.ng-icon.spin {
    -webkit-animation: ng-icon-spin 2s infinite linear;
    -moz-animation: ng-icon-spin 2s infinite linear;
    animation: ng-icon-spin 2s infinite linear;
}

@-webkit-keyframes ng-icon-spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes ng-icon-spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}

@keyframes ng-icon-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*------------------------
  rotated/flipped icons
-------------------------*/

.ng-icon.rotate-90 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.ng-icon.rotate-180 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ng-icon.rotate-270 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.ng-icon.flip-y {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0);
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.ng-icon.flip-x {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: scale(1, -1);
    -moz-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    transform: scale(1, -1);
}


/*------------------------
	font icons
-------------------------*/

.ng-address-book::before {
    content: "\ea01";
}

.ng-alert::before {
    content: "\ea02";
}

.ng-arrow-left::before {
    content: "\ea03";
}

.ng-arrow-right::before {
    content: "\ea04";
}

.ng-box::before {
    content: "\ea05";
}

.ng-business-docs::before {
    content: "\ea06";
}

.ng-calendar-customer-portal::before {
    content: "\ea07";
}

.ng-calendar::before {
    content: "\ea08";
}

.ng-caret-down::before {
    content: "\ea09";
}

.ng-caret-left::before {
    content: "\ea0a";
}

.ng-caret-right::before {
    content: "\ea0b";
}

.ng-caret-up::before {
    content: "\ea0c";
}

.ng-cart::before {
    content: "\ea0d";
}

.ng-caution::before {
    content: "\ea0e";
}

.ng-checkmark::before {
    content: "\ea0f";
}

.ng-chevron-left::before {
    content: "\ea10";
}

.ng-chevron-right::before {
    content: "\ea11";
}

.ng-circle-plus::before {
    content: "\ea12";
}

.ng-clip::before {
    content: "\ea13";
}

.ng-clipboard::before {
    content: "\ea14";
}

.ng-document::before {
    content: "\ea15";
}

.ng-double-arrow::before {
    content: "\ea16";
}

.ng-download-customer-portal::before {
    content: "\ea17";
}

.ng-ellipsis::before {
    content: "\ea18";
}

.ng-eye::before {
    content: "\ea19";
}

.ng-flag-filled::before {
    content: "\ea1a";
}

.ng-flag-unfilled::before {
    content: "\ea1b";
}

.ng-gear::before {
    content: "\ea1c";
}

.ng-info::before {
    content: "\ea1d";
}

.ng-information::before {
    content: "\ea1e";
}

.ng-location::before {
    content: "\ea1f";
}

.ng-lock::before {
    content: "\ea20";
}

.ng-mail::before {
    content: "\ea21";
}

.ng-minus-thin::before {
    content: "\ea22";
}

.ng-minus::before {
    content: "\ea23";
}

.ng-nav-chevron-left::before {
    content: "\ea24";
}

.ng-nav-chevron-right::before {
    content: "\ea25";
}

.ng-person-cart::before {
    content: "\ea26";
}

.ng-person-filled-full::before {
    content: "\ea27";
}

.ng-person-filled::before {
    content: "\ea28";
}

.ng-person-unfilled-full::before {
    content: "\ea29";
}

.ng-person-unfilled::before {
    content: "\ea2a";
}

.ng-person::before {
    content: "\ea2b";
}

.ng-phone-filled::before {
    content: "\ea2c";
}

.ng-phone::before {
    content: "\ea2d";
}

.ng-photo::before {
    content: "\ea2e";
}

.ng-plus-thin::before {
    content: "\ea2f";
}

.ng-plus::before {
    content: "\ea30";
}

.ng-priority-high::before {
    content: "\ea31";
}

.ng-priority-low::before {
    content: "\ea32";
}

.ng-priority-mid::before {
    content: "\ea33";
}

.ng-radio-filled::before {
    content: "\ea34";
}

.ng-radio-unfilled::before {
    content: "\ea35";
}

.ng-ripcord::before {
    content: "\ea36";
}

.ng-shopping-cart-filled::before {
    content: "\ea37";
}

.ng-shopping-cart::before {
    content: "\ea38";
}

.ng-spyglass-customer-portal::before {
    content: "\ea39";
}

.ng-spyglass::before {
    content: "\ea3a";
}

.ng-transaction::before {
    content: "\ea3b";
}

.ng-trash::before {
    content: "\ea3c";
}

.ng-turbine::before {
    content: "\ea3d";
}

.ng-utas-logo-copy::before {
    content: "\ea3e";
}

.ng-utas-logo::before {
    content: "\ea3f";
}

.ng-ware-house::before {
    content: "\ea40";
}

.ng-warehouse::before {
    content: "\ea41";
}

/* all icon font classes list here */