﻿@charset "UTF-8";
.dots-wrapper {
  width: 1074px;
  margin: auto;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0; }
  @media (max-width: 1180px) {
    .dots-wrapper {
      width: 90%; } }

.dots-container {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 36px;
  z-index: 250;
  opacity: 0;
  -moz-transition: opacity 0.5s ease-in-out 0.4s;
  -o-transition: opacity 0.5s ease-in-out 0.4s;
  -webkit-transition: opacity 0.5s ease-in-out 0.4s;
  transition: opacity 0.5s ease-in-out 0.4s; }
  .dots-container:after {
    content: "";
    display: table;
    clear: both; }
  @media (max-width: 800px) {
    .dots-container {
      bottom: 30px; } }
  .dots-container .owl-dot {
    display: inline-block;
    float: left;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    cursor: pointer; }
    .dots-container .owl-dot span {
      width: 6px;
      height: 6px;
      background: #fff;
      display: inline-block;
      border-radius: 50%;
      margin-top: 1px; }
    .dots-container .owl-dot.active span {
      height: 8px;
      width: 8px;
      margin-top: 0; }

.home-banner .owl-item {
  min-height: 420px !important;
  overflow: hidden;
  opacity: 0;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out; }
  .home-banner .owl-item .section-content {
    opacity: 0;
    -moz-transition: opacity 0.6s ease-in-out 0.45s;
    -o-transition: opacity 0.6s ease-in-out 0.45s;
    -webkit-transition: opacity 0.6s ease-in-out 0.45s;
    transition: opacity 0.6s ease-in-out 0.45s; }
  .home-banner .owl-item.active {
    opacity: 1; }
    .home-banner .owl-item.active .section-content {
      opacity: 1; }

.home-banner .item {
  opacity: 0;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out; }
  .home-banner .item .section-content {
    opacity: 0;
    -moz-transition: opacity 0.6s ease-in-out 0.45s;
    -o-transition: opacity 0.6s ease-in-out 0.45s;
    -webkit-transition: opacity 0.6s ease-in-out 0.45s;
    transition: opacity 0.6s ease-in-out 0.45s; }

.page-loaded .dots-container {
  opacity: 1; }

.page-loaded .home-banner .owl-item, .page-loaded .home-banner .item {
  opacity: 1; }
  .page-loaded .home-banner .owl-item .section-content, .page-loaded .home-banner .item .section-content {
    opacity: 1; }

html {
  background: #eaeaea; }

body {
  box-shadow: 0 0 7px 1px #C3C3C3;
  padding: 0;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #323232;
  background: #fff;
  max-width: 1280px;
  margin: 0 auto;
  min-width: 297px; }

h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  color: #333; }
  @media (max-width: 480px) {
    h2 {
      font-size: 25px; } }

img {
  max-width: 100%;
  outline: none; }

a img {
  border: none; }

.marg-btm {
  margin-bottom: 20px; }

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #ec008c; }

::selection {
  color: #fff;
  background: #ec008c; }

.pink-link {
  color: #E8388D;
  text-decoration: underline; }
  .pink-link:hover {
    color: #ec008c; }

.contact-details h3 {
  color: #323232 !important;
  margin: 20px 0 5px; }

.contact-details a {
  color: #E8388D;
  text-decoration: underline; }
  .contact-details a:hover {
    color: #ec008c; }

.contact-details p {
  margin: 4px 0; }

.contact-details ul {
  padding-left: 20px;
  margin: 0 0 28px; }
  .contact-details ul li {
    margin-bottom: 7px; }

input {
  font-family: "Lato",sans-serif; }
  input::-webkit-input-placeholder {
    color: #8d8d8d; }
  input:-moz-placeholder {
    /* Firefox 18- */
    color: #8d8d8d; }
  input::-moz-placeholder {
    /* Firefox 19+ */
    color: #8d8d8d; }
  input:-ms-input-placeholder {
    color: #8d8d8d; }

input[type="checkbox"] + label, input[type="checkbox"] + input + label {
  font-size: 14px;
  cursor: pointer;
  display: block; }

input[type="checkbox"] + label span, input[type="checkbox"] + input + label span {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin: -1px 8px 0 0;
  vertical-align: middle;
  border: 3px solid #eaeaea;
  background: #ffffff;
  color: #5e606b;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(27, 27, 30, 0.33);
  cursor: pointer; }

input[type="checkbox"]:checked + label span, input[type="checkbox"]:checked + input + label span {
  background: #fff url(/images/tick.png) no-repeat center;
  border-color: #d2d2d2; }

input[type="checkbox"][disabled="disabled"] + label span, input[type="checkbox"][disabled="disabled"] + input + label span {
  background: none;
  border-color: #d2d2d2; }

input[type="checkbox"][disabled="disabled"] + label, input[type="checkbox"][disabled="disabled"] + input + label {
  color: #a1a1a1; }

.radio-btn {
  display: inline-block;
  margin-right: 30px; }
  @media (max-width: 800px) {
    .radio-btn {
      margin-top: 20px; }
      .radio-btn .required {
        top: 38px !important; } }

input[type="radio"] {
  display: none; }

input[type="radio"] + label {
  font-size: 18px;
  cursor: pointer;
  display: block; }

input[type="radio"] + label span, input[type="radio"] + label:before {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: -1px 10px 0 0;
  vertical-align: middle;
  border: 3px solid #eaeaea;
  background: #ffffff;
  color: #5e606b;
  border-radius: 50%;
  box-shadow: 0 0 5px 0 rgba(27, 27, 30, 0.33);
  cursor: pointer; }

input[type="radio"]:checked + label span {
  background: #F342AE url(/images/radiotick.png) no-repeat center;
  border-color: #d2d2d2;
  border: 3px solid #F342AE; }

input, select, textarea {
  outline: none; }

a {
  outline: none;
  color: #323232;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

h1 {
  display: inline-block;
  font-size: 38px;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin: 0 0 48px; }
  @media (max-width: 800px) {
    h1 {
      font-size: 31px;
      margin: 0 0 20px; } }
  @media (max-width: 480px) {
    h1 {
      font-size: 29px;
      line-height: 29px; } }

.content-area a:hover {
  text-decoration: underline; }

.content-area p {
  line-height: 28px; }
  @media (max-width: 550px) {
    .content-area p {
      font-size: 16px;
      line-height: 24px; } }

.breadcrumbs {
  padding: 18px 0 25px; }
  @media (max-width: 800px) {
    .breadcrumbs {
      padding: 11px 0 8px; } }
  .breadcrumbs ul {
    padding: 0;
    margin: 0; }
    .breadcrumbs ul li {
      display: inline-block;
      list-style-type: none;
      font-size: 14px;
      font-weight: bold; }
      @media (max-width: 800px) {
        .breadcrumbs ul li {
          font-size: 11px; } }
      .breadcrumbs ul li:after {
        content: '/';
        display: inline-block;
        margin: 0 6px 0 11px; }
      .breadcrumbs ul li:last-child:after {
        display: none; }
      .breadcrumbs ul li a {
        color: #fff; }

.clearfix:after {
  content: "";
  display: table;
  clear: both; }

.btn-grey-l {
  background: #434343;
  display: inline-block;
  padding: 13px 20px;
  border-bottom: 4px solid #323232;
  color: #fff;
  border-radius: 4px; }
  .btn-grey-l:after {
    display: none; }
  .btn-grey-l:hover {
    background: #525252;
    border-color: #414141; }
  .btn-grey-l.with-arrow {
    position: relative;
    padding-right: 45px; }
    .btn-grey-l.with-arrow:before {
      position: absolute;
      top: 11px;
      right: 14px;
      content: '\f105';
      display: block;
      font-size: 28px;
      font-family: "FontAwesome"; }
  .btn-grey-l.with-back-arrow {
    position: relative;
    padding-left: 45px; }
    .btn-grey-l.with-back-arrow:before {
      position: absolute;
      top: 11px;
      left: 14px;
      content: '\f104';
      display: block;
      font-size: 28px;
      font-family: "FontAwesome"; }

button.btn-grey-l, input[type="button"].btn-grey-l, input[type="submit"].btn-grey-l {
  border-style: none none solid;
  border-width: 0 0 4px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin-top: 25px;
  padding: 12px 42px 12px 17px;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  height: 52px; }

.btn-lightgrey-l {
  background: #747474;
  display: inline-block;
  padding: 13px 20px;
  border-bottom: 4px solid #696969;
  color: #fff;
  border-radius: 4px; }
  .btn-lightgrey-l:after {
    display: none; }
  .btn-lightgrey-l:hover {
    background: #838383;
    border-color: #787878; }
  .btn-lightgrey-l.with-arrow {
    position: relative;
    padding-right: 45px; }
    .btn-lightgrey-l.with-arrow:before {
      position: absolute;
      top: 11px;
      right: 14px;
      content: '\f105';
      display: block;
      font-size: 28px;
      font-family: "FontAwesome"; }

.btn-grey {
  background: #747474;
  padding: 5px 12px 3px;
  border-bottom: 4px solid #696969 !important;
  color: #fff;
  border-radius: 4px; }
  .btn-grey:hover {
    background: #838383;
    color: #fff !important; }

.btn-pink {
  display: inline-block;
  background: #E8388D;
  padding: 13px 20px;
  border-bottom: 4px solid #d41973 !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px; }
  .btn-pink:hover {
    background: #eb539d;
    color: #fff !important; }
  .btn-pink.with-arrow {
    position: relative;
    padding-right: 45px; }
    .btn-pink.with-arrow:before {
      position: absolute;
      top: 11px;
      right: 14px;
      content: '\f105';
      display: block;
      font-size: 28px;
      font-family: "FontAwesome"; }

.green-btn {
  background: #238f23;
  display: inline-block;
  padding: 13px 20px;
  border: none;
  border-bottom: 4px solid #1a801a;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease-in-out; }
  .green-btn:hover {
    background: #28a328; }
  .green-btn.with-arrow {
    position: relative;
    padding-right: 45px; }
  .green-btn.with-arrow:before {
    position: absolute;
    top: 11px;
    right: 14px;
    content: '\f105';
    display: block;
    font-size: 28px;
    font-family: "FontAwesome"; }
  .green-btn.with-back-arrow {
    position: relative;
    padding-left: 45px; }
  .green-btn.with-back-arrow:before {
    position: absolute;
    top: 11px;
    left: 14px;
    content: '\f104';
    display: block;
    font-size: 28px;
    font-family: "FontAwesome"; }

.red-btn {
  background: #d20c0c;
  display: inline-block;
  padding: 13px 20px;
  border: none;
  border-bottom: 4px solid #bc0000;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease-in-out; }
  .red-btn:hover {
    background: #ea0d0d; }
  .red-btn.with-arrow {
    position: relative;
    padding-right: 45px; }
  .red-btn.with-arrow:before {
    position: absolute;
    top: 11px;
    right: 14px;
    content: '\f105';
    display: block;
    font-size: 28px;
    font-family: "FontAwesome"; }
  .red-btn.with-back-arrow {
    position: relative;
    padding-left: 45px; }
  .red-btn.with-back-arrow:before {
    position: absolute;
    top: 11px;
    left: 14px;
    content: '\f104';
    display: block;
    font-size: 28px;
    font-family: "FontAwesome"; }

.amber-btn {
  background: #efa300;
  display: inline-block;
  padding: 13px 20px;
  border: none;
  border-bottom: 4px solid #e19900;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease-in-out; }
  .amber-btn:hover {
    background: #ffb109; }
  .amber-btn.with-arrow {
    position: relative;
    padding-right: 45px; }
  .amber-btn.with-arrow:before {
    position: absolute;
    top: 11px;
    right: 14px;
    content: '\f105';
    display: block;
    font-size: 28px;
    font-family: "FontAwesome"; }
  .amber-btn.with-back-arrow {
    position: relative;
    padding-left: 45px; }
    .amber-btn.with-back-arrow:before {
      position: absolute;
      top: 11px;
      left: 14px;
      content: '\f104';
      display: block;
      font-size: 28px;
      font-family: "FontAwesome"; }

.tooltip-area .tooltip-btn {
  background: url(/images/pink-question-circle.png) no-repeat 0 0;
  width: 32px;
  height: 31px;
  position: absolute;
  top: 10px;
  right: -40px;
  cursor: pointer; }

.tooltip-area .tooltip-text {
  display: none;
  background: #323232;
  color: #fff;
  padding: 12px 16px;
  border-radius: 7px;
  width: 179px;
  font-size: 15px;
  position: absolute;
  top: 0;
  right: -85%;
  z-index: 1000; }
  .tooltip-area .tooltip-text:before {
    position: absolute;
    top: 19px;
    left: -5px;
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 7px 9px 0;
    border-color: transparent #323232 transparent; }

@media (max-width: 991px) {
  .tooltip-area .tooltip-text {
    margin-top: 10px;
    width: 104%;
    font-size: 15px;
    position: relative;
    top: 0;
    right: 0; }
    .tooltip-area .tooltip-text:before {
      display: none; } }

@media (max-width: 800px) {
  .tooltip-area {
    width: 93% !important; }
    .tooltip-area .tooltip-btn {
      right: -9%; } }

@media (max-width: 550px) {
  .tooltip-area {
    width: 89% !important; }
    .tooltip-area .tooltip-btn {
      right: -47px; } }

.column-wrap {
  margin: 0 -20px; }
  .column-wrap:after {
    content: "";
    display: table;
    clear: both; }
  @media (max-width: 700px) {
    .column-wrap {
      margin: 0 -14px; } }
  .column-wrap.with-borders .column-third, .column-wrap.with-borders .column-quarter {
    border-right: 1px solid #d7d7d7; }
    .column-wrap.with-borders .column-third:last-child, .column-wrap.with-borders .column-quarter:last-child {
      border-right: none; }
  .column-wrap .column-third {
    width: 29%;
    padding: 0 2%;
    float: left; }
    .column-wrap .column-third .item-area {
      display: block;
      margin: 0 auto;
      width: 192px;
      text-align: center;
      padding: 15px 0; }
      .column-wrap .column-third .item-area img {
        -moz-transition: transform 0.4s ease-in-out;
        -o-transition: transform 0.4s ease-in-out;
        -webkit-transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out; }
      @media (max-width: 800px) {
        .column-wrap .column-third .item-area {
          width: 100%; }
          .column-wrap .column-third .item-area img {
            width: 50%; } }
      .column-wrap .column-third .item-area:hover {
        color: #E8388D; }
        .column-wrap .column-third .item-area:hover img {
          -moz-transform: scale(1.1);
          -ms-transform: scale(1.1);
          -o-transform: scale(1.1);
          -webkit-transform: scale(1.1);
          transform: scale(1.1); }
    .column-wrap .column-third p {
      font-size: 19px;
      margin-top: 30px;
      font-family: "Open Sans", sans-serif;
      font-weight: 800; }
      @media (max-width: 800px) {
        .column-wrap .column-third p {
          font-size: 18px;
          line-height: 21px;
          margin-top: 17px; } }
      @media (max-width: 480px) {
        .column-wrap .column-third p {
          font-size: 17px; } }
      .column-wrap .column-third p:after {
        content: '\f105';
        font-family: "FontAwesome";
        font-size: 22px;
        color: #E8388D;
        font-weight: normal;
        display: inline-block;
        position: relative;
        left: 7px;
        top: 1px; }
    .column-wrap .column-third .article-area {
      color: #434343; }
      .column-wrap .column-third .article-area img {
        box-shadow: 0 0 3px 1px #CCCCCC; }
      .column-wrap .column-third .article-area:hover {
        color: #999999; }
  .column-wrap .column-quarter {
    width: 22%;
    padding: 0 1%;
    float: left; }
    .column-wrap .column-quarter .item-area {
      display: block;
      margin: 0 auto;
      width: 192px;
      text-align: center;
      padding: 15px 0; }
      .column-wrap .column-quarter .item-area img {
        -moz-transition: transform 0.4s ease-in-out;
        -o-transition: transform 0.4s ease-in-out;
        -webkit-transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out; }
      @media (max-width: 800px) {
        .column-wrap .column-quarter .item-area {
          width: 100%; }
          .column-wrap .column-quarter .item-area img {
            width: 50%; } }
      .column-wrap .column-quarter .item-area:hover {
        color: #E8388D; }
        .column-wrap .column-quarter .item-area:hover img {
          -moz-transform: scale(1.1);
          -ms-transform: scale(1.1);
          -o-transform: scale(1.1);
          -webkit-transform: scale(1.1);
          transform: scale(1.1); }
    .column-wrap .column-quarter p {
      font-size: 19px;
      margin-top: 30px;
      font-family: "Open Sans", sans-serif;
      font-weight: 800; }
      @media (max-width: 800px) {
        .column-wrap .column-quarter p {
          font-size: 18px;
          line-height: 21px;
          margin-top: 17px; } }
      @media (max-width: 480px) {
        .column-wrap .column-quarter p {
          font-size: 17px; } }
      .column-wrap .column-quarter p:after {
        content: '\f105';
        font-family: "FontAwesome";
        font-size: 22px;
        color: #E8388D;
        font-weight: normal;
        display: inline-block;
        position: relative;
        left: 7px;
        top: 1px; }
    .column-wrap .column-quarter .article-area {
      color: #434343; }
      .column-wrap .column-quarter .article-area img {
        box-shadow: 0 0 3px 1px #CCCCCC; }
      .column-wrap .column-quarter .article-area:hover {
        color: #999999; }
  @media (max-width: 550px) {
    .column-wrap.collapse-mob .column-third, .column-wrap.collapse-mob .column-quarter {
      width: 96%;
      float: none; } }

.column-fifth {
  width: 17.75%;
  padding: 0 1%;
  float: left;
  border-right: 1px solid #d7d7d7; }
  @media (max-width: 800px) {
    .column-fifth {
      width: 30.25%;
      margin-bottom: 10px; }
      .column-fifth:nth-child(3) {
        border-right: none; } }
  @media (max-width: 480px) {
    .column-fifth:nth-child(3):after {
      display: block;
      content: ' ';
      clear: both;
      float: left; } }
  .column-fifth:last-child {
    border-right: none; }
  .column-fifth .item-area {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 15px 0; }
    @media (max-width: 800px) {
      .column-fifth .item-area {
        padding: 15px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; } }
    @media (max-width: 380px) {
      .column-fifth .item-area {
        padding: 15px 4px; } }
    .column-fifth .item-area img {
      -moz-transition: transform 0.4s ease-in-out;
      -o-transition: transform 0.4s ease-in-out;
      -webkit-transition: transform 0.4s ease-in-out;
      transition: transform 0.4s ease-in-out; }
    @media (max-width: 800px) {
      .column-fifth .item-area {
        width: 100%; }
        .column-fifth .item-area img {
          width: 50%; } }
    .column-fifth .item-area:hover {
      color: #E8388D; }
      .column-fifth .item-area:hover img {
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1); }
  .column-fifth p {
    font-size: 19px;
    margin-top: 30px;
    font-family: "Open Sans", sans-serif;
    font-weight: 800; }
    @media (max-width: 800px) {
      .column-fifth p {
        font-size: 18px;
        line-height: 21px;
        margin-top: 17px; } }
    @media (max-width: 480px) {
      .column-fifth p {
        font-size: 17px; } }
    @media (max-width: 380px) {
      .column-fifth p {
        font-size: 15px; } }
    .column-fifth p:after {
      content: '\f105';
      font-family: "FontAwesome";
      font-size: 22px;
      color: #E8388D;
      font-weight: normal;
      display: inline-block;
      position: relative;
      left: 7px;
      top: 1px; }
  .column-fifth .article-area {
    color: #434343; }
    @media (max-width: 800px) {
      .column-fifth .article-area {
        color: #cccccc; } }
    .column-fifth .article-area:hover {
      color: #999999; }

.container {
  width: 1073px;
  margin: 0 auto; }
  @media (max-width: 1180px) {
    .container {
      width: 100%; } }

.inner-container {
  width: 100%;
  /*! margin: 0 auto; */ }
  @media (max-width: 1180px) {
    .inner-container {
      padding: 0 36px;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; } }
  @media (max-width: 800px) {
    .inner-container {
      padding: 0 19px; } }

.steps {
  background: #F9F9F9;
  margin: -22px -35px 32px;
  padding: 24px 30px; }
  .steps ul {
    padding: 0;
    margin: 0; }
    .steps ul li {
      position: relative;
      list-style-type: none;
      display: inline-block;
      color: #000;
      font-size: 14px;
      font-weight: 800;
      background: #F0F0F0;
      border-radius: 31px;
      padding: 11px 28px 12px;
      text-align: center;
      border: 3px solid #E4E4E4;
      margin-right: 18px;
      -moz-background-clip: padding-box;
      -webkit-background-clip: padding-box;
      background-clip: padding-box; }
      .steps ul li:last-child {
        margin-right: 0; }
        .steps ul li:last-child:after {
          display: none; }
      .steps ul li:after {
        position: absolute;
        top: 50%;
        margin-top: -4px;
        right: -28px;
        content: ' ';
        display: block;
        height: 3px;
        width: 28px;
        border-bottom: 3px solid #E4E4E4; }
      .steps ul li.active {
        background: #fff; }
      .steps ul li span {
        display: none; }
  @media (max-width: 800px) {
    .steps ul li {
      padding: 7px 9px 8px;
      margin-right: 5px; } }
  @media (max-width: 480px) {
    .steps {
      padding: 18px 30px; }
      .steps ul li {
        display: none;
        font-size: 16px; }
        .steps ul li.active {
          display: block; }
          .steps ul li.active:after {
            display: none; }
        .steps ul li span {
          display: block;
          font-size: 11px; } }

.tablecontainer {
  margin: -5px -5px 25px;
  overflow: auto;
  padding: 5px; }
  .tablecontainer .table {
    margin: 0; }

table {
  border: 1px solid #ccc;
  width: 100%;
  margin: 0 0 30px;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 #909090;
  background: #fff; }
  table thead {
    background: #f2f2f2;
    font-weight: 800;
    font-family: "Open Sans", sans-serif;
    font-size: 19px; }
  table tr {
    border: 1px solid #ddd;
    padding: 5px; }
  table th, table td {
    padding: 14px;
    border-right: 1px solid #ddd;
    vertical-align: baseline; }
  table.table-left th {
    font-weight: bold;
    font-size: 17.5px;
    font-family: "Open Sans", sans-serif;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
    width: 140px;
    border-right: 1px solid #ddd; }

.white-left table th, .white-left table td {
  padding: 10px; }

.white-left table thead {
  font-size: 15px; }

@media (max-width: 800px) {
  table {
    border: 0; }
    table thead {
      display: none; }
    table tbody tr td:first-child {
      background: #f2f2f2 none repeat scroll 0 0;
      font-weight: bold;
      margin: -5px -5px 0;
      padding: 10px 15px; }
    table tr {
      display: block;
      border-bottom: 2px solid #ddd; }
    table td, table th {
      display: block;
      border-bottom: 1px dotted #ccc;
      border-right: none; }
    table td:last-child {
      border-bottom: 0; }
    table td:before {
      content: attr(data-label);
      display: block;
      margin: 0 0 5px;
      font-weight: bold; }
    table.table-left th {
      font-weight: bold;
      font-size: 17.5px;
      font-family: "Open Sans", sans-serif;
      text-transform: none;
      letter-spacing: normal;
      text-align: left;
      width: 100%;
      display: block;
      border-right: none;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    table.table-left td {
      text-align: left; } }

@media (max-width: 480px) {
  table td {
    font-size: 16px; }
  table.table-left th {
    font-size: 16px;
    padding-bottom: 0; } }

@media (max-width: 800px) {
  .imagecontainer {
    width: 70%;
    margin: auto; }
  .img-preview {
    margin: 0 0 0 15%; } }

.photoframe {
  overflow: hidden; }

.imagecontainer {
  display: none; }

.img-preview {
  width: 100px;
  height: 100px;
  overflow: hidden; }

.availableAddresses {
  background: #fff none repeat scroll 0 0;
  border: 3px solid #eaeaea;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(27, 27, 30, 0.33);
  height: 110px;
  margin: 20px 0;
  overflow: auto;
  padding: 0 10px; }
  .availableAddresses div {
    cursor: pointer;
    margin: 8px 0; }
    .availableAddresses div:hover {
      background-color: #3875d7;
      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
      background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
      background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
      background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
      background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
      color: #fff; }

.postcodeControls {
  padding: 15px 0; }

.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(58, 102, 167, 0.2);
  border-right: 1.1em solid rgba(58, 102, 167, 0.2);
  border-bottom: 1.1em solid rgba(58, 102, 167, 0.2);
  border-left: 1.1em solid #3a66a7;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  overflow: hidden; }

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.ui-dialog-content.ui-widget-content {
  font-size: 15px; }

@media (min-width: 800px) {
  img.card {
    float: right;
    margin: 0 0 10px 10px; } }

header {
  background: #323232;
  padding-bottom: 24px;
  position: relative;
  font-family: "Open Sans", sans-serif; }
  header:after {
    content: "";
    display: table;
    clear: both; }
  @media (max-width: 800px) {
    header {
      height: 74px;
      padding-bottom: 0;
      background: #000; } }
  header .logo {
    display: inline-block;
    margin-top: 17px; }
    @media (max-width: 1180px) {
      header .logo {
        margin-top: 10px; } }
    @media (max-width: 800px) {
      header .logo {
        width: 40px;
        position: absolute;
        top: 0;
        left: 16px; } }
  header .menu-btn {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 74px;
    height: 74px;
    background: #999;
    cursor: pointer; }
    header .menu-btn .line {
      display: block;
      width: 25px;
      height: 3px;
      background: #fff;
      position: absolute;
      top: 19px;
      left: 25px;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      header .menu-btn .line.two {
        top: 26px; }
      header .menu-btn .line.three {
        top: 33px; }
    header .menu-btn:hover .line.one {
      -moz-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
      -o-transform: translateY(-2px);
      -webkit-transform: translateY(-2px);
      transform: translateY(-2px); }
    header .menu-btn:hover .line.three {
      -moz-transform: translateY(2px);
      -ms-transform: translateY(2px);
      -o-transform: translateY(2px);
      -webkit-transform: translateY(2px);
      transform: translateY(2px); }
    header .menu-btn.active .line.one {
      -moz-transform: rotateZ(48deg) translateY(5px) translateX(5px);
      -ms-transform: rotateZ(48deg) translateY(5px) translateX(5px);
      -o-transform: rotateZ(48deg) translateY(5px) translateX(5px);
      -webkit-transform: rotateZ(48deg) translateY(5px) translateX(5px);
      transform: rotateZ(48deg) translateY(5px) translateX(5px); }
    header .menu-btn.active .line.two {
      opacity: 0; }
    header .menu-btn.active .line.three {
      -moz-transform: rotateZ(-49deg) translateX(5px) translateY(-5px);
      -ms-transform: rotateZ(-49deg) translateX(5px) translateY(-5px);
      -o-transform: rotateZ(-49deg) translateX(5px) translateY(-5px);
      -webkit-transform: rotateZ(-49deg) translateX(5px) translateY(-5px);
      transform: rotateZ(-49deg) translateX(5px) translateY(-5px); }
    header .menu-btn .text {
      color: #fff;
      position: absolute;
      font-weight: 800;
      bottom: 13px;
      font-size: 14px;
      left: 17px; }
    @media (max-width: 800px) {
      header .menu-btn {
        display: block; } }
  header .right-header {
    float: right;
    width: 750px;
    text-align: right;
    position: relative; }
    @media (max-width: 1180px) {
      header .right-header {
        width: 76%; } }
    header .right-header .top-links {
      font-size: 16px;
      margin-top: 32px; }
      header .right-header .top-links ul li {
        margin-right: 38px; }
        header .right-header .top-links ul li a {
          color: #fff;
          -moz-transition: background 0.25s ease-in-out;
          -o-transition: background 0.25s ease-in-out;
          -webkit-transition: background 0.25s ease-in-out;
          transition: background 0.25s ease-in-out; }
          header .right-header .top-links ul li a:hover {
            border-bottom: 1px solid #999999; }
        header .right-header .top-links ul li.active a {
          border-bottom: 1px solid #999999;
          color: #fff; }
          @media (max-width: 800px) {
            header .right-header .top-links ul li.active a {
              border-bottom: none; } }
        header .right-header .top-links ul li:last-child {
          margin-right: 0; }
      @media (max-width: 1180px) {
        header .right-header .top-links {
          font-size: 15px; }
          header .right-header .top-links ul li {
            margin-right: 18px; } }
      @media (max-width: 800px) {
        header .right-header .top-links ul li .btn-grey {
          border: none !important; } }
    header .right-header nav {
      font-size: 22px;
      font-weight: bold;
      position: absolute;
      top: 91px;
      right: 0; }
      @media (max-width: 1180px) {
        header .right-header nav {
          top: 86px; } }
      header .right-header nav ul li {
        margin-right: 38px; }
        header .right-header nav ul li.active {
          position: relative; }
          header .right-header nav ul li.active a:after {
            opacity: 1;
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            -webkit-transform: translateY(0);
            transform: translateY(0); }
        header .right-header nav ul li:last-child {
          margin-right: 0; }
        header .right-header nav ul li a {
          color: #fff;
          position: relative; }
          header .right-header nav ul li a:after {
            opacity: 0;
            -moz-transform: translateY(6px);
            -ms-transform: translateY(6px);
            -o-transform: translateY(6px);
            -webkit-transform: translateY(6px);
            transform: translateY(6px);
            position: absolute;
            content: ' ';
            background: #999;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
          header .right-header nav ul li a:hover:after {
            opacity: 1;
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            -webkit-transform: translateY(0);
            transform: translateY(0); }
      @media (max-width: 1180px) {
        header .right-header nav {
          font-size: 19px; }
          header .right-header nav ul li {
            margin-right: 12px; } }
    header .right-header ul {
      padding: 0;
      margin: 0; }
      header .right-header ul li {
        list-style-type: none;
        display: inline-block; }
    @media (max-width: 800px) {
      header .right-header {
        display: none;
        width: 100%;
        z-index: 300;
        background: #999;
        position: absolute;
        top: 100%;
        float: none;
        left: 0;
        text-align: left; }
        header .right-header .top-links {
          margin-top: 0;
          padding: 14px 12px 25px; }
          header .right-header .top-links ul li {
            margin-right: 0;
            margin: 6px 0; }
            header .right-header .top-links ul li a {
              display: block; }
              header .right-header .top-links ul li a:hover {
                color: #fff;
                border: none; }
              header .right-header .top-links ul li a.btn-pink {
                display: inline-block;
                margin-top: 15px; }
                header .right-header .top-links ul li a.btn-pink:hover {
                  background: #f75ebb;
                  color: #fff !important; }
              header .right-header .top-links ul li a.btn-grey {
                background: none;
                border: none;
                padding: 0;
                color: #fff; }
        header .right-header nav {
          margin-top: 0;
          position: relative;
          top: 0;
          left: 0;
          padding: 14px 12px 0; }
          header .right-header nav ul li {
            border-bottom: 1px solid #B3B3B3;
            padding: 5px 0;
            margin-right: 0; }
            header .right-header nav ul li a {
              color: #fff;
              display: block; }
        header .right-header ul li {
          display: block; }
          header .right-header ul li a {
            color: #fff; }
            header .right-header ul li a.btn-light-blue:hover {
              color: #fff !important; }
            header .right-header ul li a:after {
              display: none; } }

@media (max-width: 480px) {
  .btn-lightgrey-l {
    font-size: 16px; } }

.card-item {
  position: relative;
  padding-right: 300px; }
  @media (max-width: 800px) {
    .card-item {
      padding-right: 0;
      text-align: center; } }
  .card-item .mcard {
    position: absolute;
    top: 0;
    right: 0; }
    @media (max-width: 800px) {
      .card-item .mcard {
        position: relative;
        width: 200px;
        margin: 30px auto;
        top: 0; } }

.card-row {
  display: table;
  width: 100%;
  background: #fff;
  border: 1px solid #d3d3d3;
  height: 89px;
  margin-bottom: 20px; }
  .card-row .type-of-card {
    position: relative;
    width: 60%;
    display: table-cell;
    vertical-align: top;
    border-right: 1px solid #d3d3d3;
    font-weight: 800;
    font-family: "Open Sans", sans-serif;
    padding: 15px; }
  .card-row .card-button {
    width: 17%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 5px 10px; }
    .card-row .card-button a {
      padding: 4px 20px;
      color: #fff; }
  .card-row .card-view {
    width: 118px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 32px; }
  @media (max-width: 800px) {
    .card-row .type-of-card {
      width: 72%; }
    .card-row .card-view {
      margin-top: 8px;
      position: relative;
      top: 0;
      left: 0;
      text-align: left; }
    .card-row .card-button {
      width: 28%; } }
  @media (max-width: 480px) {
    .card-row {
      height: auto; }
      .card-row .type-of-card {
        width: 55%; }
      .card-row .card-button {
        width: 45%; } }

footer {
  background: #323232;
  padding: 48px 0 37px 0;
  font-family: "Open Sans", sans-serif; }
  @media (max-width: 1180px) {
    footer {
      padding: 33px 0 27px 0; } }
  @media (max-width: 550px) {
    footer {
      padding: 33px 0;
      text-align: center; } }
  footer a {
    color: #fff; }
  footer .left-footer {
    float: left;
    /*! width: 66%; */ }
    @media (max-width: 800px) {
      footer .left-footer {
        width: 52%; } }
    @media (max-width: 550px) {
      footer .left-footer {
        width: 100%;
        float: none; } }
  footer .right-footer {
    float: right;
    text-align: right;
    width: 34%; }
    @media (max-width: 800px) {
      footer .right-footer {
        width: 45%; } }
    @media (max-width: 550px) {
      footer .right-footer {
        width: 100%;
        text-align: center;
        float: none; } }
  footer ul {
    padding: 0;
    margin: 0;
    margin-bottom: 12px; }
    footer ul:after {
      content: "";
      display: table;
      clear: both; }
    footer ul li {
      display: inline-block;
      list-style-type: none;
      margin-right: 31px;
      font-size: 16px; }
      @media (max-width: 1180px) {
        footer ul li {
          margin-right: 17px;
          font-size: 14px; } }
      @media (max-width: 800px) {
        footer ul li {
          margin-right: 12px;
          font-size: 13px;
          line-height: 22px; } }
      footer ul li:last-child {
        margin-right: 0; }
      footer ul li a {
        color: #fff;
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
        transition: none; }
        footer ul li a:hover {
          border-bottom: 1px solid #999999; }
  footer .social .icon {
    display: inline-block;
    margin-left: 14px;
    position: relative;
    width: 54px;
    height: 54px;
    text-align: center;
    border-radius: 50%;
    -moz-transition: transform ease-out 0.1s;
    -o-transition: transform ease-out 0.1s;
    -webkit-transition: transform ease-out 0.1s;
    transition: transform ease-out 0.1s; }
    @media (max-width: 550px) {
      footer .social .icon {
        box-shadow: none; } }
    footer .social .icon:after {
      top: 0;
      left: 0;
      padding: 0;
      z-index: -1;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
      opacity: 0;
      -webkit-transform: scale(0.9);
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -o-transform: scale(0.9);
      transform: scale(0.9);
      pointer-events: none;
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      content: '';
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      box-sizing: content-box; }
    footer .social .icon:hover {
      -webkit-transform: scale(0.93);
      -moz-transform: scale(0.93);
      -ms-transform: scale(0.93);
      -o-transform: scale(0.93);
      transform: scale(0.93); }
    footer .social .icon.facebook {
      background: #374a8e url(/images/facebook-icon.png) no-repeat center; }
      footer .social .icon.facebook:hover:after {
        -moz-animation: sonarEffectFacebook 1.3s ease-out 75ms;
        -o-animation: sonarEffectFacebook 1.3s ease-out 75ms;
        -webkit-animation: sonarEffectFacebook 1.3s ease-out 75ms;
        animation: sonarEffectFacebook 1.3s ease-out 75ms; }
    footer .social .icon.twitter {
      background: #00a8ea url(/images/twitter-icon.png) no-repeat 11px center; }
      footer .social .icon.twitter:hover:after {
        -moz-animation: sonarEffectTwitter 1.3s ease-out 75ms;
        -o-animation: sonarEffectTwitter 1.3s ease-out 75ms;
        -webkit-animation: sonarEffectTwitter 1.3s ease-out 75ms;
        animation: sonarEffectTwitter 1.3s ease-out 75ms; }
    footer .social .icon.youtube {
      background: #db0042 url(/images/youtube-icon.png) no-repeat center; }
      footer .social .icon.youtube:hover:after {
        -moz-animation: sonarEffectYoutube 1.3s ease-out 75ms;
        -o-animation: sonarEffectYoutube 1.3s ease-out 75ms;
        -webkit-animation: sonarEffectYoutube 1.3s ease-out 75ms;
        animation: sonarEffectYoutube 1.3s ease-out 75ms; }
  @media (max-width: 550px) {
    footer .social {
      text-align: center;
      margin-bottom: 18px; } }
  footer .bottom-links {
    margin-top: 10px; }
    footer .bottom-links:after {
      content: "";
      display: table;
      clear: both; }
    @media (max-width: 800px) {
      footer .bottom-links {
        margin-top: 0; } }
    footer .bottom-links ul li {
      font-size: 12px;
      line-height: 22px; }
      @media (max-width: 800px) {
        footer .bottom-links ul li {
          font-size: 13px; } }
    footer .bottom-links .headland {
      color: #fff;
      font-size: 12px; }
      footer .bottom-links .headland a:hover {
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
        transition: none;
        border-bottom: 1px solid #999999; }
      @media (max-width: 800px) {
        footer .bottom-links .headland {
          font-size: 13px; } }
      @media (max-width: 550px) {
        footer .bottom-links .headland {
          margin-top: 20px; } }

@-webkit-keyframes sonarEffectFacebook {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #374a8e, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #374a8e, 0 0 0 6px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.2);
    opacity: 0; } }

@-moz-keyframes sonarEffectFacebook {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #374a8e, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #374a8e, 0 0 0 6px rgba(255, 255, 255, 0.5);
    -moz-transform: scale(1.2);
    opacity: 0; } }

@keyframes sonarEffectFacebook {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #374a8e, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #374a8e, 0 0 0 6px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
    opacity: 0; } }

@-webkit-keyframes sonarEffectTwitter {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #00a8ea, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #00a8ea, 0 0 0 6px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.2);
    opacity: 0; } }

@-moz-keyframes sonarEffectTwitter {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #00a8ea, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #00a8ea, 0 0 0 6px rgba(255, 255, 255, 0.5);
    -moz-transform: scale(1.2);
    opacity: 0; } }

@keyframes sonarEffectTwitter {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #00a8ea, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #00a8ea, 0 0 0 6px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
    opacity: 0; } }

@-webkit-keyframes sonarEffectYoutube {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #db0042, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #db0042, 0 0 0 6px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.2);
    opacity: 0; } }

@-moz-keyframes sonarEffectYoutube {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #db0042, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #db0042, 0 0 0 6px rgba(255, 255, 255, 0.5);
    -moz-transform: scale(1.2);
    opacity: 0; } }

@keyframes sonarEffectYoutube {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #db0042, 0 0 0 6px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px #db0042, 0 0 0 6px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
    opacity: 0; } }

.required {
  color: #ec008c;
  font-weight: bold;
  font-size: 20px;
  display: inline-block; }

.error {
  color: #ec008c; }

.failure {
  color: #ED1B2D;
  font-weight: bold; }

span.error[style*="inline"] {
  display: block !important;
  padding: 2px 0; }

.grey-box {
  position: relative;
  padding: 34px;
  box-shadow: 0 0 5px 0 #909090;
  margin: 45px -34px;
  border-radius: 4px;
  background: #f0f0f0; }
  @media (min-width: 801px) {
    .grey-box .steps {
      margin: -35px -35px 32px;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px; } }
  .grey-box input[type=checkbox] + label, .grey-box input[type=checkbox] + input + label {
    font-size: 18px; }
    @media (max-width: 550px) {
      .grey-box input[type=checkbox] + label, .grey-box input[type=checkbox] + input + label {
        font-size: 16px; } }
  .grey-box a {
    color: #ec008c; }
  .grey-box .btn-lightgrey-l, .grey-box .btn-grey-l {
    color: #fff; }
  .grey-box .btn-pink, .grey-box .btn-grey-l {
    margin-right: 20px; }
  .grey-box.light {
    background: #f9f9f9; }
  .grey-box.absolute-btm {
    padding-bottom: 106px; }
  .grey-box.left-width {
    float: left;
    width: 57%;
    margin-left: 1%;
    margin-right: 4%; }
  .grey-box .more-link {
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 54px;
    font-size: 16px;
    font-weight: bold; }
    @media (max-width: 800px) {
      .grey-box .more-link {
        position: relative;
        top: 0;
        right: auto;
        left: -7px; } }
    .grey-box .more-link:hover {
      color: #E8388D; }
    .grey-box .more-link:after {
      content: '\f105';
      font-family: "FontAwesome";
      font-size: 22px;
      color: #E8388D;
      font-weight: normal;
      display: inline-block;
      position: absolute;
      right: -20px;
      top: 1px; }
  .grey-box.right-width {
    background: #f9f9f9;
    float: left;
    margin-right: 1%;
    width: 23%; }
  .grey-box h2 {
    margin: 0 0 27px;
    font-size: 30px;
    font-family: "Open Sans", sans-serif;
    color: #333;
    font-weight: 800; }
  .grey-box h3 {
    font-family: "Open Sans", sans-serif;
    color: #333;
    font-weight: 800; }
  .grey-box .right-side .outside-area {
    position: absolute;
    padding: 5px 13px;
    top: 6px;
    left: 105%;
    border-bottom: 3px solid #ec008c; }
    @media (max-width: 800px) {
      .grey-box .right-side .outside-area {
        position: static;
        margin-top: 20px; } }
    @media (max-width: 480px) {
      .grey-box .right-side .outside-area {
        font-size: 15px;
        border-radius: 2px; } }
  @media (max-width: 1180px) {
    .grey-box {
      border-radius: 0;
      margin: 28px 0; }
      .grey-box.left-width {
        width: 56%;
        margin: 37px 2%;
        padding: 22px 3%; }
        .grey-box.left-width .field-area p {
          margin: -8px 0 7px; }
        .grey-box.left-width .field-row .left-side {
          float: none;
          width: 100%; }
        .grey-box.left-width .field-row .right-side {
          float: none;
          width: 100%; }
        .grey-box.left-width .field-row .right-side-only {
          width: 100%;
          margin-left: 0; }
      .grey-box.right-width {
        min-height: 442px;
        margin: 37px 2%;
        width: 24%;
        padding: 22px 3%; } }
  @media (max-width: 800px) {
    .grey-box {
      margin: 28px 0;
      padding: 22px; }
      .grey-box.left-width {
        width: 90%;
        margin: 22px 0;
        padding: 22px 5%;
        float: none;
        border-radius: 0; }
        .grey-box.left-width .field-row .right-side .required {
          left: -13px; }
      .grey-box.right-width {
        width: 90%;
        margin: 22px 0;
        padding: 22px 5%;
        float: none;
        border-radius: 0;
        min-height: 190px; }
        .grey-box.right-width .field-row .right-side .required {
          left: -13px; }
        .grey-box.right-width .field-area p {
          margin: -8px 0 25px; }
      .grey-box h2 {
        margin-bottom: 15px;
        font-size: 30px; } }
  @media (max-width: 480px) {
    .grey-box h2 {
      font-size: 26px; } }

.application-listings {
  margin: 40px 0 50px; }
  .application-listings tbody th, .application-listings tbody td {
    padding: 18px 14px;
    vertical-align: middle; }
  .application-listings td {
    font-size: 18px; }
  .application-listings td:last-child {
    text-align: center; }
    @media (max-width: 800px) {
      .application-listings td:last-child {
        text-align: left; } }
  .application-listings table tr {
    padding: 5px; }
  .application-listings a {
    color: #ec008c;
    text-decoration: underline; }
  .application-listings .btn-pink {
    display: inline-block;
    color: #fff;
    padding: 8px 12px 6px;
    text-decoration: none !important;
    text-align: center; }
  .application-listings.light {
    background: #f9f9f9; }
  .application-listings.absolute-btm {
    padding-bottom: 106px; }
  .application-listings.left-width {
    float: left;
    width: 57%;
    margin-left: 1%;
    margin-right: 4%; }
  .application-listings .more-link {
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 54px;
    font-size: 16px;
    font-weight: bold; }
    @media (max-width: 800px) {
      .application-listings .more-link {
        position: relative;
        top: 0;
        right: auto;
        left: -7px; } }
    .application-listings .more-link:hover {
      color: #E8388D; }
    .application-listings .more-link:after {
      content: '\f105';
      font-family: "FontAwesome";
      font-size: 22px;
      color: #E8388D;
      font-weight: normal;
      display: inline-block;
      position: absolute;
      right: -20px;
      top: 1px; }
  .application-listings.right-width {
    background: #f9f9f9;
    float: left;
    margin-right: 1%;
    width: 23%; }
  .application-listings h2 {
    margin: 0 0 27px;
    font-size: 30px;
    font-family: "Open Sans", sans-serif;
    color: #333;
    font-weight: 800; }
  .application-listings h3 {
    font-family: "Open Sans", sans-serif;
    color: #333;
    font-weight: 800; }
  .application-listings .right-side .outside-area {
    position: absolute;
    padding: 5px 13px;
    top: 6px;
    left: 105%;
    border-bottom: 3px solid #ec008c; }
    @media (max-width: 800px) {
      .application-listings .right-side .outside-area {
        position: static;
        margin-top: 20px; } }
    @media (max-width: 480px) {
      .application-listings .right-side .outside-area {
        font-size: 15px;
        border-radius: 2px; } }
  @media (max-width: 1180px) {
    .application-listings {
      border-radius: 0;
      margin: 28px 0; }
      .application-listings.left-width {
        width: 56%;
        margin: 37px 2%;
        padding: 22px 3%; }
        .application-listings.left-width .field-area p {
          margin: -8px 0 7px; }
        .application-listings.left-width .field-row .left-side {
          float: none;
          width: 100%; }
        .application-listings.left-width .field-row .right-side {
          float: none;
          width: 100%; }
        .application-listings.left-width .field-row .right-side-only {
          width: 100%;
          margin-left: 0; }
      .application-listings.right-width {
        min-height: 442px;
        margin: 37px 2%;
        width: 24%;
        padding: 22px 3%; } }
  @media (max-width: 800px) {
    .application-listings {
      margin: 28px 0;
      padding: 22px; }
      .application-listings.left-width {
        width: 90%;
        margin: 22px 0;
        padding: 22px 5%;
        float: none;
        border-radius: 0; }
        .application-listings.left-width .field-row .right-side .required {
          left: -13px; }
      .application-listings.right-width {
        width: 90%;
        margin: 22px 0;
        padding: 22px 5%;
        float: none;
        border-radius: 0;
        min-height: 190px; }
        .application-listings.right-width .field-row .right-side .required {
          left: -13px; }
        .application-listings.right-width .field-area p {
          margin: -8px 0 25px; }
      .application-listings h2 {
        margin-bottom: 15px;
        font-size: 30px; } }
  @media (max-width: 480px) {
    .application-listings h2 {
      font-size: 26px; } }

.viewed-application .right-side p {
  margin: 10px 0; }

.reject-btn {
  margin-right: 12px; }

.reject-content {
  display: none;
  padding: 20px 0 0; }
  .reject-content .btn-pink {
    margin-top: 35px;
    display: inline-block;
    padding: 13px 20px; }
  .reject-content textarea {
    width: 100%;
    height: 160px; }

.buttons-row {
  margin-bottom: 40px; }
  .buttons-row a {
    text-decoration: none !important;
    margin-right: 15px; }

.align-right {
  text-align: right; }
  @media (max-width: 1180px) {
    .align-right {
      padding-right: 30px; } }
  @media (max-width: 800px) {
    .align-right {
      padding-right: 16px; } }
  .align-right a {
    color: #ec008c; }
    .align-right a .fa {
      margin-right: 5px; }

.application-pagination {
  padding-top: 8px;
  margin-bottom: 36px; }
  .application-pagination:after {
    content: "";
    display: table;
    clear: both; }
  .application-pagination .page-count {
    float: left;
    display: inline-block;
    color: #E8388D;
    font-weight: 800; }
  .application-pagination ul {
    float: right;
    display: inline-block;
    padding: 0;
    margin: 0; }
    .application-pagination ul li {
      list-style-type: none;
      display: inline-block;
      font-weight: 800; }
      .application-pagination ul li a {
        font-size: 18px;
        background: #f341ad;
        display: inline-block;
        color: #fff !important;
        text-decoration: none !important;
        border-bottom: 4px solid #ec008c;
        padding: 2px 10px;
        border-radius: 4px; }
        .application-pagination ul li a:hover {
          background: #cb007c; }
      .application-pagination ul li.arrow a {
        background: #484848;
        border-color: #323232; }
        .application-pagination ul li.arrow a:hover {
          background: #2e2e2e;
          border-color: #454545; }
      .application-pagination ul li.active a {
        background: #D0D0D0;
        border-color: #BBBBBB;
        color: #484848 !important; }
      .application-pagination ul li .list-sep {
        color: #E8388D;
        font-size: 22px;
        position: relative;
        top: -2px; }
      .application-pagination ul li:before {
        display: none; }

.field-area {
  margin-bottom: 37px; }
  .field-area.offer {
    margin: 15px 0 20px; }
  .field-area p {
    margin: -8px 0 25px; }
  .field-area.corporate-ticket .field-row > .chosen-container, .field-area.corporate-ticket .field-row > .chosen-with-drop, .field-area.corporate-ticket .field-row > select {
    width: 260px !important; }

.field-row {
  margin-bottom: 15px; }
  .field-row:after {
    content: "";
    display: table;
    clear: both; }
  .field-row select, .field-row input[type="text"], .field-row input[type="email"], .field-row input[type="search"], .field-row input[type="password"], .field-row textarea {
    display: inline-block;
    height: 47px;
    border: 3px solid #eaeaea;
    background: #ffffff;
    line-height: 20px;
    font-size: 16px;
    padding: 0 10px;
    color: #5e606b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
    -moz-box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
    box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33); }
    .field-row select:focus, .field-row input[type="text"]:focus, .field-row input[type="email"]:focus, .field-row input[type="search"]:focus, .field-row input[type="password"]:focus, .field-row textarea:focus {
      border-color: #d2d2d2; }
  .field-row .security-code input {
    width: 75px !important; }
  .field-row .security-code .code-img {
    display: inline-block;
    position: relative;
    top: 8px;
    left: 8px; }
  .field-row .forgotPassword {
    font-size: 14px;
    display: block;
    color: #ec008c;
    font-weight: bold;
    text-decoration: underline;
    margin-top: 15px !important; }
    .field-row .forgotPassword:hover {
      color: #E8388D; }
  @media (max-width: 800px) {
    .field-row input[type="text"], .field-row input[type="email"], .field-row input[type="search"], .field-row input[type="password"], .field-row textarea {
      width: 94% !important;
      padding: 7px 3%; }
    .field-row .security-code input {
      width: 75px !important; }
    .field-row input[type="checkbox"] + label {
      position: relative;
      padding-left: 36px;
      line-height: 20px;
      margin-top: 24px; }
    .field-row input[type="checkbox"] + label span {
      position: absolute;
      left: 0;
      top: 0; } }
  .field-row .chosen-container, .field-row .chosen-with-drop {
    width: 150px !important;
    height: 47px;
    border: 3px solid #eaeaea;
    background: #ffffff;
    line-height: 20px;
    font-size: 16px;
    color: #5e606b;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(27, 27, 30, 0.33); }
    .field-row .chosen-container .chosen-single, .field-row .chosen-with-drop .chosen-single {
      padding: 7px 10px;
      background: none;
      border: none;
      height: 47px; }
    .field-row .chosen-container .chosen-drop, .field-row .chosen-with-drop .chosen-drop {
      box-shadow: 0 2px 5px 0 rgba(27, 27, 30, 0.33);
      border: none; }
      .field-row .chosen-container .chosen-drop .chosen-results li.highlighted, .field-row .chosen-with-drop .chosen-drop .chosen-results li.highlighted {
        background: #ec008c; }
  .field-row .chosen-container-active.chosen-with-drop .chosen-single {
    background: none;
    border: none; }
  .field-row .chosen-container-single .chosen-single div {
    width: 40px; }
  .field-row .chosen-container-single .chosen-single span {
    height: 100%;
    margin-right: 32px;
    color: #8d8d8d;
    line-height: 33px;
    font-family: "Open Sans", sans-serif; }
  .field-row .chosen-container-single .chosen-single div b {
    background: #F0F0F0 url(/images/selectarrow.png) no-repeat center !important; }
  .field-row .chosen-container-active.chosen-with-drop .chosen-single div b {
    background: #F0F0F0 url(/images/selectarrow.png) no-repeat center !important;
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg); }
  .field-row .wide .chosen-container {
    width: 100% !important; }
  .field-row input[type="text"], .field-row input[type="email"], .field-row input[type="search"], .field-row input[type="password"] {
    width: 291px;
    -webkit-appearance: none; }
  .field-row .upload-file {
    position: relative;
    overflow: hidden;
    padding: 2px 2px; }
    .field-row .upload-file .the_file {
      -webkit-appearance: none;
      -moz-appearance: none;
      position: absolute;
      z-index: 10;
      font-size: 10000px;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      text-indent: -9999px;
      cursor: pointer;
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); }
    .field-row .upload-file input[type="file"]:hover + .style-only button {
      background: #cb007c; }
    .field-row .upload-file .style-only {
      position: relative;
      z-index: 1; }
      .field-row .upload-file .style-only button {
        margin: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 5px;
        border-top-left-radius: 0;
        border-top-right-radius: 5px;
        position: absolute;
        font-size: 17px;
        padding: 13px 41px 10px 15px;
        z-index: 1;
        top: -2px;
        right: 1px;
        border-left: none;
        border-right: 0;
        -moz-transition: background 0.3s ease-in-out;
        -o-transition: background 0.3s ease-in-out;
        -webkit-transition: background 0.3s ease-in-out;
        transition: background 0.3s ease-in-out; }
        .field-row .upload-file .style-only button:before {
          top: 8px; }
        @media (max-width: 800px) {
          .field-row .upload-file .style-only button {
            right: -2px; } }
  .field-row select {
    width: 150px;
    height: 47px;
    color: #8d8d8d;
    padding-right: 46px;
    padding-left: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url(/images/selectarrow.png) no-repeat center right; }
    @media (max-width: 550px) {
      .field-row select {
        background: #fff url(/images/smallselectarrow.png) no-repeat center right; } }
    @media (max-width: 407px) {
      .field-row select {
        padding-right: 18px;
        padding-left: 2%; } }
    @media (max-width: 388px) {
      .field-row select {
        font-size: 14px; } }
    @media (max-width: 355px) {
      .field-row select {
        background: #fff url(/images/smallestselectarrow.png) no-repeat center right; } }
  .field-row .three-select select {
    width: 31%; }
    .field-row .three-select select:first-child {
      margin-right: 2%; }
    .field-row .three-select select:last-child {
      margin-left: 2%; }
  .field-row .three-select .chosen-container {
    width: 29% !important;
    margin-right: 2%; }
    .field-row .three-select .chosen-container:last-child {
      margin-right: 0; }
  @media (max-width: 800px) {
    .field-row .chosen-container .chosen-single, .field-row .chosen-with-drop .chosen-single {
      padding: 7px 5px; }
    .field-row .three-select .chosen-container {
      width: 28% !important; }
    .field-row .chosen-container-single .chosen-single div {
      width: 27px; }
    .field-row .three-select .chosen-container-single .chosen-single span {
      margin-right: 25px;
      text-align: center; } }

  .field-row .left-side {
    float: left;
    width: 225px;
    margin-right: 10px; }
    @media (max-width: 800px) {
      .field-row .left-side {
        float: none;
        width: 100%; } }
.field-row .left-side-long {
    float: left;
    width: 365px;
    margin-right: 10px;
}

    @media (max-width: 800px) {
        .field-row .left-side-long {
            float: none;
            width: 100%;
        } }
  .field-row .right-side {
    position: relative;
    float: left;
    width: 319px; }
    @media (max-width: 800px) {
      .field-row .right-side {
        float: none;
        width: 100%; } }
    .field-row .right-side .required {
      position: absolute;
      top: 16px;
      left: -16px; }
  .field-row .right-side-only {
    position: relative;
    float: left;
    width: 319px;
    margin-left: 235px; }
    @media (max-width: 800px) {
      .field-row .right-side-only {
        float: none;
        width: 100%;
        margin-left: 0; } }
    .field-row .right-side-only a {
      margin-top: 25px; }
  .field-row label {
    font-weight: bold;
    line-height: 47px; }
  .field-row .radio-main-label label {
    line-height: normal; }

.readonlyData {
  line-height: 47px; }

#agePanel img {
  margin: 20px 0 10px; }

#agePanel input[type="text"] {
  margin: 0 10px 0 0;
  width: 6em;
  text-align: center; }
  #agePanel input[type="text"][maxlength="10"] {
    width: 8em; }
  #agePanel input[type="text"][maxlength="7"] {
    width: 7em; }
  #agePanel input[type="text"][maxlength="6"] {
    width: 7em; }
  #agePanel input[type="text"][maxlength="5"] {
    width: 5em; }
  #agePanel input[type="text"][maxlength="3"] {
    width: 4em; }
  #agePanel input[type="text"][maxlength="2"] {
    width: 3em; }
  #agePanel input[type="text"][maxlength="1"] {
    width: 2em; }

.two-full-columns:after {
  content: "";
  display: table;
  clear: both; }

.two-full-columns + .newsletter {
  margin-top: 0; }

.two-full-columns .white-left {
  position: relative;
  width: 66%;
  float: left;
  background: #fff; }
  .two-full-columns .white-left .inner-area {
    min-width: 740px;
    margin-top: 40px;
    width: 100%;
    float: right; }
    @media (max-width: 1300px) {
      .two-full-columns .white-left .inner-area {
        float: none; } }
    @media (max-width: 1180px) {
      .two-full-columns .white-left .inner-area {
        min-width: 0; } }
    @media (max-width: 800px) {
      .two-full-columns .white-left .inner-area {
        float: none; } }
    .two-full-columns .white-left .inner-area .content-region {
      padding-right: 44px;
      color: #000; }
      .two-full-columns .white-left .inner-area .content-region .card-right {
        position: relative;
        padding-right: 304px; }
        @media (max-width: 1180px) {
          .two-full-columns .white-left .inner-area .content-region .card-right {
            padding-right: 224px;
            min-height: 130px; } }
        @media (max-width: 480px) {
          .two-full-columns .white-left .inner-area .content-region .card-right {
            padding-right: 0; } }
        .two-full-columns .white-left .inner-area .content-region .card-right img {
          position: absolute;
          top: 0;
          right: 0; }
          @media (max-width: 1180px) {
            .two-full-columns .white-left .inner-area .content-region .card-right img {
              max-width: 200px; } }
          @media (max-width: 480px) {
            .two-full-columns .white-left .inner-area .content-region .card-right img {
              position: relative;
              margin-bottom: 24px; } }
      .two-full-columns .white-left .inner-area .content-region a {
        color: #ec008c; }
        .two-full-columns .white-left .inner-area .content-region a:hover {
          color: #E8388D; }
      .two-full-columns .white-left .inner-area .content-region ul ul {
        padding-left: 33px;
        margin: 30px 0; }
        .two-full-columns .white-left .inner-area .content-region ul ul li {
          position: relative;
          margin-bottom: 10px;
          list-style-type: none; }
          @media (max-width: 550px) {
            .two-full-columns .white-left .inner-area .content-region ul ul li {
              font-size: 16px;
              line-height: 24px; } }
          .two-full-columns .white-left .inner-area .content-region ul ul li:before {
            content: ' ';
            position: absolute;
            top: 9px;
            left: -22px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #e8388d none repeat scroll 0 0; }

.two-full-columns .grey-right {
  position: relative;
  width: 34%;
  float: left;
  background: #f0f0f0; }
  .two-full-columns .grey-right .inner-area {
    min-width: 284px;
    margin-top: 40px;
    width: 100%;
    float: left; }
    @media (max-width: 1400px) {
      .two-full-columns .grey-right .inner-area {
        min-width: 0; } }
    @media (max-width: 800px) {
      .two-full-columns .grey-right .inner-area {
        float: none;
        margin-top: 0; } }
    .two-full-columns .grey-right .inner-area .content-region {
      padding-left: 44px; }
      .two-full-columns .grey-right .inner-area .content-region ul {
        padding-left: 20px;
        margin: 14px 0 40px; }
        .two-full-columns .grey-right .inner-area .content-region ul li {
          list-style-type: none;
          margin-bottom: 13px; }
          .two-full-columns .grey-right .inner-area .content-region ul li a {
            font-family: "Open Sans", sans-serif;
            font-size: 17.5px;
            font-weight: bold;
            color: #4D4D4D;
            position: relative; }
            .two-full-columns .grey-right .inner-area .content-region ul li a:hover {
              color: #E8388D; }
            .two-full-columns .grey-right .inner-area .content-region ul li a:after {
              position: absolute;
              top: 1px;
              left: -18px;
              font-size: 21px;
              content: '\f105';
              font-family: "FontAwesome";
              color: #E8388D; }
          .two-full-columns .grey-right .inner-area .content-region ul li.active a {
            color: #E8388D; }
        @media (max-width: 800px) {
          .two-full-columns .grey-right .inner-area .content-region ul li {
            margin-bottom: 8px; }
            .two-full-columns .grey-right .inner-area .content-region ul li a {
              font-size: 14.5px; } }
      .two-full-columns .grey-right .inner-area .content-region a + ul {
        margin: 36px 0 10px; }
    .two-full-columns .grey-right .inner-area .btn-grey-l {
      margin-bottom: 20px;
      width: 74%;
      display: block; }
      .two-full-columns .grey-right .inner-area .btn-grey-l:first-child {
        margin-top: 6px; }
      @media (max-width: 865px) {
        .two-full-columns .grey-right .inner-area .btn-grey-l {
          font-size: 16px; }
          .two-full-columns .grey-right .inner-area .btn-grey-l:first-child {
            margin-top: 0; } }

@media (max-width: 800px) {
  .two-full-columns .white-left {
    float: none;
    width: 100%; }
    .two-full-columns .white-left .inner-area .content-region {
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
  .two-full-columns .grey-right {
    float: none;
    width: 100%;
    box-shadow: 0 0 8px 1px #C2C2C2;
    padding: 28px 0 15px;
    margin-top: 28px;
    margin-bottom: 31px; }
    .two-full-columns .grey-right .inner-area .content-region {
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .two-full-columns .grey-right .inner-area .content-region .btn-grey-l {
        width: 216px; } }

section.pink {
  background: #E8388D;
  color: #fff; }
  section.pink.with-bg {
    background: #E8388D url(/images/pink-arrows.jpg) no-repeat center right; }
    @media (max-width: 800px) {
      section.pink.with-bg {
        background-image: none; } }

.content h2 {
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 30px;
  font-family: "Open Sans", sans-serif;
  color: #ec008c;
  font-weight: 800; }

.confirmPrivacy h2 {
  color: inherit; }

section.grey {
  background: #F0F0F0;
  color: #323232;
  margin: 20px 0;
  opacity: 0;
  -moz-transform: translateY(94px);
  -ms-transform: translateY(94px);
  -o-transform: translateY(94px);
  -webkit-transform: translateY(94px);
  transform: translateY(94px);
  -moz-transition: all 0.5s ease-in-out 0.3s;
  -o-transition: all 0.5s ease-in-out 0.3s;
  -webkit-transition: all 0.5s ease-in-out 0.3s;
  transition: all 0.5s ease-in-out 0.3s; }
  @media (max-width: 800px) {
    section.grey {
      margin: 10px 0;
      -moz-transition: none;
      -o-transition: none;
      -webkit-transition: none;
      transition: none;
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1; } }
  section.grey.image-a-side .container {
    padding-bottom: 60px; }
    @media (max-width: 861px) {
      section.grey.image-a-side .container {
        padding-bottom: 45px; } }
    @media (max-width: 700px) {
      section.grey.image-a-side .container {
        padding-bottom: 5px; } }
  section.grey .section-content {
    margin-top: 44px; }
    section.grey .section-content input[type="text"], section.grey .section-content input[type="email"], section.grey .section-content input[type="search"], section.grey .section-content input[type="password"] {
      width: 234px;
      display: block;
      margin-bottom: 18px;
      height: 27px;
      border: 3px solid #eaeaea;
      background: #ffffff;
      line-height: 20px;
      font-size: 16px;
      padding: 7px 10px;
      color: #5e606b;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      border-radius: 5px;
      -webkit-box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
      -moz-box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
      box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33); }
      @media (max-width: 700px) {
        section.grey .section-content input[type="text"], section.grey .section-content input[type="email"], section.grey .section-content input[type="search"], section.grey .section-content input[type="password"] {
          width: 96%; } }
      @media (max-width: 480px) {
        section.grey .section-content input[type="text"], section.grey .section-content input[type="email"], section.grey .section-content input[type="search"], section.grey .section-content input[type="password"] {
          width: 91%; } }
      section.grey .section-content input[type="text"]:focus, section.grey .section-content input[type="email"]:focus, section.grey .section-content input[type="search"]:focus, section.grey .section-content input[type="password"]:focus {
        border-color: #d2d2d2; }
  section.grey .btn-grey-l {
    margin-top: 10px;
    width: 196px; }
    @media (max-width: 861px) {
      section.grey .btn-grey-l {
        font-size: 16px; } }
    @media (max-width: 480px) {
      section.grey .btn-grey-l {
        width: 207px; } }
    section.grey .btn-grey-l:after {
      content: ' ';
      width: 100%;
      height: 100%;
      position: absolute;
      top: -2px;
      z-index: -1;
      left: -2px;
      border: 4px solid #fff;
      border-right: 0;
      border-radius: 7px;
      background: #fff; }

section.main-banner {
  background: #E8388D;
  color: #fff; }
  section.main-banner .section-content {
    margin-top: 38px; }
    @media (max-width: 800px) {
      section.main-banner .section-content {
        margin-top: 25px; } }
  section.main-banner.image-a-side .container {
    padding-bottom: 60px; }
    @media (max-width: 861px) {
      section.main-banner.image-a-side .container {
        padding-bottom: 45px; } }
  @media (max-width: 800px) {
    section.main-banner.image-a-side .owl-item .container {
      padding-bottom: 70px; } }
  section.main-banner .btn-grey-l {
    margin-top: 20px; }
    @media (max-width: 1180px) {
      section.main-banner .btn-grey-l {
        margin-top: 6px; } }
    @media (max-width: 861px) {
      section.main-banner .btn-grey-l {
        font-size: 16px; } }
    section.main-banner .btn-grey-l:after {
      content: ' ';
      width: 100%;
      height: 100%;
      position: absolute;
      top: -2px;
      z-index: -1;
      left: -2px;
      border: 4px solid #fff;
      border-right: 0;
      border-radius: 7px;
      background: #fff; }

.image-a-side {
  min-height: 420px;
  position: relative;
  overflow: hidden; }
  .image-a-side:after {
    content: "";
    display: table;
    clear: both; }
  @media (max-width: 700px) {
    .image-a-side {
      min-height: 0; } }
  .image-a-side .inner-container:after {
    content: "";
    display: table;
    clear: both; }
  .image-a-side .container {
    position: relative;
    z-index: 10;
    padding-bottom: 97px; }
    @media (max-width: 700px) {
      .image-a-side .container {
        padding-bottom: 0; } }
  .image-a-side .section-content {
    width: 48%; }
    .image-a-side .section-content:after {
      content: "";
      display: table;
      clear: both; }
    .image-a-side .section-content.content-right {
      float: right; }
    .image-a-side .section-content h1 {
      margin-bottom: 6px; }
    @media (max-width: 1180px) {
      .image-a-side .section-content {
        width: 44%; } }
    @media (max-width: 870px) {
      .image-a-side .section-content {
        right: 47%; }
        .image-a-side .section-content h1 {
          font-size: 35px; } }
    @media (max-width: 800px) {
      .image-a-side .section-content h1 {
        font-size: 30px; } }
    @media (max-width: 700px) {
      .image-a-side .section-content {
        width: 100%; }
        .image-a-side .section-content h1 {
          line-height: 29px; } }
    @media (max-width: 480px) {
      .image-a-side .section-content h1 {
        font-size: 29px; } }
    .image-a-side .section-content p {
      line-height: 28px; }
      @media (max-width: 1180px) {
        .image-a-side .section-content p {
          line-height: 26px;
          font-size: 15px; } }
  .image-a-side .banner-image-right {
    text-align: right;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    -moz-transition: right 0.3s ease-in-out;
    -o-transition: right 0.3s ease-in-out;
    -webkit-transition: right 0.3s ease-in-out;
    transition: right 0.3s ease-in-out; }
    .image-a-side .banner-image-right img {
      display: block; }
    @media (max-width: 1350px) {
      .image-a-side .banner-image-right {
        right: -73px; } }
    @media (max-width: 1180px) {
      .image-a-side .banner-image-right {
        right: -152px; } }
    @media (max-width: 1180px) {
      .image-a-side .banner-image-right {
        right: -220px; } }
    @media (max-width: 870px) {
      .image-a-side .banner-image-right {
        right: -270px; } }
    @media (max-width: 800px) {
      .image-a-side .banner-image-right {
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
        transition: none;
        right: -302px; } }
    @media (max-width: 700px) {
      .image-a-side .banner-image-right {
        position: relative;
        right: 0; }
        .image-a-side .banner-image-right img {
          width: 100%; } }
    @media (max-width: 630px) {
      .image-a-side .banner-image-right {
        position: relative;
        width: 100%; } }
  .image-a-side .banner-image-left {
    text-align: right;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    -moz-transition: left 0.3s ease-in-out;
    -o-transition: left 0.3s ease-in-out;
    -webkit-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out; }
    @media (max-width: 1350px) {
      .image-a-side .banner-image-left {
        left: -73px; } }
    @media (max-width: 1180px) {
      .image-a-side .banner-image-left {
        left: -152px; } }
    @media (max-width: 1180px) {
      .image-a-side .banner-image-left {
        left: -220px; } }
    @media (max-width: 870px) {
      .image-a-side .banner-image-left {
        left: -270px; } }
    @media (max-width: 800px) {
      .image-a-side .banner-image-left {
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
        transition: none;
        left: -302px; } }
    @media (max-width: 700px) {
      .image-a-side .banner-image-left {
        position: relative;
        left: 0; } }
    @media (max-width: 630px) {
      .image-a-side .banner-image-left {
        position: relative;
        width: 100%; } }

.home-articles {
  padding: 30px 0 90px; }
  .home-articles h3 {
    font-size: 31px;
    line-height: 34px;
    font-weight: 800;
    margin: 30px 0 20px;
    font-family: "Open Sans", sans-serif; }
  .home-articles .column-wrap .column-third p {
    font-weight: normal;
    font-size: 17px;
    margin: 5px 0;
    line-height: 28px;
    color: #000; }
    .home-articles .column-wrap .column-third p:after {
      display: none; }
  .home-articles .btn-grey-l {
    width: 76%;
    margin-top: 32px; }
    @media (max-width: 915px) {
      .home-articles .btn-grey-l {
        font-size: 15px; }
        .home-articles .btn-grey-l:before {
          top: 8px; } }
    @media (max-width: 765px) {
      .home-articles .btn-grey-l {
        font-size: 13px; } }
    @media (max-width: 700px) {
      .home-articles .btn-grey-l {
        font-size: 18px;
        margin-top: 12px;
        width: 200px; } }
    .home-articles .btn-grey-l:after {
      content: ' ';
      width: 100%;
      height: 100%;
      position: absolute;
      top: -2px;
      z-index: -1;
      left: -2px;
      border: 4px solid #fff;
      border-right: 0;
      border-radius: 7px;
      background: #fff; }
  @media (max-width: 900px) {
    .home-articles {
      padding: 35px 0 50px; }
      .home-articles h3 {
        font-size: 22px;
        line-height: 26px;
        font-weight: 800;
        margin: 16px 0; }
      .home-articles .column-wrap .column-third p {
        font-size: 14px;
        line-height: 25px; }
      .home-articles .column-wrap .column-quarter p {
        font-size: 14px;
        line-height: 25px; }
      .home-articles .column-wrap .btn-grey-l {
        margin-top: 14px; } }
  @media (max-width: 900px) and (max-width: 700px) {
    .home-articles {
      padding: 35px 0 0; }
      .home-articles .column-wrap .column-third {
        width: 90%;
        padding: 0 5%; }
        .home-articles .column-wrap .column-third p {
          font-size: 17px;
          line-height: 28px; }
      .home-articles .column-quarter {
        width: 90%;
        padding: 0 5%; }
        .home-articles .column-quarter p {
          font-size: 17px;
          line-height: 28px; } }
  @media (max-width: 900px) {
      .home-articles article {
        margin-bottom: 40px; }
      .home-articles h3 {
        font-size: 31px;
        line-height: 34px;
        font-weight: 800;
        margin: 20px 0; }
      .home-articles .btn-grey-l {
        width: 218px; }
        .home-articles .btn-grey-l:before {
          top: 11px; }
      .home-articles img {
        width: 100%; } }
  @media (max-width: 480px) {
    .home-articles h3 {
      font-size: 25px;
      line-height: 28px;
      font-weight: 800;
      margin: 14px 0; }
    .home-articles .btn-grey-l {
      width: 200px; } }

section.purple {
  background: #655594;
  position: relative;
  color: #fff; }
  section.purple:after {
    content: "";
    display: table;
    clear: both; }
  section.purple h1 {
    margin-top: 40px; }
    @media (max-width: 914px) {
      section.purple h1 {
        font-size: 38px; } }
  section.purple .btn-grey-l {
    margin-top: 10px; }
    @media (max-width: 861px) {
      section.purple .btn-grey-l {
        font-size: 16px;
        margin-bottom: 10px; } }
    section.purple .btn-grey-l:after {
      content: ' ';
      width: 100%;
      height: 100%;
      position: absolute;
      top: -2px;
      z-index: -1;
      left: -2px;
      border: 4px solid #fff;
      border-right: 0;
      border-radius: 7px;
      background: #fff; }

.feedback {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  text-align: center;
  padding: 18px 0 16px;
  background: #f9f9f9;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }
  .feedback:after {
    width: 100%;
    height: 0;
    background: #f580c8;
    z-index: 1;
    content: ' ';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    -moz-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out; }
  .feedback:hover {
    color: #E8388D; }
    .feedback:hover:after {
      height: 8px; }
  .feedback span {
    position: relative;
    display: inline-block;
    font-size: 19px;
    font-family: "Open Sans", sans-serif;
    font-weight: 800; }
    @media (max-width: 480px) {
      .feedback span {
        font-size: 16px; } }
    .feedback span:before {
      content: '\f105';
      font-family: "FontAwesome";
      font-size: 22px;
      color: #F343B0;
      font-weight: normal;
      display: inline-block;
      position: absolute;
      right: -17px;
      top: 0; }
  .feedback .feedback-inner {
    position: relative;
    z-index: 20;
    display: inline-block;
    line-height: 38px; }
    .feedback .feedback-inner:after {
      content: "";
      display: table;
      clear: both; }
    .feedback .feedback-inner img {
      margin-right: 8px; }
    @media (max-width: 380px) {
      .feedback .feedback-inner {
        line-height: 32px; }
        .feedback .feedback-inner img {
          width: 36px; } }
    .feedback .feedback-inner img, .feedback .feedback-inner span {
      float: left; }

.white-grid {
  background: #fff;
  border: 1px solid #D3D3D3;
  display: table;
  width: 100%;
  margin-bottom: 20px; }
  .white-grid:first-of-type {
    margin-top: 30px; }
  .white-grid h3 {
    margin: 0;
    margin-bottom: 4px;
    font-family: "Open Sans", sans-serif;
    font-size: 18.5px;
    color: #2f2f2f;
    font-weight: 800; }
  .white-grid .card-type {
    display: table-cell;
    vertical-align: top;
    max-width: 48%;
    width: 48%;
    padding: 15px;
    padding-bottom: 30px; }
    .white-grid .card-type a {
      margin-left: 6px;
      color: #ec008c;
      text-decoration: underline; }
    .white-grid .card-type .card-details {
      display: inline-block; }
    .white-grid .card-type .card-image {
      margin-top: 6px;
      float: right;
      display: inline-block; }
  .white-grid .button-area {
    padding: 20px 15px;
    width: 18%;
    max-width: 18%;
    border-left: 1px solid #D3D3D3;
    display: table-cell;
    text-align: center;
    vertical-align: top; }
    .white-grid .button-area a {
      margin: 0;
      min-width: 50%; }
    .white-grid .button-area a + a {
      margin: 10px 0 0; }
    .white-grid .button-area .na {
      color: #D7D7D7;
      font-size: 16px; }
  .white-grid .btn-grey-l {
    padding: 5px 14px;
    font-size: 17px;
    border-bottom: 2px solid #ec008c; }
  @media (max-width: 800px) {
    .white-grid {
      display: block; }
      .white-grid .card-type {
        display: block;
        border-bottom: 1px solid #D3D3D3;
        max-width: 100%;
        width: 96%;
        padding: 15px 2%; }
      .white-grid .button-area {
        display: inline-block;
        max-width: none;
        width: 30%;
        min-height: 33px;
        padding: 15px 1.2%; } }
  @media (max-width: 480px) {
    .white-grid .btn-grey-l {
      padding: 4px 11px;
      font-size: 14px;
      border-radius: 2px; }
    .white-grid .card-type {
      font-size: 16px;
      padding: 10px 2%; }
      .white-grid .card-type a {
        font-size: 15px;
        margin-left: 5px; }
      .white-grid .card-type .card-image {
        margin-top: 0;
        float: right;
        display: inline-block;
        width: 72px;
        margin-right: 6px; }
      .white-grid .card-type h3 {
        font-size: 16px;
        margin-bottom: 0; }
    .white-grid .button-area {
      width: 26%;
      min-height: 33px;
      padding: 10px 3%; } }

.drop-button {
  margin-top: 12px;
  cursor: pointer;
  position: relative; }
  .drop-button h2 {
    padding-right: 45px; }
  .drop-button:after {
    content: '\f107';
    font-family: "FontAwesome";
    color: #E8388D;
    font-size: 63px;
    position: absolute;
    top: -16px;
    right: 0; }

.faq-item {
  box-shadow: 0 0 5px 0 #909090;
  border-radius: 2px;
  background: #F4F4F4;
  margin-bottom: 22px;
  padding: 12px 20px 16px; }
  .faq-item .faq {
    position: relative;
    cursor: pointer; }
    .faq-item .faq.open .control {
      -moz-transform: rotateZ(-90deg);
      -ms-transform: rotateZ(-90deg);
      -o-transform: rotateZ(-90deg);
      -webkit-transform: rotateZ(-90deg);
      transform: rotateZ(-90deg); }
      .faq-item .faq.open .control:before {
        opacity: 0; }
  .faq-item .control {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 0;
    height: 36px;
    width: 36px;
    background: #E8388D;
    border-radius: 50%;
    -moz-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out; }
    .faq-item .control:before {
      width: 20px;
      height: 4px;
      content: ' ';
      position: absolute;
      top: 16px;
      right: 8px;
      background: #fff;
      -moz-transition: opacity 0.3s ease-in-out;
      -o-transition: opacity 0.3s ease-in-out;
      -webkit-transition: opacity 0.3s ease-in-out;
      transition: opacity 0.3s ease-in-out; }
    .faq-item .control:after {
      width: 4px;
      height: 20px;
      content: ' ';
      position: absolute;
      top: 8px;
      left: 16px;
      background: #fff; }
  .faq-item h3 {
    margin: 0;
    font-weight: 800;
    font-family: "Open Sans", sans-serif;
    color: #303030;
    padding-right: 90px; }
    @media (max-width: 800px) {
      .faq-item h3 {
        font-size: 20px;
        padding-right: 45px; } }
  .faq-item .faq-drop {
    display: none;
    padding-top: 18px;
    line-height: 30px; }
    @media (max-width: 550px) {
      .faq-item .faq-drop {
        font-size: 16px;
        line-height: 24px; } }

.IE8 .faq-item .faq.open .control:before, .IE9 .faq-item .faq.open .control:before {
  opacity: 1;
  display: block; }

.IE8 .faq-item .faq.open .control:after, .IE9 .faq-item .faq.open .control:after {
  opacity: 0;
  display: none; }

.news-wrap .news-article .btn {
  margin-top: 25px;
  margin-bottom: 12px;
  color: #fff !important;
  text-decoration: none !important; }

.news-wrap .news-article h2 {
  margin-bottom: 10px; }

.news-wrap .news-article span {
  display: block;
  font-size: 13px;
  color: #A8A8A8;
  margin-bottom: 25px; }

.news-wrap .news-item {
  position: relative;
  padding-right: 318px; }
  @media (max-width: 800px) {
    .news-wrap .news-item {
      padding-right: 0; } }
  .news-wrap .news-item .news-img {
    display: inline-block;
    position: absolute;
    top: -10px;
    right: 0; }
    @media (max-width: 800px) {
      .news-wrap .news-item .news-img {
        display: none; } }
  .news-wrap .news-item a {
    text-decoration: none !important; }
    .news-wrap .news-item a:hover h2 {
      color: #333 !important; }
      .news-wrap .news-item a:hover h2:after {
        color: #424242 !important; }
  .news-wrap .news-item h2 {
    margin-bottom: 10px;
    -moz-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
    .news-wrap .news-item h2:after {
      position: relative;
      top: -2px;
      content: '\f105';
      font-family: "FontAwesome";
      color: #E8388D;
      margin-left: 10px;
      font-weight: normal;
      font-size: 22px; }
  .news-wrap .news-item p {
    margin-top: 10px;
    margin-bottom: 15px; }
  .news-wrap .news-item span {
    display: block;
    font-size: 13px;
    color: #A8A8A8; }

.news-wrap .news-pagination {
  padding-top: 8px;
  margin-bottom: 36px; }
  .news-wrap .news-pagination:after {
    content: "";
    display: table;
    clear: both; }
  .news-wrap .news-pagination .page-count {
    float: left;
    display: inline-block;
    color: #E8388D;
    font-weight: 800; }
  .news-wrap .news-pagination ul {
    float: right;
    display: inline-block;
    padding: 0;
    margin: 0; }
    .news-wrap .news-pagination ul li {
      list-style-type: none;
      display: inline-block;
      font-weight: 800; }
      .news-wrap .news-pagination ul li a {
        font-size: 18px;
        background: #f341ad;
        display: inline-block;
        color: #fff !important;
        text-decoration: none !important;
        border-bottom: 4px solid #ec008c;
        padding: 2px 10px;
        border-radius: 4px; }
        .news-wrap .news-pagination ul li a:hover {
          background: #cb007c; }
      .news-wrap .news-pagination ul li.arrow a {
        background: #484848;
        border-color: #323232; }
        .news-wrap .news-pagination ul li.arrow a:hover {
          background: #2e2e2e;
          border-color: #454545; }
      .news-wrap .news-pagination ul li.active a {
        background: #D0D0D0;
        border-color: #BBBBBB;
        color: #484848 !important; }
      .news-wrap .news-pagination ul li .list-sep {
        color: #E8388D;
        font-size: 22px;
        position: relative;
        top: -2px; }
      .news-wrap .news-pagination ul li:before {
        display: none; }

@media (max-width: 480px) {
  .news-wrap .news-pagination ul {
    display: block;
    float: none;
    padding-left: 0 !important; }
  .news-wrap .news-pagination .page-count {
    margin-bottom: 8px;
    display: block;
    float: none; } }

.followSocial {
  margin: 44px 0 0 20px;
  line-height: 27px; }
  @media (max-width: 800px) {
    .followSocial {
      margin: 23px 0 17px 0; } }
  .followSocial a {
    text-decoration: underline; }
    .followSocial a:hover {
      color: #E8388D; }

.application-links {
  margin: 40px 0 0 !important;
  padding: 0 !important; }
  .application-links li {
    display: inline-block;
    margin-bottom: 20px; }
  @media (max-width: 800px) {
    .application-links .application-links li {
      margin-right: 6px; } }
  .application-links li a {
    display: inline-block;
    margin-right: 18px;
    border-bottom: 2px solid #696969;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    background: #747474;
    padding: 5px 12px;
    -moz-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out; }
  .application-links li:hover a {
    background: #838383;
    border-color: #787878;
    color: #fff;
    text-decoration: none; }
  .application-links li.active a {
    background: #424242;
    border-color: #343434; }
  .application-links li:before {
    display: none; }

.application-search .field-row .security-code input {
  width: 110px !important; }

.application-results {
  padding-top: 20px; }
  .application-results .btn-pink {
    margin-bottom: 40px; }

.page-loaded section.grey {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0); }

#upload-demo {
  display: none;
  max-width: 500px;
  height: 500px;
  margin: 60px auto 30px; }
  @media (max-width: 800px) {
    #upload-demo {
      height: 300px; } }

#actions {
  margin-top: 80px; }

.coloured-strip {
  background: #F9F9F9; }
  .coloured-strip h1 {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 442px;
    line-height: 38px; }
    @media (min-width: 800px) {
      .coloured-strip h1 {
        margin: 0 0 66px; } }
    @media (max-width: 1180px) {
      .coloured-strip h1 {
        padding-right: 285px; } }
    @media (max-width: 1000px) {
      .coloured-strip h1 {
        padding-right: 228px; } }
    @media (max-width: 800px) {
      .coloured-strip h1 {
        padding-right: 0; } }
  .coloured-strip + .content-area {
    margin-top: 36px; }
    @media (max-width: 800px) {
      .coloured-strip + .content-area {
        margin-top: 25px; } }
  .coloured-strip + .two-full-columns {
    margin-top: 0; }
  .coloured-strip .container {
    background-image: url(/images/header-savermcard.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 436px 146px; }
    @media (max-width: 1180px) {
      .coloured-strip .container {
        background-position-x: 120%; } }
    @media (max-width: 1000px) {
      .coloured-strip .container {
        background-position-x: 140%; } }
    @media (max-width: 800px) {
      .coloured-strip .container {
        background: none !important; } }
  .coloured-strip .breadcrumbs ul li a {
    color: #333; }

.card-pink .coloured-strip {
  background: #E8388D;
  color: #fff; }
.card-pink .coloured-strip .breadcrumbs ul li a {
    color: #fff; }

.card-pink h2 {
  color: #E8388D; }

.card-pink .white-left .inner-area .content-region ul ul li:before {
  border-radius: 50%;
  background: #E8388D; }

.card-pink .white-left .inner-area .content-region a {
  color: #E8388D; }
  .card-pink .white-left .inner-area .content-region a:hover {
    color: #eb539d; }

.card-pink .grey-right .inner-area .content-region ul li a:after {
  color: #E8388D; }

.card-pink .grey-right .inner-area .content-region ul li a:hover {
  color: #E8388D; }

.card-pink .grey-right .inner-area .content-region ul li.active a {
  color: #E8388D; }

.card-pink .btn-grey-l {
  background: #E8388D;
  border-color: #e52180; }
  .card-pink .btn-grey-l:hover {
    background: #eb539d; }

.card-green .coloured-strip {
  background: #48AB36;
  color: #fff; }
  .card-green .coloured-strip .breadcrumbs ul li a {
    color: #fff; }

.card-green h2 {
  color: #48AB36; }

.card-green .white-left .inner-area .content-region ul ul li:before {
  border-radius: 50%;
  background: #48AB36; }

.card-green .white-left .inner-area .content-region a {
  color: #48AB36; }
  .card-green .white-left .inner-area .content-region a:hover {
    color: #52c23e; }

.card-green .grey-right .inner-area .content-region ul li a:after {
  color: #48AB36; }

.card-green .grey-right .inner-area .content-region ul li a:hover {
  color: #48AB36; }

.card-green .grey-right .inner-area .content-region ul li.active a {
  color: #48AB36; }

.card-green .btn-grey-l {
  background: #48AB36;
  border-color: #409830; }
  .card-green .btn-grey-l:hover {
    background: #52c23e; }

.card-green .coloured-strip .container {
  background-image: url(/images/header-1625.png); }

.card-lightblue .coloured-strip {
  background: #2DB3E8;
  color: #fff; }
  .card-lightblue .coloured-strip .breadcrumbs ul li a {
    color: #fff; }

.card-lightblue h2 {
  color: #2DB3E8; }

.card-lightblue .white-left .inner-area .content-region ul ul li:before {
  border-radius: 50%;
  background: #2DB3E8; }

.card-lightblue .white-left .inner-area .content-region a {
  color: #2DB3E8; }
  .card-lightblue .white-left .inner-area .content-region a:hover {
    color: #49bdeb; }

.card-lightblue .grey-right .inner-area .content-region ul li a:after {
  color: #2DB3E8; }

.card-lightblue .grey-right .inner-area .content-region ul li a:hover {
  color: #2DB3E8; }

.card-lightblue .grey-right .inner-area .content-region ul li.active a {
  color: #2DB3E8; }

.card-lightblue .btn-grey-l {
  background: #2DB3E8;
  border-color: #19a9e3; }
  .card-lightblue .btn-grey-l:hover {
    background: #49bdeb; }

.card-lightblue .coloured-strip .container {
  background-image: url(/images/header-schoolplus.png); }

.card-yellow .coloured-strip {
  background: #F5C300;
  color: #323232; }

.card-yellow .coloured-strip .breadcrumbs ul li a {
    color: #323232; }

.card-yellow h2 {
  color: #F5C300; }

.card-yellow .white-left .inner-area .content-region ul ul li:before {
  border-radius: 50%;
  background: #F5C300; }

.card-yellow .white-left .inner-area .content-region a {
  color: #F5C300; }
  .card-yellow .white-left .inner-area .content-region a:hover {
    color: #ffcf15; }

.card-yellow .grey-right .inner-area .content-region ul li a:after {
  color: #F5C300; }

.card-yellow .grey-right .inner-area .content-region ul li a:hover {
  color: #F5C300; }

.card-yellow .grey-right .inner-area .content-region ul li.active a {
  color: #F5C300; }

.card-yellow .btn-grey-l {
  background: #F5C300;
  border-color: #dcaf00; }
  .card-yellow .btn-grey-l:hover {
    background: #ffcf15; }

.card-yellow .coloured-strip .container {
  background-image: url(/images/header-annual.png); }

.card-purple .coloured-strip {
  background: #303F7A;
  color: #fff; }
  .card-purple .coloured-strip .breadcrumbs ul li a {
    color: #fff; }

.card-purple h2 {
  color: #303F7A; }

.card-purple .white-left .inner-area .content-region ul ul li:before {
  border-radius: 50%;
  background: #303F7A; }

.card-purple .white-left .inner-area .content-region a {
  color: #303F7A; }
  .card-purple .white-left .inner-area .content-region a:hover {
    color: #394a90; }

.card-purple .grey-right .inner-area .content-region ul li a:after {
  color: #303F7A; }

.card-purple .grey-right .inner-area .content-region ul li a:hover {
  color: #303F7A; }

.card-purple .grey-right .inner-area .content-region ul li.active a {
  color: #303F7A; }

.card-purple .btn-grey-l {
  background: #303F7A;
  border-color: #293668; }
  .card-purple .btn-grey-l:hover {
    background: #394a90; }

.card-purple .coloured-strip .container {
  background-image: url(/images/header-concessionary.png); }

.card-lightpurple .coloured-strip {
  background: #683F8B;
  color: #fff; }
  .card-lightpurple .coloured-strip .breadcrumbs ul li a {
    color: #fff; }

.card-lightpurple h2 {
  color: #683F8B; }

.card-lightpurple .white-left .inner-area .content-region ul ul li:before {
  border-radius: 50%;
  background: #683F8B; }

.card-lightpurple .white-left .inner-area .content-region a {
  color: #683F8B; }
  .card-lightpurple .white-left .inner-area .content-region a:hover {
    color: #7849a0; }

.card-lightpurple .grey-right .inner-area .content-region ul li a:after {
  color: #683F8B; }

.card-lightpurple .grey-right .inner-area .content-region ul li a:hover {
  color: #683F8B; }

.card-lightpurple .grey-right .inner-area .content-region ul li.active a {
  color: #683F8B; }

.card-lightpurple .btn-grey-l {
  background: #683F8B;
  border-color: #5b3779; }
  .card-lightpurple .btn-grey-l:hover {
    background: #7849a0; }

.card-lightpurple .coloured-strip .container {
  background-image: url(/images/header-seasontickets.png); }

.card-red .coloured-strip {
  background: #DB0042;
  color: #fff; }
  .card-red .coloured-strip .breadcrumbs ul li a {
    color: #fff; }

.card-red h2 {
  color: #DB0042; }

.card-red .white-left .inner-area .content-region ul ul li:before {
  border-radius: 50%;
  background: #DB0042; }

.card-red .white-left .inner-area .content-region a {
  color: #DB0042; }
  .card-red .white-left .inner-area .content-region a:hover {
    color: #fa004b; }

.card-red .grey-right .inner-area .content-region ul li a:after {
  color: #DB0042; }

.card-red .grey-right .inner-area .content-region ul li a:hover {
  color: #DB0042; }

.card-red .grey-right .inner-area .content-region ul li.active a {
  color: #DB0042; }

.card-red .btn-grey-l {
  background: #DB0042;
  border-color: #c2003a; }
  .card-red .btn-grey-l:hover {
    background: #fa004b; }

.card-red .coloured-strip .container {
  background-image: url(/images/header-dayweekender.png); }

.card-grey .white-left .inner-area .content-region ul li:before {
  border-radius: 50%;
  background: #777777; }

.card-grey .white-left .inner-area .content-region a {
  color: #777777; }
  .card-grey .white-left .inner-area .content-region a:hover {
    color: #868686; }

.card-grey .grey-right .inner-area .content-region ul li a:after {
  color: #777777; }

.card-grey .grey-right .inner-area .content-region ul li a:hover {
  color: #777777; }

.card-grey .coloured-strip .container {
  background-image: url(/images/header-travelcash.png); }

.card-orange .coloured-strip {
    background: #EF7D00;
    color: #fff;
}

.card-orange .coloured-strip .breadcrumbs ul li a {
    color: #fff;
}

.card-orange h1 {
    color: #fff;
}

.card-orange h2 {
    color: #EF7D00;
}

.card-orange .white-left .inner-area .content-region ul ul li:before {
    border-radius: 50%;
    background: #EF7D00;
}

.card-orange .white-left .inner-area .content-region a {
    color: #EF7D00;
}

.card-orange .white-left .inner-area .content-region a:hover {
    color: #EF7D00;
}

.card-orange .grey-right .inner-area .content-region ul li a:after {
    color: #EF7D00;
}

.card-orange .grey-right .inner-area .content-region ul li a:hover {
    color: #EF7D00;
}

.card-orange .grey-right .inner-area .content-region ul li.active a {
    color: #EF7D00;
}

.card-orange .btn-grey-l {
    background: #EF7D00;
    border-color: #EF7D00;
}

.card-orange .btn-grey-l:hover {
    background: #EF7D00;
}

.card-orange .coloured-strip .container {
    background-image: url(/images/header-daysaver.png);
}

.warningcontainer {
  border-radius: 12px;
  margin: 10px 0;
  padding: 0 15px; }

.cal {
  background: #fff; }

.caledge {
  background: #CFCFCF !important; }

.calerror {
  background-color: #FFFFFF !important;
  opacity: 0.5; }
  .calerror:hover {
    background-color: #FFFFFF !important;
    color: #333 !important; }

.caldate {
  padding-bottom: 0.4em;
  padding-left: 0.4em;
  padding-right: 0.4em;
  padding-top: 0.4em;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .caldate a:hover {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #E8388D !important;
    color: #fff !important; }
  .caldate:hover {
    color: #fff !important;
    background: #E8388D !important; }

.calwday {
  padding-bottom: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 0.5em; }

.caldatesel {
  background: #E8388D !important; }
  .caldatesel a {
    color: #fff !important; }

@media (max-width: 800px) {
  .dataelr {
    padding-left: 0; } }

.nondatael ul li {
  color: #323232 !important;
  list-style-type: disc; }

.deletemessagediv input {
  margin-top: 20px !important; }

#body {
  background: none;
  font-size: inherit; }
  #body p {
    color: #323232 !important; }
  #body h1, #body h2, #body h3 {
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 33px;
    line-height: 31px;
    font-family: "Open Sans", sans-serif;
    color: #E8388D;
    font-weight: 800;
    border: none; }
    @media (max-width: 800px) {
      #body h1, #body h2, #body h3 {
        margin-bottom: 15px;
        font-size: 30px; } }
    @media (max-width: 480px) {
      #body h1, #body h2, #body h3 {
        font-size: 26px; } }
  #body input[type="radio"] {
    display: none; }
  #body input[type="radio"] + label {
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 12px; }
  #body input[type="radio"] + label:before {
    content: ' ';
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: -1px 10px 0 0;
    vertical-align: middle;
    border: 3px solid #eaeaea;
    background: #ffffff;
    color: #5e606b;
    border-radius: 50%;
    box-shadow: 0 0 5px 0 rgba(27, 27, 30, 0.33);
    cursor: pointer; }
  #body input[type="radio"]:checked + label:before {
    background: #E8388D url(/images/radiotick.png) no-repeat center;
    border-color: #d2d2d2;
    border: 3px solid #E8388D; }
  #body .navbuttons, #body .genericsubmit {
    cursor: pointer;
    background: #E8388D url(/images/angle-arrow.png) no-repeat 86% 15px;
    display: inline-block;
    border: none;
    padding: 13px 20px;
    border-bottom: 4px solid #ec008c;
    color: #fff;
    border-radius: 4px;
    position: relative;
    padding-right: 45px;
    font-size: inherit;
    font-family: "Lato", sans-serif;
    font-weight: normal;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 24px; }
    @media (max-width: 480px) {
      #body .navbuttons, #body .genericsubmit {
        margin-right: 9px;
        margin-bottom: 10px;
        padding: 13px 17px;
        padding-right: 38px; } }
    #body .navbuttons.previous, #body .genericsubmit.previous {
      background: #E8388D url(/images/angle-arrow-left.png) no-repeat 12% 15px;
      padding: 13px 20px;
      padding-left: 45px; }
      #body .navbuttons.previous:hover, #body .genericsubmit.previous:hover {
        background: #cb007c url(/images/angle-arrow-left.png) no-repeat 12% 15px; }
    #body .navbuttons.cancelbutton, #body .genericsubmit.cancelbutton {
      padding-right: 20px;
      color: #a3a3a3;
      background: #fff;
      border: 2px solid #CFCFCF;
      padding-bottom: 16px; }
      #body .navbuttons.cancelbutton:hover, #body .genericsubmit.cancelbutton:hover {
        color: #fff;
        background: #CFCFCF; }
    #body .navbuttons:hover, #body .genericsubmit:hover {
      background: #cb007c url(/images/angle-arrow.png) no-repeat 86% 15px; }
  #body input {
    -webkit-appearance: none; }
  #body select, #body input[type=text], #body input[type=email], #body input[type=password] {
    display: inline-block;
    margin-bottom: 5px;
    height: 27px;
    border: 3px solid #eaeaea !important;
    background: #ffffff;
    line-height: 20px;
    font-size: 16px;
    padding: 7px 10px;
    color: #5e606b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
    -moz-box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
    box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
    -webkit-appearance: none; }
    @media (max-width: 480px) {
      #body select, #body input[type=text], #body input[type=email], #body input[type=password] {
        width: 96%; } }
    #body select:focus, #body input[type=text]:focus, #body input[type=email]:focus, #body input[type=password]:focus {
      border-color: #d2d2d2 !important; }
  #body select {
    -webkit-appearance: none;
    height: 47px;
    margin-right: 8px;
    background: #fff url(/images/selectarrow.png) no-repeat center right;
    padding-right: 38px;
    width: 107px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #949494; }
    @media (max-width: 480px) {
      #body select {
        width: 100%; } }
    #body select.afselectbox {
      width: 236px !important; }
    @media (max-width: 550px) {
      #body select {
        background: #fff url(/images/smallselectarrow.png) no-repeat center right; } }
    @media (max-width: 480px) {
      #body select {
        background: #fff url(/images/smallestselectarrow.png) no-repeat center right;
        padding: 7px 5px;
        padding-right: 22px;
        width: 71px;
        font-size: 14px; } }
  #body .time select {
    margin-bottom: 15px; }
  #body .datecombo {
    background-image: url(/images/icon-calendar.png);
    background-position: center;
    position: relative;
    top: -6px;
    width: 38px;
    height: 38px;
    display: inline-block; }
    @media (max-width: 480px) {
      #body .datecombo {
        background-size: 23px 23px;
        width: 23px;
        height: 23px;
        top: 1px; } }
  #body .date {
    position: relative; }
    @media (max-width: 480px) {
      #body .date {
        width: 279px; } }
    #body .date input {
      color: #949494;
      margin-left: 0 !important; }
      @media (max-width: 480px) {
        #body .date input {
          font-size: 14px; } }
  #body textarea {
    color: #5e606b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    background: #ffffff;
    line-height: 20px;
    font-size: 16px;
    border: 3px solid #eaeaea !important;
    padding: 7px 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
    -moz-box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33);
    box-shadow: 0px 0px 5px 0px rgba(27, 27, 30, 0.33); }
    #body textarea:focus {
      border-color: #d2d2d2 !important; }

.dataell {
  margin-bottom: 8px !important; }

.af-form-lookup .helptext {
  display: block;
  font-size: 15px;
  font-weight: normal;
  background: #323232;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  margin-top: 8px; }

.leftlabel {
  width: 36.6% !important;
  margin-right: 4% !important; }
  .leftlabel label {
    padding-top: 11px;
    display: block; }
  .leftlabel .helptext, .leftlabel .hidefordom {
    display: block;
    font-size: 15px;
    font-weight: normal;
    background: #323232;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    margin-top: 8px; }
  .leftlabel .hidefordom {
    position: relative;
    width: 100%;
    left: 0; }
  @media (max-width: 800px) {
    .leftlabel {
      width: 100% !important;
      margin-right: 0 !important;
      margin-bottom: 10px !important; } }

@media (max-width: 800px) {
  .lM3rM4 {
    width: 100% !important; } }

.afnavbuttons {
  padding-left: 40.6%;
  margin-bottom: 25px; }
  @media (max-width: 800px) {
    .afnavbuttons {
      padding-left: 0; } }

.nondatael hr {
  display: none; }

.lM1rM4 + .bws.forceclear {
  display: none; }

.fieldlabel.leftlabel {
  font-weight: bold; }

.fieldsetcontrol .multi {
  display: inline-block;
  margin-right: 26px; }
  .fieldsetcontrol .multi:last-child {
    margin-right: 0; }

.nondatael ul {
  margin: 0 !important; }
  @media (max-width: 550px) {
    .nondatael ul {
      padding-left: 20px; } }

.helptext {
  color: #323232;
  font-size: inherit;
  margin-top: 0;
  margin-bottom: 10px;
  list-style-type: disc; }
  @media (max-width: 550px) {
    .helptext {
      font-size: 16px;
      line-height: 24px; } }

div.renderbuttonstable {
  background: none;
  border: none;
  padding: 0; }

.xoomstart, .xoomer, .xoomend, .sectionnametable {
  display: none; }

form .progressbartoptable {
  background: #F9F9F9;
  margin: -22px -34px 32px;
  padding: 24px 34px;
  width: 100%; }
  @media (max-width: 480px) {
    form .progressbartoptable {
      padding: 18px 30px; } }
  form .progressbartoptable .progress0, form .progressbartoptable .progress1 {
    font-family: "Lato", sans-serif !important;
    background: none !important;
    border: none !important;
    text-transform: none !important;
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    padding: 0 !important; }
    @media (max-width: 480px) {
      form .progressbartoptable .progress0, form .progressbartoptable .progress1 {
        font-size: 16px !important; } }
  form .progressbartoptable ol {
    padding: 0;
    margin: 0; }
    form .progressbartoptable ol li {
      position: relative;
      list-style-type: none;
      display: inline-block;
      color: #000;
      font-size: 14px;
      font-weight: 800;
      background: #F0F0F0;
      border-radius: 31px;
      padding: 11px 28px 12px;
      text-align: center;
      border: 3px solid #E4E4E4;
      margin-right: 18px;
      -moz-background-clip: padding-box;
      -webkit-background-clip: padding-box;
      background-clip: padding-box; }
      form .progressbartoptable ol li.activenav {
        background: #fff; }
      form .progressbartoptable ol li:after {
        position: absolute;
        top: 50%;
        margin-top: -4px;
        right: -28px;
        content: ' ';
        display: block;
        height: 3px;
        width: 28px;
        border-bottom: 3px solid #E4E4E4; }
      form .progressbartoptable ol li:last-child:after {
        display: none; }
      @media (max-width: 800px) {
        form .progressbartoptable ol li {
          padding: 10px 9px 12px;
          margin-right: 5px; } }
      @media (max-width: 480px) {
        form .progressbartoptable ol li {
          display: none;
          font-size: 16px; }
          form .progressbartoptable ol li.activenav {
            display: block; }
            form .progressbartoptable ol li.activenav:after {
              display: none; } }

.ektron-ux-UITheme .ui-widget-content a.firmstep_rrc_changer {
  color: #ec008c; }
  .ektron-ux-UITheme .ui-widget-content a.firmstep_rrc_changer:hover {
    color: #E8388D; }

div[aria-describedby="firmstepDialogSelectorElement"], div[aria-describedby="ui-dialog-title-firmstepDialogSelectorElement"] {
  position: absolute;
  z-index: 100000002; }

.IE8 header .right-header nav ul li {
  margin-right: 30px !important; }
  .IE8 header .right-header nav ul li a:after {
    display: none !important; }

.IE8 .btn-grey-l:after {
  display: none !important; }

.IE8 .image-a-side .banner-image-right {
  margin-right: -73px; }

.IE8 .image-a-side .item .container {
  padding-bottom: 60px;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important; }

.IE8 .image-a-side .item .banner-image-right {
  position: relative !important;
  width: 695px !important;
  float: right !important; }

.IE8 .image-a-side .banner-image-left {
  margin-left: -73px; }

.IE8 .field-row .three-select .chosen-container {
  margin-right: 1.8% !important; }

.IE8 input[type=checkbox] {
  display: inline-block !important;
  width: 8%;
  height: 20px; }
  .IE8 input[type=checkbox] + label {
    display: inline-block !important;
    width: 86%;
    line-height: 16px !important; }
    .IE8 input[type=checkbox] + label span {
      display: none !important; }

.IE8 input[type=radio] {
  display: inline-block !important;
  width: 30px;
  height: 15px;
  margin-top: 10px; }
  .IE8 input[type=radio] + label {
    display: inline-block !important;
    width: 40%;
    line-height: 16px !important;
    margin-top: 10px; }
    .IE8 input[type=radio] + label span {
      display: none !important; }

.IE8 footer ul li {
  margin-right: 30px !important; }

.IE8 .feedback .feedback-inner {
  display: inline-block !important;
  width: 350px !important; }

.IE8 section.grey .text-with-big-image {
  top: 16% !important; }

.IE8 section.newsletter .with-arrow.btn-grey-l:before {
  margin-top: -12px !important; }

.IE8 .the_file {
  overflow: hidden !important;
  width: 0 !important;
  height: 0 !important; }

.euPrivacy_cookiesMsg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(1, 38, 81, 0.96);
  font: 14px arial; }

.euPrivacy_cookiesMsgContent {
  position: relative;
  width: 1150px;
  margin: 0 auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.euPrivacy_cookiesMsgText {
  font-family: "Open Sans", Arial;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  padding: 14px 0;
  padding-right: 218px; }

.euPrivacy_cookiesMsgText a {
  color: #fff;
  text-decoration: underline; }

.euPrivacy_cookiesMsgBtn input[type=submit] {
  position: absolute;
  top: 50%;
  margin-top: -23px;
  right: 0;
  background: #E61224;
  color: #fff;
  font-size: 16px;
  font-family: "Open Sans", Arial;
  padding: 10px 16px;
  border-radius: 6px;
  border: 2px solid #fff;
  -moz-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out; }

.euPrivacy_cookiesMsgBtn input[type=submit]:hover {
  background: #ff2538; }

#euPrivacy_cookiesAcceptJavascript {
  display: none; }

p.euPrivacy_javascriptOn {
  display: none; }

@media (max-width: 1280px) {
  .euPrivacy_cookiesMsgContent {
    width: 100%;
    padding: 0 50px; }
  .euPrivacy_cookiesMsgBtn input[type=submit] {
    right: 50px; } }

@media (max-width: 1024px) {
  .euPrivacy_cookiesMsgContent {
    padding: 0 20px; }
  .euPrivacy_cookiesMsgBtn input[type=submit] {
    right: 20px; } }

@media (max-width: 800px) {
  .euPrivacy_cookiesMsg {
    padding: 14px 0;
    text-align: center; }
  .euPrivacy_cookiesMsgContent {
    padding: 0 12px; }
  .euPrivacy_cookiesMsgText {
    padding: 0;
    font-size: 14px; }
  .euPrivacy_cookiesMsgText p {
    margin-top: 0; }
  .euPrivacy_cookiesMsgBtn input[type=submit] {
    position: relative;
    top: 0;
    margin-top: 0;
    right: 0;
    font-size: 14px;
    padding: 7px 14px; } }

/* COOKIES TABLE --------------------------------------*/
.cookiesPage ul {
  margin: 0;
  padding: 0 0 0 16px; }

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.4.2
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2015 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.chosen-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); }

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0; }

.chosen-container a {
  cursor: pointer; }

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999; }

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px; }

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%; }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none; }

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff; }

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4; }

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default; }

.chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666; }

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
  box-shadow: 0 1px 0 #fff inset; }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.chosen-disabled .chosen-single {
  cursor: default; }

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.chosen-rtl .chosen-choices li {
  float: right; }

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl; }

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px; }

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none; }

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  direction: rtl; }

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important; } }

/* @end */
.croppie-container {
  width: 100%;
  height: 100%; }

.croppie-container .cr-image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  max-height: none;
  max-width: none; }

.croppie-container .cr-boundary {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  height: 100%; }

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
  position: absolute;
  border: 2px solid #fff;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
  z-index: 0; }

.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none; }

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all; }

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
  display: block;
  position: absolute;
  box-sizing: border-box;
  border: 1px solid black;
  background: #fff;
  width: 10px;
  height: 10px;
  content: ''; }

.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px; }

.croppie-container .cr-resizer-vertical::after {
  left: 50%;
  margin-left: -5px; }

.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%; }

.croppie-container .cr-resizer-horisontal::after {
  top: 50%;
  margin-top: -5px; }

.croppie-container .cr-original-image {
  display: none; }

.croppie-container .cr-vp-circle {
  border-radius: 50%; }

.croppie-container .cr-overlay {
  z-index: 1;
  position: absolute;
  cursor: move;
  touch-action: none; }

.croppie-container .cr-slider-wrap {
  width: 75%;
  margin: 15px auto;
  text-align: center; }

.croppie-result {
  position: relative;
  overflow: hidden; }

.croppie-result img {
  position: absolute; }

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0); }

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/
.cr-slider {
  -webkit-appearance: none;
  /*removes default webkit styles*/
  /*border: 1px solid white; */
  /*fix for FF unable to apply focus style bug */
  width: 300px;
  /*required for proper track sizing in FF*/
  max-width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: transparent; }

.cr-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 3px; }

.cr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px; }

.cr-slider:focus {
  outline: none; }

/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/
.cr-slider::-moz-range-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 3px; }

.cr-slider::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px; }

/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px; }

.cr-slider::-ms-track {
  width: 100%;
  height: 5px;
  background: transparent;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  border-color: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-width: 6px 0;
  color: transparent;
  /*remove default tick marks*/ }

.cr-slider::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px; }

.cr-slider::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px; }

.cr-slider::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: 1px; }

.cr-slider:focus::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5); }

.cr-slider:focus::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5); }

/*******************************************/
/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
  position: absolute;
  bottom: 5px;
  left: 5px;
  z-index: 1; }

.cr-rotate-controls button {
  border: 0;
  background: none; }

.cr-rotate-controls i:before {
  display: inline-block;
  font-style: normal;
  font-weight: 900;
  font-size: 22px; }

.cr-rotate-l i:before {
  content: '↺'; }

.cr-rotate-r i:before {
  content: '↻'; }

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  transform-style: preserve-3d; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }




/*Styling for the tab focus throughout the site*/


a:hover,
a:focus,
a:active,
.base-link:hover,
.base-link:focus,
.base-link:active {
    
}


a:focus {
    outline-offset: .4rem;
    outline: 3px solid black;
}

a:focus,
.base-link:focus {
    outline-offset: .4rem;
    outline: 3px solid black;
}

a:focus {
    outline-offset: .4rem;
    outline: 3px solid black;
}

p.a:focus {
    outline-offset: .4rem;
    outline: 3px solid #000000;
}


.content-region a {
    text-decoration: none;
    border-bottom: #000000 0.125em solid;
}