/* vendor font locations */
@use "sass:math";
/* media query mixin */
/* get rid of list formatting */
/* prevent long links from breaking out of container */
/* creates a colored circle with an icon in the middle */
/* formats the placeholder text within an input field */
.grayscale {
  filter: grayscale(100%) brightness(1.1); }

.custom-popup {
  font-size: 20px; }

.cc-map-wrap {
  margin-left: -30px;
  margin-right: -30px; }

.cc-map {
  display: flex;
  min-height: 800px; }
  @media (max-width: 991px) {
    .cc-map {
      flex-direction: column;
      min-height: 0; } }
  .cc-map__intro {
    text-align: center;
    color: black;
    padding: 70px 30px; }
    @media (max-width: 575px) {
      .cc-map__intro {
        padding: 50px 30px 25px 30px; } }
    .cc-map__intro img {
      width: 60px;
      height: 60px;
      margin-bottom: 20px; }
    .cc-map__intro p {
      margin-bottom: 0; }
  .cc-map__text {
    display: flex;
    flex-direction: column;
    width: 40%;
    background-color: #0068bd;
    padding: 50px 70px; }
    @media (max-width: 1399px) {
      .cc-map__text {
        padding: 30px; } }
    @media (max-width: 991px) {
      .cc-map__text {
        width: 100%; } }
    .cc-map__text-intro {
      text-align: center;
      color: white;
      margin-bottom: 30px; }
      .cc-map__text-intro img {
        width: 60px;
        height: 60px;
        margin-bottom: 20px; }
      .cc-map__text-intro p {
        font-size: 22px; }
    .cc-map__text-select {
      position: relative;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
      height: 75px;
      flex-shrink: 0;
      margin-bottom: 30px; }
      @media (max-width: 991px) {
        .cc-map__text-select {
          margin-bottom: 0; } }
      @media (max-width: 575px) {
        .cc-map__text-select {
          height: 80px; } }
      .cc-map__text-select label {
        position: absolute;
        top: 13px;
        left: 30px;
        color: #555555;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        line-height: 1; }
        @media (max-width: 575px) {
          .cc-map__text-select label {
            top: 15px;
            left: 20px; } }
      .cc-map__text-select select {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 35px 60px 10px 60px;
        font-size: 20px;
        text-overflow: ellipsis;
        overflow: hidden;
        color: black; }
        @media (max-width: 575px) {
          .cc-map__text-select select {
            font-size: 20px;
            padding: 40px 40px 10px 45px; } }
        @media (min-width: 992px) {
          .cc-map__text-select select:focus-visible {
            outline: 3px solid black; } }
        @media (max-width: 991px) {
          .cc-map__text-select select:focus, .cc-map__text-select select:focus-visible {
            outline: none; } }
      .cc-map__text-select:before {
        content: "";
        position: absolute;
        top: 50px;
        left: 30px;
        width: 18px;
        height: 25px;
        background-image: url("/dist/images/icon-map-pin-black.png");
        background-size: contain;
        background-repeat: no-repeat;
        transform: translateY(-50%);
        pointer-events: none; }
        @media (max-width: 575px) {
          .cc-map__text-select:before {
            top: 55px;
            left: 20px; } }
      .cc-map__text-select:after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50px;
        right: 30px;
        transform: translateY(-50%);
        pointer-events: none;
        font-size: 18px;
        color: #555555; }
        @media (max-width: 575px) {
          .cc-map__text-select:after {
            top: 55px;
            right: 20px; } }
    .cc-map__text-content {
      height: 100%; }
      @media (max-width: 991px) {
        .cc-map__text-content {
          display: none; } }
      .cc-map__text-content--mobile {
        display: none; }
        @media (max-width: 991px) {
          .cc-map__text-content--mobile {
            display: block; } }
    .cc-map__text-box {
      background: white;
      height: 100%;
      border-radius: 10px; }
      .cc-map__text-box-img {
        width: 100%;
        aspect-ratio: 16/7;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px; }
      .cc-map__text-box-content {
        padding: 30px; }
        .cc-map__text-box-content h3 {
          font-size: 24px;
          font-weight: 600;
          margin-bottom: 0; }
          @media (max-width: 991px) {
            .cc-map__text-box-content h3 {
              font-size: 26px; } }
        .cc-map__text-box-content-link {
          margin-bottom: 20px;
          text-decoration: underline;
          font-size: 16px;
          color: #0068bd; }
        .cc-map__text-box-content p {
          text-transform: uppercase;
          font-size: 16px;
          font-weight: 600;
          line-height: 1; }
        .cc-map__text-box-content-routes {
          display: flex;
          gap: 10px;
          flex-wrap: wrap;
          margin-bottom: 20px; }
          .cc-map__text-box-content-routes button {
            border: 1px solid #c3c3c3;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            width: 60px;
            height: 40px;
            color: #0068bd;
            font-size: 18px; }
            .cc-map__text-box-content-routes button:focus-visible {
              outline: 1px solid black; }
        .cc-map__text-box-content .connecting {
          display: block;
          font-size: 16px;
          font-style: italic;
          color: black; }
    .cc-map__text-unselected {
      border: 1px solid white;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 30px;
      text-align: center; }
      @media (max-width: 991px) {
        .cc-map__text-unselected {
          display: none; } }
      .cc-map__text-unselected p {
        font-size: 24px;
        color: white;
        margin-bottom: 0; }
      .cc-map__text-unselected--mobile {
        display: block;
        padding: 50px; }
        .cc-map__text-unselected--mobile p {
          color: #555;
          font-size: 20px; }
  .cc-map__map {
    width: 60%;
    position: relative; }
    @media (max-width: 991px) {
      .cc-map__map {
        width: 100%;
        aspect-ratio: 1/1; } }
    .cc-map__map-map {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .cc-map__mobile {
    display: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16); }
    @media (max-width: 991px) {
      .cc-map__mobile {
        display: block; } }

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