@font-face {
  /* Essential deinitions. Without one them the font-face is considered invalid */
  font-family: "Gilroy";
  src: url("Gilroy-Regular.woff") format("woff");
  
  /*
  "Guard" definitions.
  They define the cases when the current font-face should be used.
  They can all be omitted in a font-face definition
  */
  unicode-range: <range of characters for which the font should be used>;
  font-variant:
    normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ];
  font-feature-settings: normal | <feature-tag-value>;
  font-stretch:
    normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded;
  font-weight:
    normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
  font-style: normal | italic | oblique;
}
body, html, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6  {
    font-family: "Gilroy" !important;
}
.navbar-static-top {
  display: flex;
  align-items: center;
  min-height: 70px; /* flexible but controlled */
}

.navbar-brand {
  display: flex !important;
  align-items: center;
  padding: 0 !important;
  height: fit-content !important; /* REMOVE fixed height */
}

.navbar-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin: 0; /* REMOVE hack */
}
.navbar-static-top.navbar .menu-bar > .navbar-nav > li > a {
     font-family:  "Gilroy" !important;
}
:root {
  --tile-size: 170px;
  --tile-gap: 15px;
}
  
@media only screen and (max-width: 767px){
  .highcharts-root{
   width:  300px !important;
  }
}

@media only screen and (min-width: 800px){
  .highcharts-root{
   width:  540px !important;
  }
}
@media only screen and (max-width: 850px){
  .pull-right{
   float:  left !important;
  }
}

@media only screen and (max-width: 420px){
  .col-md-12{
   padding-left:  0px !important;
  }
}

/*input#search_control {
  display: none !important;
}

button[title="Search Knowledge Articles"] {
  display: none !important;
}
a#search.navbar-icon {
  display: none !important;
}
.navbar li.divider-vertical {
  display: none !important;
}*/
/*div .view-grid {
  word-break: unset !important;
}*/

/* TILE WRAPPER */
.tile-wrapper {
  display: grid;
  grid-template-columns: repeat(4, var(--tile-size));
  gap: var(--tile-gap);
  justify-content: center;
  margin-top: 60px;
}

/* TILE BOX */
.tile {
  width: var(--tile-size);
  height: var(--tile-size);
  background: #e6e6e6;
  border: 1px solid #000;
  position: relative;   /* IMPORTANT */
  transition: 0.3s;
}

.tile:hover {
  transform: translateY(-5px);
  background: #dcdcdc;
}


/* ICON (TOP LEFT) */
.tile-icon {
  position: absolute;
  top: 12px;
  left: 12px;
}

.tile-icon img {
  width: 35px;
  height: 35px;
}

/* TITLE (CENTER) */
.tile h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 80%;
  text-align: center;
  font-size: 14px;
  font-weight:bold;
  word-break: break-word;
}

/* VIEW (BOTTOM LEFT) */
.tile-view {
  position: absolute;
  bottom: 12px;
  left: 12px;

  font-size: 12px;
  color: #2f6fde;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tile-wrapper {
    grid-template-columns: repeat(2, var(--tile-size));
  }
}

@media (max-width: 500px) {
  .tile-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Layout to place Footer at Botton*/
 
html, body {
    height: 100%;
    margin: 0;
}
 
/* Root layout */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
 
/* Power Pages main wrapper (CRITICAL) */

body > form {
    display: flex;
    flex-direction: column;
    flex: 1;

}
 
/* All possible content wrappers */

/* #mainContent,
.page-content,
.wrapper-body,
.container,
.container-fluid,
.row {
    flex: 1;
}*/

#mainContent {
  flex: 1;
}
 
/* Remove unwanted bottom spacing */

.page-content,
.container,
.row {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
 
/* Footer always at bottom */

footer {
    margin-top: auto !important;
}
