@font-face {
  font-family: 'lamfont';
  src:
    url('fonts/lamfont.ttf?8a2mbgq') format('truetype'),
    url('fonts/lamfont.woff?8a2mbgq') format('woff'),
    url('fonts/lamfont.svg?8a2mbgq#lamfont') format('svg');
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'lamfont';
    url('fonts/lamfont.svg?8a2mbgq#lamfont') format('svg');
  }
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'lamfont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline;
  width: auto;
  height: auto;
  vertical-align: baseline;
  background-image: none;
  background-position: 0% 0%;
  background-repeat: repeat;
  margin-top: 0;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}
/* makes the font 33% larger relative to the icon container */
.icon-large:before {
  vertical-align: -10%;
  font-size: 1.3333333333333333em;
}

/* increased font size for icon-large */
[class^="icon-"].icon-fixed-width,
[class*=" icon-"].icon-fixed-width {
  display: inline-block;
  width: 1.1428571428571428em;
  text-align: right;
  padding-right: 0.2857142857142857em;
}
[class^="icon-"].icon-fixed-width.icon-large,
[class*=" icon-"].icon-fixed-width.icon-large {
  width: 1.4285714285714286em;
}
.icons-ul {
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.icons-ul > li {
  position: relative;
}
.icons-ul .icon-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  text-align: center;
  line-height: inherit;
}
[class^="icon-"].hide,
[class*=" icon-"].hide {
  display: none;
}
.icon-muted {
  color: #eeeeee;
}
.icon-light {
  color: #ffffff;
}
.icon-dark {
  color: #333333;
}
.icon-border {
  border: solid 1px #eeeeee;
  padding: .2em .25em .15em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.icon-2x {
  font-size: 2em;
}
.icon-2x.icon-border {
  border-width: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.icon-3x {
  font-size: 3em;
}
.icon-3x.icon-border {
  border-width: 3px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.icon-4x {
  font-size: 4em;
}
.icon-4x.icon-border {
  border-width: 4px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.icon-5x {
  font-size: 5em;
}
.icon-5x.icon-border {
  border-width: 5px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

[class^="icon-"].pull-left,
[class*=" icon-"].pull-left {
  margin-right: .3em;
}
[class^="icon-"].pull-right,
[class*=" icon-"].pull-right {
  margin-left: .3em;
}

/* EXTRAS
 * -------------------------- */
/* Stacked and layered icon */
.icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: -35%;
}
.icon-stack [class^="icon-"],
.icon-stack [class*=" icon-"] {
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 1em;
  line-height: inherit;
  *line-height: 2em;
}
.icon-stack .icon-stack-base {
  font-size: 2em;
  *line-height: 1em;
}
/* Animated rotating icon */
.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
/* Prevent stack and spinners from being taken inline when inside a link */
a .icon-stack,
a .icon-spin {
  display: inline-block;
  text-decoration: none;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Icon rotations and mirroring */
.icon-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.icon-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.icon-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.icon-flip-horizontal:before {
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.icon-flip-vertical:before {
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
/* ensure rotation occurs inside anchor tags */
a .icon-rotate-90:before,
a .icon-rotate-180:before,
a .icon-rotate-270:before,
a .icon-flip-horizontal:before,
a .icon-flip-vertical:before {
  display: inline-block;
}

.icon-gift:before {
  content: "\e92b";
}
.icon-add-image:before {
  content: "\e92a";
}
.icon-bicycle:before {
  content: "\e922";
}
.icon-parking:before {
  content: "\e923";
}
.icon-taxi:before {
  content: "\e924";
}
.icon-submarine:before {
  content: "\e925";
}
.icon-plane:before {
  content: "\e036";
}
.icon-caravan:before {
  content: "\e05c";
}
.icon-bus:before {
  content: "\e08d";
}
.icon-shopping-bag:before {
  content: "\e913";
}
.icon-skiing-flat:before {
  content: "\e086";
}
.icon-spoon-knife:before {
  content: "\e912";
}
.icon-map_route:before {
  content: "\e08e";
}
.icon-warning-sign:before {
  content: "\e01c";
}
.icon-cloudy:before {
  content: "\e05a";
}
.icon-stethoscope:before {
  content: "\f0f1";
}
.icon-travel:before {
  content: "\f422";
}
.icon-info:before {
  content: "\e03b";
}
.icon-wifi:before {
  content: "\e926";
}
.icon-glass-cheers:before {
  content: "\e927";
}
.icon-theater-masks:before {
  content: "\e928";
}
.icon-coin:before {
  content: "\e04d";
}
.icon-lamcoin:before {
  content: "\e920";
}
.icon-accessibility:before {
  content: "\e91f";
}
.icon-envelope2:before {
  content: "\e91c";
}
.icon-store:before {
  content: "\e91d";
}
.icon-youtube2:before {
  content: "\e91e";
}
.icon-cat-119:before {
  content: "\e907";
}
.icon-cat-122:before {
  content: "\e908";
}
.icon-cat-125:before {
  content: "\e909";
}
.icon-cat-126:before {
  content: "\e90a";
}
.icon-cat-128:before {
  content: "\e90b";
}
.icon-cat-130:before {
  content: "\e90c";
}
.icon-cat-5448:before {
  content: "\e90d";
}
.icon-cat-5460:before {
  content: "\e90e";
}
.icon-cat-5469:before {
  content: "\e90f";
}
.icon-cat-5532:before {
  content: "\e910";
}
.icon-open-sidebar:before {
  content: "\e91a";
}
.icon-reading-list:before {
  content: "\e91b";
}
.icon-reading-list-add:before {
  content: "\e916";
}
.icon-reading-list-bg:before {
  content: "\e917";
}
.icon-reading-list-added:before {
  content: "\e918";
}
.icon-dots-three-vertical:before {
  content: "\e915";
}
.icon-drag:before {
  content: "\e914";
}
.icon-download_arrow:before {
  content: "\e911";
}
.icon-plus50:before {
  content: "\e900";
}
.icon-checklist:before {
  content: "\e901";
}
.icon-time:before {
  content: "\e902";
}
.icon-nis:before {
  content: "\e903";
}
.icon-family-3:before {
  content: "\e904";
}
.icon-flag-2:before {
  content: "\e905";
}
.icon-couple:before {
  content: "\e906";
}
.icon-cross:before {
  content: "\e919";
}
.icon-instagram:before {
  content: "\e008";
}
.icon-question:before {
  content: "\e002";
}
.icon-checkmark:before {
  content: "\e001";
}
.icon-ticket:before {
  content: "\e006";
}
.icon-earth:before {
  content: "\e007";
}
.icon-link:before {
  content: "\e004";
}
.icon-share:before {
  content: "\e005";
}
.icon-user-add:before {
  content: "\e000";
}
.icon-house:before {
  content: "\e003";
}
.icon-circle:before {
  content: "\f111";
}
.icon-circle-blank:before {
  content: "\f10c";
}
.icon-double-angle-left:before {
  content: "\f100";
}
.icon-double-angle-right:before {
  content: "\f101";
}
.icon-comments-forum:before {
  content: "\f0e6";
}
.icon-comment-alt:before {
  content: "\f0e5";
}
.icon-caret-down:before {
  content: "\e028";
}
.icon-caret-up:before {
  content: "\e029";
}
.icon-caret-left:before {
  content: "\e02a";
}
.icon-caret-right:before {
  content: "\e02b";
}
.icon-reorder:before {
  content: "\f0c9";
}
.icon-wrench:before {
  content: "\e022";
}
.icon-globe:before {
  content: "\e035";
}
.icon-lock-open:before {
  content: "\e013";
}
.icon-check-empty:before {
  content: "\f096";
}
.icon-upload-alt:before {
  content: "\e017";
}
.icon-signin:before {
  content: "\e024";
}
.icon-external-link:before {
  content: "\f08e";
}
.icon-calendar:before {
  content: "\e023";
}
.icon-comment:before {
  content: "\e01b";
}
.icon-chevron-up:before {
  content: "\e02e";
}
.icon-chevron-down:before {
  content: "\e02f";
}
.icon-folder-open:before {
  content: "\e01e";
}
.icon-bar-chart:before {
  content: "\e020";
}
.icon-arrow-left:before {
  content: "\e030";
}
.icon-arrow-right:before {
  content: "\e033";
}
.icon-arrow-up:before {
  content: "\e032";
}
.icon-arrow-down:before {
  content: "\e031";
}
.icon-share-alt:before {
  content: "\e018";
}
.icon-resize-full:before {
  content: "\e026";
}
.icon-resize-small:before {
  content: "\e025";
}
.icon-plus:before {
  content: "\e010";
}
.icon-minus:before {
  content: "\e011";
}
.icon-eye-open:before {
  content: "\e014";
}
.icon-eye-close:before {
  content: "\e015";
}
.icon-ban-circle:before {
  content: "\e027";
}
.icon-chevron-right:before {
  content: "\e02d";
}
.icon-chevron-left:before {
  content: "\e02c";
}
.icon-align-justify:before {
  content: "\e03a";
}
.icon-facetime-video:before {
  content: "\e00b";
}
.icon-picture:before {
  content: "\e00c";
}
.icon-share-2:before {
  content: "\e019";
}
.icon-check:before {
  content: "\e01f";
}
.icon-move:before {
  content: "\f047";
}
.icon-align-right:before {
  content: "\e038";
}
.icon-align-center:before {
  content: "\e039";
}
.icon-align-left:before {
  content: "\e037";
}
.icon-camera:before {
  content: "\e00d";
}
.icon-print:before {
  content: "\e01a";
}
.icon-cog:before {
  content: "\e021";
}
.icon-trash:before {
  content: "\e01d";
}
.icon-upload:before {
  content: "\e034";
}
.icon-lock:before {
  content: "\e012";
}
.icon-flag:before {
  content: "\e016";
}
.icon-ok:before {
  content: "\e00e";
}
.icon-user:before {
  content: "\e00a";
}
.icon-envelope:before {
  content: "\e009";
}
.icon-dollar:before {
  content: "\e03c";
}
.icon-award:before {
  content: "\e03d";
}
.icon-lodging:before {
  content: "\e044";
}
.icon-doc-new:before {
  content: "\e049";
}
.icon-group-1:before {
  content: "\e046";
}
.icon-pencil:before {
  content: "\e047";
}
.icon-twitter:before {
  content: "\e04c";
}
.icon-youtube:before {
  content: "\e042";
}
.icon-afty:before {
  content: "\e054";
}
.icon-bussiness:before {
  content: "\e053";
}
.icon-lametayel-small-1:before {
  content: "\e051";
}
.icon-lametayel-peoples:before {
  content: "\e052";
}
.icon-market-small-1:before {
  content: "\e050";
}
.icon-sheleg:before {
  content: "\e04f";
}
.icon-cart:before {
  content: "\e055";
}
.icon-shield:before {
  content: "\e056";
}
.icon-drushim:before {
  content: "\e058";
}
.icon-book-open:before {
  content: "\e059";
}
.icon-tent:before {
  content: "\e040";
}
.icon-paperplane:before {
  content: "\e05b";
}
.icon-comment-1:before {
  content: "\e05d";
}
.icon-family:before {
  content: "\e05e";
}
.icon-facebook:before {
  content: "\f09a";
}
.icon-shirt:before {
  content: "\e04e";
}
.icon-exit:before {
  content: "\e05f";
}
.icon-tiuli:before {
  content: "\e060";
}
.icon-family-2:before {
  content: "\e061";
}
.icon-wand:before {
  content: "\e062";
}
.icon-switch:before {
  content: "\e063";
}
.icon-heart:before {
  content: "\f004";
}
.icon-car:before {
  content: "\e064";
}
.icon-ski-downhill:before {
  content: "\e065";
}
.icon-dice:before {
  content: "\e066";
}
.icon-stopwatch:before {
  content: "\e067";
}
.icon-exercise:before {
  content: "\e068";
}
.icon-megaphone:before {
  content: "\e069";
}
.icon-lightbulb:before {
  content: "\f338";
}
.icon-lightbulb-2:before {
  content: "\f0eb";
}
.icon-download:before {
  content: "\f01a";
}
.icon-map-marker:before {
  content: "\f041";
}
.icon-history:before {
  content: "\e06a";
}
.icon-file:before {
  content: "\e06b";
}
.icon-folder-open-alt:before {
  content: "\f115";
}
.icon-favoritefile:before {
  content: "\f381";
}
.icon-favoritefolder:before {
  content: "\f382";
}
.icon-at:before {
  content: "\e06c";
}
.icon-keyboard:before {
  content: "\e06d";
}
.icon-addfolder:before {
  content: "\f0da";
}
.icon-file-add:before {
  content: "\e06e";
}
.icon-quote-left:before {
  content: "\f10d";
}
.icon-quote-right:before {
  content: "\f10e";
}
.icon-money:before {
  content: "\f0d6";
}
.icon-power-cord:before {
  content: "\e06f";
}
.icon-key:before {
  content: "\f093";
}
.icon-bell-alt:before {
  content: "\f0f3";
}
.icon-volume-high:before {
  content: "\e071";
}
.icon-google:before {
  content: "\e041";
}
.icon-star:before {
  content: "\e070";
}
.icon-star-2:before {
  content: "\e072";
}
.icon-blogs:before {
  content: "\e04b";
}
.icon-partners:before {
  content: "\e03e";
}
.icon-tips:before {
  content: "\e03f";
}
.icon-facebook-2:before {
  content: "\e045";
}
.icon-certificate:before {
  content: "\f0a3";
}
.icon-spinner:before {
  content: "\e043";
}
.icon-spinner-2:before {
  content: "\e073";
}
.icon-radio-checked:before {
  content: "\e074";
}
.icon-radio-unchecked:before {
  content: "\e075";
}
.icon-checkbox-unchecked:before {
  content: "\e076";
}
.icon-checkbox-checked:before {
  content: "\e077";
}
.icon-search:before {
  content: "\e048";
}
.icon-filter:before {
  content: "\e079";
}
.icon-soccer:before {
  content: "\e078";
}
.icon-microphone:before {
  content: "\e07a";
}
.icon-thumbs-up:before {
  content: "\f087";
}
.icon-palette:before {
  content: "\f1b9";
}
.icon-paintroll:before {
  content: "\f1fa";
}
.icon-comment-2:before {
  content: "\e04a";
}
.icon-thumbs-down:before {
  content: "\f088";
}
.icon-thumbs-up-2:before {
  content: "\e07b";
}
.icon-thumbs-up-3:before {
  content: "\e07c";
}
.icon-credit:before {
  content: "\e07d";
}
.icon-refresh:before {
  content: "\f021";
}
.icon-cut:before {
  content: "\f0c4";
}
.icon-copy:before {
  content: "\f0c5";
}
.icon-save:before {
  content: "\f0c7";
}
.icon-undo:before {
  content: "\f0e2";
}
.icon-file-pdf:before {
  content: "\e07f";
}
.icon-qrcode:before {
  content: "\e080";
}
.icon-history-2:before {
  content: "\e081";
}
.icon-info-2:before {
  content: "\e082";
}
.icon-dumbell:before {
  content: "\e083";
}
.icon-lecturer:before {
  content: "\e057";
}
.icon-cablecar:before {
  content: "\e084";
}
.icon-goggles:before {
  content: "\e085";
}
.icon-newspaper:before {
  content: "\e07e";
}
.icon-zoomin:before {
  content: "\e087";
}
.icon-map:before {
  content: "\e088";
}
.icon-drink:before {
  content: "\e089";
}
.icon-mountain:before {
  content: "\e08a";
}
.icon-move-vertical-alt-1:before {
  content: "\e08b";
}
.icon-steering-wheel:before {
  content: "\e08c";
}
.icon-map_markers:before {
  content: "\e08f";
}
.icon-tracks-2:before {
  content: "\e090";
}
.icon-directions:before {
  content: "\e092";
}
.icon-walking:before {
  content: "\e091";
}
.icon-cart-2:before {
  content: "\e093";
}
.icon-add_to_calendar:before {
  content: "\e094";
}
.icon-whatsapp:before {
  content: "\e095";
}
.icon-phone:before {
  content: "\e096";
}
.icon-phone-2:before {
  content: "\e097";
}
.icon-border-control:before {
  content: "\e929";
}
.icon-chevron-left-thin:before {
  content: "\e921";
}
.icon-remove:before {
  content: "\e600";
}
