/**
 * Style file @
 *
 * This file is compiled into style.css
 */
/* ---------- Import variables ---------- */
/* Layout */
/* Theme color */
/* NEWS CATEGORY COLORS */
/* EVENT CATEGORY COLORS */
/* FEED TIMELINE */
/* Navigation */
/**
 * Jeet grid settings.
 */
/**
 * Breakpoints - Breakpoint slicer
 * https://github.com/lolmaus/breakpoint-slicer
 */
/* Colors */
/* Greys */
/* Elements */
/* Borders */
/* Links */
/* Font stuff */
/* ---------- Import grid system ---------- */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* ---------- Import base ---------- */
/*  Better box model */
*,
*:after,
*:before {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: "Muli", sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 16;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

q:before,
q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Base responsive images */
img {
  height: auto;
  max-width: 100%;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

/*
* Breakpoints slicer debug
 */
.layout-container:after {
  position: fixed;
  font-size: 18px;
  bottom: 0;
  left: 0;
  z-index: 10000000;
  padding: 5px;
  color: #fff;
  background-color: #000;
}

@media (min-width: 0) {
  .layout-container:after {
    content: "mini";
  }
}

@media (min-width: 320px) {
  .layout-container:after {
    content: "mobile";
  }
}

@media (min-width: 480px) {
  .layout-container:after {
    content: "middy";
  }
}

@media (min-width: 600px) {
  .layout-container:after {
    content: "tablet-p";
  }
}

@media (min-width: 768px) {
  .layout-container:after {
    content: "tablet-l";
  }
}

@media (min-width: 1024px) {
  .layout-container:after {
    content: "desktop";
  }
}

@media (min-width: 1200px) {
  .layout-container:after {
    content: "desktop-l";
  }
}

@media (min-width: 1320px) {
  .layout-container:after {
    content: "desktop-xl";
  }
}

/**
 * Typography
 */
@font-face {
  font-family: 'Nexa';
  src: url("../fonts/nexa_bold-webfont.woff2") format("woff2"), url("../fonts/nexa_bold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url("../fonts/nexa_bold-webfont.woff2") format("woff2"), url("../fonts/nexa_bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url("../fonts/nexa_regular-webfont.woff2") format("woff2"), url("../fonts/nexa_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url("../fonts/nexa_thin-webfont.woff2") format("woff2"), url("../fonts/nexa_thin-webfont.woff") format("woff");
  font-weight: lighter;
  font-style: normal;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
button,
input,
select,
textarea {
  font-family: "Muli", sans-serif;
}

body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

h1, h2, h4, h5 {
  font-family: "Muli", Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

h1 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.3;
  color: #313942;
  margin: .67em 0;
}

h2 {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.3;
  color: #37b4c7;
  margin: .83em 0;
}

h3 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3;
  color: #37b4c7;
  text-transform: uppercase;
  margin: 1em 0;
  letter-spacing: 1px;
  font-weight: 400;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #37b4c7;
  margin: 1.33em 0;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #37b4c7;
  margin: 1.67em 0;
  text-transform: none;
}

h6 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #37b4c7;
  margin: 2.33em 0;
  text-transform: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

p, pre {
  margin: 1.5em 0;
}

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-family: 'courier new',monospace;
  font-size: 16px;
  font-size: 1rem;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: '';
  content: none;
}

small {
  font-size: 14px;
  font-size: 0.875rem;
}

large {
  font-size: 18px;
  font-size: 1.125rem;
}

sub, sup {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

dl, ol, ul {
  margin: 1.5em 0;
}

dl dl, dl menu, dl ul, ol dl, ol menu, ol ul, ul dl, ul menu, ul ul {
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
}

ul {
  padding: 0 0 0 30px;
  list-style: disc;
}

ul.rteindent1 {
  padding: 0;
}

ol {
  padding: 0 0 0 30px;
  list-style: decimal;
}

ol.rteindent1 {
  padding: 0;
}

ol ol {
  margin: 0;
  list-style: lower-alpha;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

.login-site-logo {
  height: 100px;
  width: 100%;
  margin-bottom: 40px;
  background: transparent url(../img/intranet-logo-white-large.png) no-repeat center center;
}

#cke_edit-body-0-value {
  width: auto !important;
}

header {
  background-color: #0082bb;
}

header .header-container #intranet-logo {
  top: 25px;
  width: 73px;
  height: 43px;
  background-image: url(../img/intranet-logo-small-white.png);
  background-position: 0 0;
}

@media (min-width: 601px) {
  header .header-container #intranet-logo {
    top: 20px;
    width: 170px;
    height: 57px;
    background-image: url(../img/intranet-logo-white.png);
    background-position: 0 0;
  }
}

header .header-container .header-elements .header-right .menu--header-menu > ul > li.favourites {
  background-image: url(../../tribe_base/img/icon-favourite-white.png);
}

.header-search form .form-actions input[type="submit"] {
  background-image: url(../../tribe_base/img/icon-search-white.png);
}

.header-search .search-box-close:before,
.header-search .search-box-close:after {
  background: #fff;
}

.header-search {
  background: transparent;
}

.header-search input[type=text] {
  background: transparent;
  color: #fff;
}

.header-search input[type=text]::-webkit-input-placeholder {
  color: #fff;
}

.header-search input[type=text]::-moz-placeholder {
  color: #fff;
}

.header-search input[type=text]:-ms-input-placeholder {
  color: #fff;
}

.header-search input[type=text]::placeholder {
  color: #fff;
}

.header-search .input-bottom-border {
  background: #fff;
}

#main-navigation {
  background-color: #003145;
}

#main-navigation .btn-toggle-main-nav:hover {
  background-color: #001821;
}

#main-navigation nav > ul > li {
  border-color: #001f2c;
}

#main-navigation nav > ul > li:first-child {
  border-color: #001f2c;
}

#main-navigation nav > ul > li > a.is-active {
  background-color: #001f2c;
}

#main-navigation nav > ul > li > a:hover {
  background-color: #001821;
}

#main-navigation nav > ul > li > .btn-sub-nav-open.icon-active {
  background-color: #001f2c;
}

#main-navigation nav > ul > li > .btn-sub-nav-open:hover {
  background-color: #001821;
}

#main-navigation nav > ul > li > ul > li > a {
  background-color: #001f2c;
}

#main-navigation nav > ul > li > ul > li > a:hover {
  background-color: #001821;
}

#main-navigation #created-in-tribe {
  background-color: #003145;
}

.view-id-websites.view-display-id-page_1 .view-filters form > div > div.js-form-type-textfield, .view-id-websites.view-display-id-page_1 .view-filters form > div > div.js-form-type-select {
  display: inline-block;
}

.view-id-websites.view-display-id-page_1 .view-filters form > div > div.js-form-type-select {
  width: 250px;
}

@media (min-width: 1025px) {
  .view-id-websites.view-display-id-page_1 .view-content table > thead > tr > th.views-field-field-website-server-id {
    min-width: 300px;
  }
}
