/**
 * @file
 * Omega's primary SCSS controller, that pulls in any relevant SCSS includes
 * 
 * All styles declared in Omega use the !default property.
 * Any overrides in your subtheme will not include this and can override styles and variables selectively.
 * In your subtheme, you can comment out any of the @import declarations you like if you'd like to create your own styles for that element.
 *
 * @usage
 * @media all and (min-width: $tablet) {
 *   // styles here will apply to tablet mode and above defined in _omega-style-vars.scss
 * }
 * @media all and (min-width: $desktop) {
 *   // styles here will apply to desktop mode and above defined in _omega-style-vars.scss
 * }
 * @media all and (min-width: $tablet) and (max-width: $desktop) {
 *   // styles here will apply to tablet mode ONLY and not for desktop mode.
 * }
 */
/* Fonts */
/*Break Points for reference
 //Breakpoint: All
@media all and (min-width: 0px)
 //Breakpoint: mobile_portrait
@media all and (max-width: 479px)
 //Breakpoint: mobile_landscape
@media all and (min-width: 480px) and (max-width: 599px)
 //Breakpoint: tablet_portrait
@media all and (min-width: 600px) and (max-width: 839px)
 //Breakpoint: Tablet
@media all and (min-width: 840px) and (max-width: 959px)
 //Breakpoint: Normal
@media all and (min-width: 960px) and (max-width: 1279px)
 //Breakpoint: Wide
@media all and (min-width: 1280px) and (max-width: 1600px)
 //Breakpoint: ExtraWide
@media all and (min-width: 1601px)
*/
/*$primaryColor1: #444 !default; // general text
$primaryColor2: #00343D !default; // links
$primaryColor3: #FAFAFA !default; // almost white
$primaryColor4: #1A1A1A !default; // almost black
$primaryColor5: #5A5A5A !default; // nice gray*/
/**
 * @file
 * Visual styles for comments in Bartik.
 */
/* This is required to win over specificity of #content h2 */
#content .comment-wrapper h2 {
  margin-bottom: 1em;
}

#content .comment-wrapper h2.comment-form__title {
  margin-bottom: 1em;
}

.field-node--comment {
  font-size: 0.934em;
}

.comment {
  margin-bottom: 19px;
  vertical-align: top;
  display: table;
}

[dir="rtl"] .comment {
  direction: rtl;
}

.comment__meta {
  padding: 0 30px 0 0;
  /* LTR */
  font-size: 1.071em;
}

[dir="rtl"] .comment__meta {
  padding: 0 0 0 30px;
}

.comment__attribution img {
  border: 1px solid #d3d7d9;
}

/* This is required to win over specificity of .field--type-image img */
.comment .field--name-user-picture img {
  margin: 0;
}

.comment__author .username {
  white-space: nowrap;
}

.comment__author {
  margin: 4px 0;
  line-height: 1.2;
}

.comment__time {
  margin-bottom: 4px;
  color: #68696b;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.733em;
  line-height: 1.2;
}

.comment__permalink {
  display: none;
  /*  font-size: 0.733em;
    line-height: 1.2;*/
}

.comment__content {
  position: relative;
  display: table-cell;
  padding: 10px 25px 10px 25px;
  vertical-align: top;
  width: 100%;
  border: 1px solid #d3d7d9;
  font-size: 0.929em;
  line-height: 1.6;
  word-break: break-all;
}

.comment__content:before {
  content: '';
  position: absolute;
  right: 100%;
  /* LTR */
  top: 20px;
  border-top: 20px solid transparent;
  border-right: 20px solid #d3d7d9;
  /* LTR */
  border-bottom: 20px solid transparent;
}

[dir="rtl"] .comment__content:before {
  right: auto;
  left: 100%;
  border-right: none;
  border-left: 20px solid #d3d7d9;
}

.comment__content:after {
  content: '';
  position: absolute;
  right: 100%;
  /* LTR */
  top: 20px;
  border-top: 20px solid transparent;
  border-right: 20px solid #fff;
  /* LTR */
  border-bottom: 20px solid transparent;
  margin-right: -1px;
  /* LTR */
}

[dir="rtl"] .comment__content:after {
  right: auto;
  left: 100%;
  border-right: none;
  border-left: 20px solid #fff;
  margin-right: 0;
  margin-left: -1px;
}

.comment__content h3 {
  margin-top: 0.94em;
  margin-bottom: 0.45em;
  font-size: 1.171em;
}

.indented {
  margin-left: 40px;
  /* LTR */
}

[dir="rtl"] .indented {
  margin-right: 40px;
  margin-left: 0;
}

.comment .links {
  padding: 0 0 0.25em 0;
}

.comment .links li {
  padding: 0 0.5em 0 0;
  /* LTR */
  font-size: 1.08em;
}

[dir="rtl"] .comment .links li {
  padding: 0 0 0 0.5em;
}

.comment--unpublished {
  margin-right: 5px;
  /* LTR */
  padding: 5px 2px 5px 5px;
  /* LTR */
  background: #fff4f4;
}

[dir="rtl"] .comment--unpublished {
  margin-left: 5px;
  margin-right: 0;
  padding: 5px 5px 5px 2px;
}

/**
 * @todo: unpublished nodes have class .node--unpublished.
 * change this to .comment--unpublished.
 */
.unpublished .comment-text .comment-arrow {
  border-left: 1px solid #fff4f4;
  border-right: 1px solid #fff4f4;
}

.unpublished {
  padding: 20px 15px 0;
}

.comment-footer {
  display: table-row;
}

.comment--unpublished .comment__text:after,
.node--unpublished .comment__text:after {
  border-right-color: #fff4f4;
  /* LTR */
}

[dir="rtl"] .comment--unpublished .comment__content:after,
[dir="rtl"] .node--unpublished .comment__content:after {
  border-left-color: #fff4f4;
}

/**
 * Comment form - edits by norwegian.blue
*/
.title.comment-form__title {
  width: 100%;
}

form.comment-comment-node-blog-form label {
  display: none;
}

/* Fonts */
/*Break Points for reference
 //Breakpoint: All
@media all and (min-width: 0px)
 //Breakpoint: mobile_portrait
@media all and (max-width: 479px)
 //Breakpoint: mobile_landscape
@media all and (min-width: 480px) and (max-width: 599px)
 //Breakpoint: tablet_portrait
@media all and (min-width: 600px) and (max-width: 839px)
 //Breakpoint: Tablet
@media all and (min-width: 840px) and (max-width: 959px)
 //Breakpoint: Normal
@media all and (min-width: 960px) and (max-width: 1279px)
 //Breakpoint: Wide
@media all and (min-width: 1280px) and (max-width: 1600px)
 //Breakpoint: ExtraWide
@media all and (min-width: 1601px)
*/
/*$primaryColor1: #444 !default; // general text
$primaryColor2: #00343D !default; // links
$primaryColor3: #FAFAFA !default; // almost white
$primaryColor4: #1A1A1A !default; // almost black
$primaryColor5: #5A5A5A !default; // nice gray*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: none;
  min-height: 100%;
  line-height: 1.5;
  word-wrap: break-word;
  font-size: 87.5%;
}

body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
  margin-left: 0;
  padding-left: 15rem;
}

a {
  text-decoration: none;
  color: #333333;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
a:hover {
  text-decoration: none;
  border-bottom: none;
  color: rgba(51, 51, 51, 0.85);
}

details {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  color: #333;
  font-size: 1.1em;
  line-height: 2.2em;
  margin: 0 0 2.2em;
}

del {
  text-decoration: line-through;
}

blockquote {
  background: #f7f7f7;
  border-left: 1px solid #bbb;
  /* LTR */
  font-style: italic;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}

ul li {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  color: #333;
  font-size: 1.1em;
}

ol li {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  color: #333;
  font-size: 1.1em;
}

#main-layout .field--name-field-content ul, #main-layout .field--name-field-content ol {
  list-style: none;
  counter-reset: bullet-symbol;
  margin: -1rem 0 1rem;
  padding-left: 0;
}

#main-layout .field--name-field-content h2 + ul, #main-layout .field--name-field-content h2 + ol,
#main-layout .field--name-field-content h3 + ul, #main-layout .field--name-field-content h3 + ol {
  margin-top: 0;
}

#main-layout .field--name-field-content ul, #main-layout.field--name-field-content ol {
  border-bottom: 1px solid rgba(223, 221, 199, 0.6);
}

#main-layout .field--name-field-content li {
  position: relative;
  counter-increment: bullet-symbol;
  border-top: 1px solid rgba(223, 221, 199, 0.6);
  padding: 0.3rem 1rem 0.5rem 2.55rem;
}

#main-layout .field--name-field-content ul li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #C85A1F;
}

#main-layout .field--name-field-content ul li:nth-child(2n+1) {
  background: rgba(223, 221, 199, 0.2);
}

#main-layout .field--name-field-content ol li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  transform: translateY(-50%);
  content: counter(bullet-symbol);
  background: #C85A1F;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: inline-block;
  line-height: 1.5rem;
  color: white;
  text-align: center;
  margin: 0 0.4rem;
}

#main-layout .field--name-field-content ol li:nth-of-type(n+100) {
  padding-left: 3.25rem !important;
}

#main-layout .field--name-field-content ol li:nth-of-type(n+100)::before {
  width: 2.5rem;
  border-radius: 1.5rem;
}

#main-layout .field--name-field-content ol ol li::before {
  background: rgba(200, 90, 31, 0.8);
}

#main-layout .field--name-field-content ol ol ol li::before {
  background: rgba(200, 90, 31, 0.6);
}

#triangle-up {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid red;
}

div.responsive-table {
  overflow-x: auto;
}

#main-layout .field--name-field-content table, .path-user #main-layout table {
  width: 100%;
  text-align: left;
  margin: 0 0 2.1rem 0;
}
#main-layout .field--name-field-content table caption, #main-layout .field--name-field-content table caption p, .path-user #main-layout table caption, .path-user #main-layout table caption p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 500;
  color: #003C3C;
  font-size: 1.3em;
  margin: 0 0 0.2rem;
  text-align: left;
}
#main-layout .field--name-field-content table thead, .path-user #main-layout table thead {
  border-top: 1px solid #C85A1F;
}
#main-layout .field--name-field-content table tbody, #main-layout .field--name-field-content table thead, .path-user #main-layout table tbody, .path-user #main-layout table thead {
  vertical-align: top;
}
#main-layout .field--name-field-content table tr, .path-user #main-layout table tr {
  border-bottom: 1px solid #aaa;
  padding-bottom: 1rem;
}
#main-layout .field--name-field-content table th, #main-layout .field--name-field-content table th p, .path-user #main-layout table th, .path-user #main-layout table th p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 1rem;
  margin: 0 0 1rem;
  line-height: 1.4em;
}
#main-layout .field--name-field-content table th:only-of-type, #main-layout .field--name-field-content table th p:only-of-type, .path-user #main-layout table th:only-of-type, .path-user #main-layout table th p:only-of-type {
  margin: 0;
}
#main-layout .field--name-field-content table td, #main-layout .field--name-field-content table td p, .path-user #main-layout table td, .path-user #main-layout table td p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  color: #333;
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.4em;
}
#main-layout .field--name-field-content table td:only-of-type, #main-layout .field--name-field-content table td p:only-of-type, .path-user #main-layout table td:only-of-type, .path-user #main-layout table td p:only-of-type {
  margin: 0;
}
#main-layout .field--name-field-content table th, #main-layout .field--name-field-content table td, .path-user #main-layout table th, .path-user #main-layout table td {
  min-width: 8rem;
  padding: 0.6rem 1.5rem 1rem 0;
}

h1,
.heading-a {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  color: #003C3C;
  font-size: 3.5em;
  margin: 1.0em 0 0.5em;
  clear: left;
}

h2,
.heading-b {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 500;
  color: #282850;
  font-size: 1.8em;
  margin: 1.0em 0 0.5em;
  clear: left;
}

h3,
.heading-c {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 500;
  color: #993300;
  font-size: 1.4em;
  margin: 1.0em 0 0.5em;
}

h4,
.heading-d {
  margin: 1.0em 0 0.5em;
  font-weight: inherit;
  font-size: 1.05em;
}

h5,
.heading-e {
  margin: 1.0em 0 0.5em;
  font-weight: inherit;
  font-size: 0.889em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h6,
.heading-f {
  margin: 1.0em 0 0.5em;
  font-weight: inherit;
  font-size: 0.67em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1:first-of-type, #block-title {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  color: #003C3C;
  font-size: 3.5em;
  line-height: 1.3em;
  padding: 5px 0 50px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #777;
}

.header-intro {
  font-size: 1.3rem;
  line-height: 1.3em;
}

p a, p a.link, #main-layout li a {
  border-bottom: dotted 0.1em !important;
}

#main-layout p a::after, #main-layout li a::after {
  content: url("/sites/keplerchallenge.co.nz/themes/custom/keplerst/images/link.svg");
  display: inline-block;
  top: 4px;
  position: relative;
  margin: 0 3px;
}

img.image-style-avatar {
  border-radius: 100%;
}

dt {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 500;
  color: #993300;
  font-size: 1.6em;
  margin-top: 2rem;
}

dd {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  color: #3C3C3C;
  font-size: 1.2em;
}

dd {
  display: none;
}

dt:hover + dd, dt:target + dd {
  display: block;
}

/* Fonts */
/*Break Points for reference
 //Breakpoint: All
@media all and (min-width: 0px)
 //Breakpoint: mobile_portrait
@media all and (max-width: 479px)
 //Breakpoint: mobile_landscape
@media all and (min-width: 480px) and (max-width: 599px)
 //Breakpoint: tablet_portrait
@media all and (min-width: 600px) and (max-width: 839px)
 //Breakpoint: Tablet
@media all and (min-width: 840px) and (max-width: 959px)
 //Breakpoint: Normal
@media all and (min-width: 960px) and (max-width: 1279px)
 //Breakpoint: Wide
@media all and (min-width: 1280px) and (max-width: 1600px)
 //Breakpoint: ExtraWide
@media all and (min-width: 1601px)
*/
/*$primaryColor1: #444 !default; // general text
$primaryColor2: #00343D !default; // links
$primaryColor3: #FAFAFA !default; // almost white
$primaryColor4: #1A1A1A !default; // almost black
$primaryColor5: #5A5A5A !default; // nice gray*/
.messages--warning {
  box-shadow: none;
  border-left: 8px solid #E09600;
}

.messages--status {
  box-shadow: none;
  border-left: 8px solid #77B259;
}

.messages--error {
  box-shadow: none;
  border-left: 8px solid #E62600;
}

.path-store .messages--status a {
  display: inline-block;
  padding: 0.2rem 0.5rem 0.4rem;
  margin: 0 4px;
  border: 2px solid #77b259;
  border-radius: 0rem;
}

/* Fonts */
/*Break Points for reference
 //Breakpoint: All
@media all and (min-width: 0px)
 //Breakpoint: mobile_portrait
@media all and (max-width: 479px)
 //Breakpoint: mobile_landscape
@media all and (min-width: 480px) and (max-width: 599px)
 //Breakpoint: tablet_portrait
@media all and (min-width: 600px) and (max-width: 839px)
 //Breakpoint: Tablet
@media all and (min-width: 840px) and (max-width: 959px)
 //Breakpoint: Normal
@media all and (min-width: 960px) and (max-width: 1279px)
 //Breakpoint: Wide
@media all and (min-width: 1280px) and (max-width: 1600px)
 //Breakpoint: ExtraWide
@media all and (min-width: 1601px)
*/
/*$primaryColor1: #444 !default; // general text
$primaryColor2: #00343D !default; // links
$primaryColor3: #FAFAFA !default; // almost white
$primaryColor4: #1A1A1A !default; // almost black
$primaryColor5: #5A5A5A !default; // nice gray*/
nav.navigation ul {
  margin: 0;
  padding: 0;
}
nav.navigation ul li {
  margin: 3px 5px;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
  display: inline-block;
}
nav.navigation ul li:first-child {
  margin-left: 0;
}
nav.navigation ul li:last-child {
  margin-right: 0;
}

@media all and (min-width: 1024px) {
  nav.navigation ul, nav.navigation ul.links {
    margin: 0;
    margin-bottom: 0.5em;
    padding: 0;
  }
  nav.navigation ul li, nav.navigation ul.links li {
    margin: 0 5px;
    padding: 0;
    list-style-type: none;
    display: inline-block;
  }
  nav.navigation ul li a, nav.navigation ul.links li a {
    display: block;
    padding: 5px 10px;
    background: #003C3C;
    color: #DFDDC7;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
  }
  nav.navigation ul li a:hover, nav.navigation ul.links li a:hover {
    opacity: 0.85;
  }
  nav.navigation ul li:first-child, nav.navigation ul.links li:first-child {
    margin-left: 0;
  }
  nav.navigation ul li:last-child, nav.navigation ul.links li:last-child {
    margin-right: 0;
  }
}
/*#block-ultimenu-mainnav-title  .button.button--ultimenu {
    display: block;
  }
*/
.region--menu {
  text-align: center;
  min-height: 2.4rem;
}

.path-frontpage .region--menu {
  min-height: 6vh;
}

.ultimenu {
  min-height: unset;
}

#ultimenu-main li:hover {
  background-color: rgba(200, 90, 31, 0.4);
}

ul.ultimenu--basic > li a {
  color: #DFDDC7;
}

.ultimenu--basic .active-trail {
  background: #993300;
}

ul.menu {
  margin-left: 0;
}

.menu-item {
  padding-top: 0.1rem;
}

.ultimenu--basic .region {
  background: #003c3c;
}

.ultimenu--basic .ultimenu__flyout {
  background-color: #003C3C;
  padding: 0 0 0.5rem;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
  border-top: solid 1px rgba(200, 90, 31, 0.4);
}

.ultimenusub li.menu-item a {
  width: 100%;
  display: block;
  padding: 0rem 1rem;
}

.ultimenusub li.menu-item a.is-active {
  color: white;
}

.ultimenusub li.menu-item a.is-active::after {
  content: "(current page)";
  font-size: 0.8em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 0.8rem;
  letter-spacing: 0.02rem;
}

.button.button--ultimenu {
  background: none;
  border: none;
  border-radius: 0px;
  height: 3.6rem;
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
}

.button.button--ultimenu:hover, .button.button--ultimenu:active, .button.button--ultimenu:focus {
  background: #993300;
  border-color: none;
}

.button--ultimenu .bars {
  display: block;
  height: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  -webkit-box-shadow: 0 10px 0 2px white, 0 20px 0 2px white, 0 30px 0 2px white;
  -moz-box-shadow: 0 10px 0 2px white, 0 20px 0 2px white, 0 30px 0 2px white;
  -ms-box-shadow: 0 10px 0 2px white, 0 20px 0 2px white, 0 30px 0 2px white;
  -o-box-shadow: 0 10px 0 2px white, 0 20px 0 2px white, 0 30px 0 2px white;
  box-shadow: 0 10px 0 2px white, 0 20px 0 2px white, 0 30px 0 2px white;
}

@media all and (max-width: 959px) {
  #block-ultimenumainnavigation {
    position: fixed;
    top: 3.6rem;
    left: 0;
    width: 100%;
  }
}
@media all and (min-width: 960px) {
  #block-ultimenumainnavigation {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
#header {
  font-family: "Baloo", cursive, serif;
  position: relative;
}

#header {
  height: 200px;
  display: none;
}

.path-frontpage #header {
  display: block;
  height: 200px;
  background: transparent url("/sites/keplerchallenge.co.nz/themes/custom/keplerst/images/norblu_header.jpg") no-repeat scroll 0% 0%/cover;
  /* nb */
}

@media all and (min-width: 740px) {
  .path-frontpage #header {
    display: block;
    height: 250px;
    background: transparent url("/sites/keplerchallenge.co.nz/themes/custom/keplerst/images/norblu_header.jpg") no-repeat fixed 0% 0%/cover;
    /* nb */
  }
}
@media all and (min-width: 1219px) {
  .path-frontpage #header {
    display: block;
    height: 350px;
    background: transparent url("/sites/keplerchallenge.co.nz/themes/custom/keplerst/images/norblu_header.jpg") no-repeat fixed 0% 0%/cover;
    /* nb */
  }
}
.header .section {
  position: relative;
}

.region-header {
  padding: 0;
}

header#header-outer-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  width: 100%;
  /*box-shadow: -1px 0 3px 1px rgba(0, 0, 0, 0.3333);*/
}

section#btns-outer-wrapper {
  margin: 1rem 0 3rem;
}

/* Fonts */
/*Break Points for reference
 //Breakpoint: All
@media all and (min-width: 0px)
 //Breakpoint: mobile_portrait
@media all and (max-width: 479px)
 //Breakpoint: mobile_landscape
@media all and (min-width: 480px) and (max-width: 599px)
 //Breakpoint: tablet_portrait
@media all and (min-width: 600px) and (max-width: 839px)
 //Breakpoint: Tablet
@media all and (min-width: 840px) and (max-width: 959px)
 //Breakpoint: Normal
@media all and (min-width: 960px) and (max-width: 1279px)
 //Breakpoint: Wide
@media all and (min-width: 1280px) and (max-width: 1600px)
 //Breakpoint: ExtraWide
@media all and (min-width: 1601px)
*/
/*$primaryColor1: #444 !default; // general text
$primaryColor2: #00343D !default; // links
$primaryColor3: #FAFAFA !default; // almost white
$primaryColor4: #1A1A1A !default; // almost black
$primaryColor5: #5A5A5A !default; // nice gray*/
/* Fonts */
/*Break Points for reference
 //Breakpoint: All
@media all and (min-width: 0px)
 //Breakpoint: mobile_portrait
@media all and (max-width: 479px)
 //Breakpoint: mobile_landscape
@media all and (min-width: 480px) and (max-width: 599px)
 //Breakpoint: tablet_portrait
@media all and (min-width: 600px) and (max-width: 839px)
 //Breakpoint: Tablet
@media all and (min-width: 840px) and (max-width: 959px)
 //Breakpoint: Normal
@media all and (min-width: 960px) and (max-width: 1279px)
 //Breakpoint: Wide
@media all and (min-width: 1280px) and (max-width: 1600px)
 //Breakpoint: ExtraWide
@media all and (min-width: 1601px)
*/
/*$primaryColor1: #444 !default; // general text
$primaryColor2: #00343D !default; // links
$primaryColor3: #FAFAFA !default; // almost white
$primaryColor4: #1A1A1A !default; // almost black
$primaryColor5: #5A5A5A !default; // nice gray*/
.field--taxonomy-terms {
  padding: 5px 0px;
  margin: 5px 0;
  border: 1px solid #CCC;
  border-left-width: 0;
  border-right-width: 0;
}
.field--taxonomy-terms .field__label {
  font-size: 1.1em;
  font-weight: normal;
}
.field--taxonomy-terms .field-item--taxonomy-term {
  display: block;
  float: left;
}
.field--taxonomy-terms .taxonomy-term {
  display: block;
}
.field--taxonomy-terms .taxonomy-term {
  font-size: 0.75em;
  padding: 5px 8px;
  text-decoration: none;
  margin: 0.25em;
  background: #333;
  border: 1px solid black;
  color: #003C3C;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.field--taxonomy-terms .taxonomy-term:hover {
  background: #1a1a1a;
  border: 1px solid black;
  color: #003C3C;
}
.field--taxonomy-terms .taxonomy-term:after {
  font-size: 0;
}

/*# sourceMappingURL=base.css.map */
