.gutter-grid--cols-1 > * {
  width: calc(99.9999% / 1);
}

.gutter-grid--cols-2 > * {
  width: calc(99.9999% / 2);
}

.gutter-grid--cols-2 > .gutter-grid__cell--span-2 {
  width: calc(2 / 2 * 100%);
}

@media (max-width: 600px) {
  .gutter-grid--cols-2:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-3 > * {
  width: calc(99.9999% / 3);
}

.gutter-grid--cols-3 > .gutter-grid__cell--span-2 {
  width: calc(2 / 3 * 100%);
}

.gutter-grid--cols-3 > .gutter-grid__cell--span-3 {
  width: calc(3 / 3 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-3:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-3:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-4 > * {
  width: calc(99.9999% / 4);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-2 {
  width: calc(2 / 4 * 100%);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-3 {
  width: calc(3 / 4 * 100%);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-4 {
  width: calc(4 / 4 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-4:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-4:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-5 > * {
  width: calc(99.9999% / 5);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-2 {
  width: calc(2 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-3 {
  width: calc(3 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-4 {
  width: calc(4 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-5 {
  width: calc(5 / 5 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 3);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-6 > * {
  width: calc(99.9999% / 6);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-2 {
  width: calc(2 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-3 {
  width: calc(3 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-4 {
  width: calc(4 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-5 {
  width: calc(5 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-6 {
  width: calc(6 / 6 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 3);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid {
  -gutter-grid-: grid;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  border: 0 solid transparent;
  display: flex;
  align-content: stretch;
}

.gutter-grid[class*="grid--cols"]:not(.gutter-grid--noWrap) {
  flex-wrap: wrap;
}

.gutter-grid__wrapper {
  padding-bottom: 0.1px;
}

.gutter-grid:not([class*="grid--cols"]):not(.gutter-grid--noStretch):not([class*="grid--align-"]):not([class*="grid--space-"]):not(.gutter-grid--noResize) > .gutter-grid__cell:not(.gutter-grid__cell--noStretch):not(.gutter-grid__cell--noResize) {
  flex-grow: 1;
}

.gutter-grid__cell {
  -gutter-grid-: cell;
  box-sizing: border-box;
  min-width: 0%;
  max-width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  background-clip: padding-box !important;
  border: 0 solid transparent;
}

.gutter-grid__cell[class*="cell--span-"] {
  flex-grow: 1;
}

.gutter-grid__cell.gutter-grid {
  display: flex;
}

.gutter-grid__cell, .gutter-grid__cell * > {
  max-width: 100%;
  flex-shrink: 1;
}

.gutter-grid__inner {
  -gutter-grid-: inner;
  display: block;
  box-sizing: border-box;
}

.gutter-grid--outerGutters {
  margin: 0;
}

.gutter-grid--outerGutters-v {
  margin-top: 0;
  margin-bottom: 0;
}

.gutter-grid--outerGutters-h {
  margin-left: 0;
  margin-right: 0;
}

.gutter-grid--outerGutters-top {
  margin-top: 0;
}

.gutter-grid--outerGutters-bottom {
  margin-bottom: 0;
}

.gutter-grid--outerGutters-left {
  margin-left: 0;
}

.gutter-grid--outerGutters-right {
  margin-right: 0;
}

.gutter-grid--hasInners > * {
  display: flex;
  align-items: stretch;
}

.gutter-grid--hasInners > * > * {
  display: block;
  width: 100%;
}

.gutter-grid--hasInners > * > *.gutter-grid {
  display: flex;
}

.gutter-grid--vAlign-center {
  align-items: center;
}

.gutter-grid--vAlign-top {
  align-items: flex-start;
}

.gutter-grid--vAlign-bottom {
  align-items: flex-end;
}

.gutter-grid--vertical {
  flex-direction: column;
}

.gutter-grid--stretch > * {
  flex-grow: 1;
}

.gutter-grid--noStretch > * {
  flex-grow: 0;
}

.gutter-grid--noShrink > * {
  flex-shrink: 0;
}

.gutter-grid--noResize > * {
  flex-shrink: 0;
  flex-grow: 0;
}

.gutter-grid--mini {
  min-width: 0;
}

@media (max-width: 1200px) {
  .gutter-grid {
    flex-wrap: wrap;
  }
}

.gutter-grid--wrap {
  flex-wrap: wrap;
}

.gutter-grid--noWrap {
  flex-wrap: nowrap;
}

.gutter-grid--space-between > *, .gutter-grid--space-around > * {
  flex-grow: 0;
}

.gutter-grid--space-between {
  justify-content: space-between;
}

.gutter-grid--space-around {
  justify-content: space-around;
}

.gutter-grid--space-evenly {
  justify-content: space-around;
  justify-content: space-evenly;
}

.gutter-grid--align-left > *, .gutter-grid--align-center > *, .gutter-grid--align-right > * {
  flex-grow: 0;
}

.gutter-grid--align-left {
  justify-content: flex-start;
}

.gutter-grid--align-center {
  justify-content: center;
}

.gutter-grid--align-right {
  justify-content: flex-end;
}

.gutter-grid--align-stretch > * {
  flex-grow: 1;
}

.gutter-grid__cell--vAlign-center {
  -ms-grid-row-align: center;
      align-self: center;
}

.gutter-grid__cell--vAlign-top {
  align-self: flex-start;
}

.gutter-grid__cell--vAlign-bottom {
  align-self: flex-end;
}

.gutter-grid__cell--stretch {
  flex-grow: 1;
}

.gutter-grid__cell--noStretch {
  flex-grow: 0;
}

.gutter-grid__cell--noShrink {
  flex-shrink: 0;
}

.gutter-grid__cell--noResize {
  flex-shrink: 0;
  flex-grow: 0;
}

.header .block-system-branding-block {
  width: 100%;
  height: 61px;
  background-color: #d03039;
  padding-top: 10px;
}

.header .block-system-branding-block .layout-center {
  padding-right: 80px;
}

@media (min-width: 769px) {
  .header .block-system-branding-block {
    padding: 0;
    height: 167px;
  }
  .header .block-system-branding-block .layout-center {
    padding-top: 35px;
    padding-bottom: 35px;
    padding-right: 20px;
  }
}

.header .block-system-branding-block .site-logo {
  background-image: url("../../../images/tccl_logo-reverse.png");
  background-size: contain;
  color: transparent;
  width: 122px;
  height: 40px;
  display: block;
  z-index: 500;
  position: relative;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .header .block-system-branding-block .site-logo {
    margin: 0;
    width: 199px;
    height: 65px;
  }
}

.header .login-link-mobile {
  display: block;
  position: absolute;
  background-color: #f02643;
  color: #fff;
  font-family: "Roboto Condensed", Arial, "Nimbus Sans L", sans-serif;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 60px;
  font-size: 14px;
  text-align: center;
}

@media (min-width: 769px) {
  .header .login-link-mobile {
    display: none;
  }
}

.header .login-link-mobile:hover {
  color: #f4f4f4;
}

.header .login-link-mobile .fa-sign-in {
  display: block;
  font-size: 23px;
  padding-top: 8px;
}

.header .mega-menu-wrapper {
  background-color: #d03039;
}

.header__logo {
  float: left;
  margin: 0 10px 0 0;
  padding: 0;
}

[dir="rtl"] .header__logo {
  float: right;
  margin: 0 0 0 10px;
}

.header__logo-image {
  vertical-align: bottom;
}

.header__name-and-slogan {
  float: left;
}

.header__site-name {
  margin: 0;
}

.header__site-link:link, .header__site-link:visited {
  color: #3c3c42;
  text-decoration: none;
}

.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

.header__site-slogan {
  margin: 0;
}

.header__secondary-menu {
  float: right;
}

[dir="rtl"] .header__secondary-menu {
  float: left;
}

.header__region {
  clear: both;
}

.header .page-title-wrapper {
  border-bottom: 1px solid #9a9a9a;
}

.header .page-title-wrapper .page-title {
  margin: 23px 0 15px;
  font-size: 2.25rem;
  line-height: 2.625rem;
  font-weight: 300;
  font-family: "Roboto Condensed", Arial, "Nimbus Sans L", sans-serif;
}

@media (min-width: 769px) {
  .header .page-title-wrapper .page-title {
    font-size: 2.25rem;
    line-height: 2.625rem;
    font-weight: 400;
    font-family: "Roboto Condensed", Arial, "Nimbus Sans L", sans-serif;
  }
}

#block-if-zen-main-menu {
  display: none;
}

@media (min-width: 769px) {
  #block-if-zen-main-menu {
    display: block;
    height: 54px;
    padding: 0;
  }
}

.alert-wrapper {
  margin: 0 auto;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.995rem;
  font-weight: 400;
  font-family: "Roboto Condensed", Arial, "Nimbus Sans L", sans-serif;
  overflow: hidden;
  transition: height 0.3s ease-out;
  height: auto;
}

@media (min-width: 666px) {
  .alert-wrapper {
    -gutter-grid-: grid;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex !important;
    align-content: stretch;
    border-color: transparent;
    flex-wrap: wrap;
    min-width: 100%;
  }
}

@media (min-width: 666px) and (max-width: 960px) {
  .alert-wrapper > * {
    width: calc(99.9999% / 2);
  }
}

@media (min-width: 666px) and (max-width: 600px) {
  .alert-wrapper > * {
    width: calc(99.9999% / 1);
  }
}

.alert-wrapper .alert-link {
  color: #fff;
}

.alert-wrapper .icon,
.alert-wrapper .alert-title-text,
.alert-wrapper .field--name-field-alert-message {
  display: inline-block;
}

.alert-wrapper .alert-title,
.alert-wrapper .alert-content {
  padding: 1rem;
}

@media (min-width: 666px) {
  .alert-wrapper .alert-title,
  .alert-wrapper .alert-content {
    padding: 30px 40px;
  }
}

.alert-wrapper .alert-title {
  text-align: center;
}

@media (min-width: 666px) {
  .alert-wrapper .alert-title {
    flex-grow: 1;
    width: calc(1 / 3 * 100%);
    text-align: right;
  }
}

.alert-wrapper .alert-title.alert {
  background-color: #f02643;
}

.alert-wrapper .alert-title.warning {
  background-color: #9a9a9a;
}

.alert-wrapper .icon--alert-warning {
  margin: -3px 0;
}

.alert-wrapper .alert-title-text {
  padding: 0 20px;
  text-transform: uppercase;
}

.alert-wrapper .alert-content {
  position: relative;
  background-color: #02688b;
}

@media (min-width: 666px) {
  .alert-wrapper .alert-content {
    flex-grow: 1;
    width: calc(2 / 3 * 100%);
  }
}

.alert-wrapper .alert-content p {
  margin: 0;
  width: 85%;
}

.alert-wrapper .alert-content .alert-close {
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 40%;
}

@media (min-width: 960px) {
  .alert-wrapper .alert-content .alert-close {
    right: 3rem;
  }
}

#headerHomeLink > a {
  color: #000;
  text-indent: -1000px;
}

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