/* mixins.scss */
/*  Flexbox  */
.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex-v-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

/* ----------------------------- */
.vertical-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/* ----------------------------- */
.default-transition {
  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease; }

/* ----------------------------- */
.background-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.background-contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }

/* ----------------------------- */
.absolute {
  position: absolute;
  top: 0;
  left: 0; }

/* ----------------------------- */
.crcc-table, .crcc-table * {
  box-sizing: border-box; }

.crcc-table {
  width: 100%;
  font-size: 14px;
  margin: 30px auto; }
  .crcc-table.crcc-6-col .crcc-table-head > span, .crcc-table.crcc-6-col .crcc-table-row > span {
    width: 16.66666666666% !important;
    text-align: center !important; }
  .crcc-table.crcc-3-col .crcc-table-head > span, .crcc-table.crcc-3-col .crcc-table-row > span {
    width: 33.3333% !important;
    text-align: center !important; }
  .crcc-table .crcc-table-head {
    background-color: #272656;
    color: #FFF;
    width: 100%;
    padding: 15px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .crcc-table .crcc-table-head > span {
      width: 20%;
      text-align: center;
      font-weight: 400; }
      .crcc-table .crcc-table-head > span.location-title {
        width: 40%;
        text-align: left; }
  .crcc-table .crcc-table-row {
    background-color: #f7f7f7;
    width: 100%;
    padding: 15px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #FFF; }
    .crcc-table .crcc-table-row > span {
      width: 20%;
      text-align: center;
      font-weight: 300;
      position: relative; }
      .crcc-table .crcc-table-row > span.location {
        width: 40%;
        text-align: left;
        color: #272656;
        font-weight: 500 !important; }
      .crcc-table .crcc-table-row > span .mobile-heading {
        display: none; }
      .crcc-table .crcc-table-row > span.has-footnote:after {
        content: "i";
        background-color: #272656;
        width: 17px;
        line-height: 18px;
        height: 17px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        /* NEW, Spec - Firefox, Chrome, Opera */
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        /* NEW, Spec - Firefox, Chrome, Opera */
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 16px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px;
        display: block;
        margin: 0 auto;
        color: #FFF;
        font-family: Serif; }
      .crcc-table .crcc-table-row > span .footnote {
        background-color: #272656;
        border: 1px solid #FFF;
        color: #FFF;
        font-weight: 200;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.25s ease;
        -o-transition: 0.25s ease;
        transition: 0.25s ease;
        padding: 10px;
        width: 150px;
        height: auto;
        position: absolute;
        bottom: 101%;
        left: 0;
        right: 0;
        margin: 0 auto;
        font-style: normal;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px; }
      .crcc-table .crcc-table-row > span:hover .footnote {
        opacity: 1;
        visibility: visible; }

@media only screen and (max-width: 600px) {
  html body .crcc-table .crcc-table-head, html body .crcc-table.crcc-3-col .crcc-table-head, html body .crcc-table.crcc-6-col .crcc-table-head {
    display: none; }
  html body .crcc-table .crcc-table-row, html body .crcc-table.crcc-3-col .crcc-table-row, html body .crcc-table.crcc-6-col .crcc-table-row {
    border: none;
    margin-bottom: 10px;
    background-color: #f1f1f1;
    border: 1px solid #e4e4e4;
    color: #000;
    padding: 15px 0; }
    html body .crcc-table .crcc-table-row > span, html body .crcc-table.crcc-3-col .crcc-table-row > span, html body .crcc-table.crcc-6-col .crcc-table-row > span {
      width: 100% !important;
      text-align: center !important;
      border-bottom: 1px solid #cecece;
      padding-bottom: 15px;
      margin-bottom: 15px;
      font-size: 18px; }
      html body .crcc-table .crcc-table-row > span:nth-last-child(1), html body .crcc-table.crcc-3-col .crcc-table-row > span:nth-last-child(1), html body .crcc-table.crcc-6-col .crcc-table-row > span:nth-last-child(1) {
        margin-bottom: 0px;
        border: none; }
    html body .crcc-table .crcc-table-row .mobile-heading, html body .crcc-table.crcc-3-col .crcc-table-row .mobile-heading, html body .crcc-table.crcc-6-col .crcc-table-row .mobile-heading {
      display: block;
      font-weight: 400;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: 0.8;
      margin-bottom: 5px;
      color: #272656; }
  html body .crcc-table.crcc-date-table .crcc-table-head {
    display: none; }
  html body .crcc-table.crcc-date-table .crcc-table-row {
    border: none;
    margin-bottom: 10px;
    background-color: #f1f1f1;
    border: 1px solid #e4e4e4;
    color: #000;
    padding: 15px 5px; }
    html body .crcc-table.crcc-date-table .crcc-table-row > span {
      width: 33.3333% !important;
      text-align: center !important;
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
      font-size: 14px; }
      html body .crcc-table.crcc-date-table .crcc-table-row > span:nth-last-child(1) {
        margin-bottom: 0px;
        border: none; }
    html body .crcc-table.crcc-date-table .crcc-table-row .mobile-heading {
      display: block;
      font-weight: 400;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0;
      opacity: 0.8;
      margin-bottom: 5px;
      color: #272656; } }
html body .column_column ul, html body .column_column ol, html body .the_content_wrapper ul, html body .the_content_wrapper ol, html body .gform_wrapper .gfield_required {
  color: #262656; }
html body input[type="date"]:focus, html body input[type="email"]:focus, html body input[type="number"]:focus, html body input[type="password"]:focus, html body input[type="search"]:focus, html body input[type="tel"]:focus, html body input[type="text"]:focus, html body input[type="url"]:focus, html body select:focus, html body textarea:focus {
  border-color: #262656; }
html body a.button_theme, html body a.tp-button.button_theme, html body button, html body input[type="submit"], html body input[type="reset"], html body input[type="button"] {
  background-color: #df211b;
  color: #fff; }

.table-container {
  overflow: initial !important; }

@media only screen and (max-width: 525px) {
  table.acceptance th, table.acceptance td {
    width: 100% !important;
    display: block;
    padding: 10px 0 !important; }

  table.acceptance thead, table.acceptance tbody {
    width: 49% !important;
    display: inline-table; }

  table.acceptance tr td:nth-child(1), table.acceptance tr th:nth-child(1) {
    height: 45px !important; } }

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