﻿@charset "UTF-8";

:root {
    --black_08: #242424;
    --black_10: #000000;
    --blue_03: #53c1f1;
    --blue_04: #22A4DF;
    --blue_05: #089ADC;
    --blue_primary: #009ADE;
    --blue_celestial: #4a8ec2;
    --bice_blue: #3774a2;
    --blue_06: #3093CC;
    --blue_07: #008BCE;
    --blue_08: #1E77AB;
    --blue_09: #125687;
    --darkblue_07: #00425F;
    --darkwhite_04: #f8f8f8;
    --darkwhite_05: #F7F7F7;
    --darkwhite_06: #efefef;
    --darkwhite_07: #F0F0F0;
    --darkwhite_08: #EEEEEE;
    --darkwhite_09: #EAEAEA;
    --gainsboro_03: #E2E4E1;
    --gainsboro_04: #E3E5E2;
    --gainsboro_05: #E4E6E3;
    --gainsboro_06: #E5E5E5;
    --gainsboro_07: #E2E2E2;
    --gainsboro_08: #DDDDDD;
    --gainsboro_09: #CCDBDE;
    --gray_03: #8E8E8E;
    --gray_05: #777777;
    --gray_06: #4A4A4A;
    --gray_08: #363636;
    --gray_09: #323334;
    --green_05: #97CA3D;
    --lightBlue_02: #F0F9FD;
    --lightBlue_03: #E0EFF6;
    --lightBlue_04: #E1F0F7;
    --lightBlue_05: #E5F4FB;
    --lightBlue_06: #E5F5FC;
    --lightBlue_08: #E7F6FE;
    --lightGray_05: #D1D1D1;
    --lightGray_06: #D2D2D2;
    --lightGray_07: #D1D5CF;
    --linen_05: #ebebe4;
    --midGray_04: #747474;
    --midGray_05: #727272;
    --midGray_06: #626366;
    --midGray_07: #5E5F61;
    --midGray_08: #525252;
    --midGray_09: #545454;
    --orange_07: #FF671F;
    --pink_07: #E7447B;
    --purple_07: #692C86;
    --silver_04: #cccccc;
    --silver_05: #C0C0C0;
    --silver_06: #BBBBBB;
    --silver_07: #a5a5a5;
    --silver_08: #aeaeae;
    --silver_09: #b3b3b3;
    --tomato_07: #e74c3c;
    --white_02: #FAFAFA;
    --white_03: #FBFBFB;
    --white_04: #fefefe;
    --white_05: #FFFFFF;
    --white_06: #f0f0f0;
    --yellow_07: #FFBF3F;
    --charcoal: #2f4054;
    --squid_ink: #1d2733;
    --turquoise_07: #5FBCBF;
    --blue_lapis: #216ba5;
    --brown_saddle: #1d5d90;
    --card-width: 369px;
    --card-header-height: 70px;
    --card-header-width: 260px;
}

/* FONT PATH
 * -------------------------- */

@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome/fontawesome-webfont-eot.eot?v=4.7.0");
    src: url("../fonts/fontawesome/fontawesome-webfont-eot.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont-woff2.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome/fontawesome-webfont-woff.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome/fontawesome-webfont-ttf.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont-svg.svg?v=4.7.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none;
}

    .fa-ul > li {
        position: relative;
    }

.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: 0.14286em;
    text-align: center;
}

    .fa-li.fa-lg {
        left: -1.85714em;
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: var(--white_05);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-envelope-o:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-o:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-gear:before,
.fa-cog:before {
    content: "";
}

.fa-trash-o:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-file-o:before {
    content: "";
}

.fa-clock-o:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-arrow-circle-o-down:before {
    content: "";
}

.fa-arrow-circle-o-up:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-play-circle-o:before {
    content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "";
}

.fa-refresh:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-video-camera:before {
    content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "";
}

.fa-pencil:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "";
}

.fa-share-square-o:before {
    content: "";
}

.fa-check-square-o:before {
    content: "";
}

.fa-arrows:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-times-circle-o:before {
    content: "";
}

.fa-check-circle-o:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-arrows-v:before {
    content: "";
}

.fa-arrows-h:before {
    content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-gears:before,
.fa-cogs:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-thumbs-o-up:before {
    content: "";
}

.fa-thumbs-o-down:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-heart-o:before {
    content: "";
}

.fa-sign-out:before {
    content: "";
}

.fa-linkedin-square:before {
    content: "";
}

.fa-thumb-tack:before {
    content: "";
}

.fa-external-link:before {
    content: "";
}

.fa-sign-in:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-lemon-o:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-square-o:before {
    content: "";
}

.fa-bookmark-o:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-feed:before,
.fa-rss:before {
    content: "";
}

.fa-hdd-o:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-hand-o-right:before {
    content: "";
}

.fa-hand-o-left:before {
    content: "";
}

.fa-hand-o-up:before {
    content: "";
}

.fa-hand-o-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-group:before,
.fa-users:before {
    content: "";
}

.fa-chain:before,
.fa-link:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-cut:before,
.fa-scissors:before {
    content: "";
}

.fa-copy:before,
.fa-files-o:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-money:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "";
}

.fa-legal:before,
.fa-gavel:before {
    content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "";
}

.fa-comment-o:before {
    content: "";
}

.fa-comments-o:before {
    content: "";
}

.fa-flash:before,
.fa-bolt:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "";
}

.fa-lightbulb-o:before {
    content: "";
}

.fa-exchange:before {
    content: "";
}

.fa-cloud-download:before {
    content: "";
}

.fa-cloud-upload:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-bell-o:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cutlery:before {
    content: "";
}

.fa-file-text-o:before {
    content: "";
}

.fa-building-o:before {
    content: "";
}

.fa-hospital-o:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "";
}

.fa-circle-o:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-folder-o:before {
    content: "";
}

.fa-folder-open-o:before {
    content: "";
}

.fa-smile-o:before {
    content: "";
}

.fa-frown-o:before {
    content: "";
}

.fa-meh-o:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-keyboard-o:before {
    content: "";
}

.fa-flag-o:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-code-fork:before {
    content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-shield:before {
    content: "";
}

.fa-calendar-o:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-ticket:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-minus-square-o:before {
    content: "";
}

.fa-level-up:before {
    content: "";
}

.fa-level-down:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-pencil-square:before {
    content: "";
}

.fa-external-link-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "";
}

.fa-euro:before,
.fa-eur:before {
    content: "";
}

.fa-gbp:before {
    content: "";
}

.fa-dollar:before,
.fa-usd:before {
    content: "";
}

.fa-rupee:before,
.fa-inr:before {
    content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "";
}

.fa-won:before,
.fa-krw:before {
    content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-text:before {
    content: "";
}

.fa-sort-alpha-asc:before {
    content: "";
}

.fa-sort-alpha-desc:before {
    content: "";
}

.fa-sort-amount-asc:before {
    content: "";
}

.fa-sort-amount-desc:before {
    content: "";
}

.fa-sort-numeric-asc:before {
    content: "";
}

.fa-sort-numeric-desc:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-youtube-play:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitbucket-square:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-long-arrow-down:before {
    content: "";
}

.fa-long-arrow-up:before {
    content: "";
}

.fa-long-arrow-left:before {
    content: "";
}

.fa-long-arrow-right:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "";
}

.fa-sun-o:before {
    content: "";
}

.fa-moon-o:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-arrow-circle-o-right:before {
    content: "";
}

.fa-arrow-circle-o-left:before {
    content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "";
}

.fa-dot-circle-o:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "";
}

.fa-plus-square-o:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-spoon:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-automobile:before,
.fa-car:before {
    content: "";
}

.fa-cab:before,
.fa-taxi:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-file-pdf-o:before {
    content: "";
}

.fa-file-word-o:before {
    content: "";
}

.fa-file-excel-o:before {
    content: "";
}

.fa-file-powerpoint-o:before {
    content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "";
}

.fa-file-code-o:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "";
}

.fa-circle-o-notch:before {
    content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "";
}

.fa-ge:before,
.fa-empire:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-circle-thin:before {
    content: "";
}

.fa-header:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-sliders:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-newspaper-o:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bell-slash-o:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-eyedropper:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-area-chart:before {
    content: "";
}

.fa-pie-chart:before {
    content: "";
}

.fa-line-chart:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-cc:before {
    content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "";
}

.fa-meanpath:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-diamond:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-facebook-official:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-hotel:before,
.fa-bed:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-sticky-note-o:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-hourglass-o:before {
    content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "";
}

.fa-hand-scissors-o:before {
    content: "";
}

.fa-hand-lizard-o:before {
    content: "";
}

.fa-hand-spock-o:before {
    content: "";
}

.fa-hand-pointer-o:before {
    content: "";
}

.fa-hand-peace-o:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-tv:before,
.fa-television:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-500px:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-calendar-plus-o:before {
    content: "";
}

.fa-calendar-minus-o:before {
    content: "";
}

.fa-calendar-times-o:before {
    content: "";
}

.fa-calendar-check-o:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-map-o:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-commenting:before {
    content: "";
}

.fa-commenting-o:before {
    content: "";
}

.fa-houzz:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-credit-card-alt:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-pause-circle-o:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stop-circle-o:before {
    content: "";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-universal-access:before {
    content: "";
}

.fa-wheelchair-alt:before {
    content: "";
}

.fa-question-circle-o:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-volume-control-phone:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-signing:before,
.fa-sign-language:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "";
}

.fa-handshake-o:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-o:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-book-o:before {
    content: "";
}

.fa-vcard:before,
.fa-address-card:before {
    content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-circle-o:before {
    content: "";
}

.fa-user-o:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-eercast:before {
    content: "";
}

.fa-microchip:before {
    content: "";
}

.fa-snowflake-o:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/* ========================================================================
  #BREAKPOINTS
  ======================================================================== */
/* ========================================================================
  #COLORS
  ======================================================================== */
/* ==========================================================================
   #GRID
   ========================================================================== */
/**
* Contains overrride to Bootstrap 4 Grid
**/
.container {
    padding-right: 5px;
    padding-left: 5px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.container-fluid {
    padding-right: 5px;
    padding-left: 5px;
}

.row {
    margin-right: -5px;
    margin-left: -5px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    padding-right: 5px;
    padding-left: 5px;
}

/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
/*------------------------------------*\
    #PAGE
\*------------------------------------*/
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 0px;
}

body {
    font-family: "omnes-pro", Helvetica, Verdana, Tahoma, sans-serif;
    position: relative;
    overflow: auto;
    color: var(--midGray_04);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    background: var(--white_05);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    body.on-page-editor {
        background: var(--white_05) !important;
    }

address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
    margin-bottom: 30px;
}

p {
    margin-bottom: 10px;
}

strong {
    font-weight: 600;
}

blockquote {
    font-size: 1.133em;
    color: var(--blue_primary);
    font-style: italic;
}

@media (min-width: 768px) {
    blockquote {
        font-size: 1.933em;
    }
}

.c-section-wrapper {
    width: 990px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 1200px) {
    .c-section-wrapper {
        padding: 0;
    }
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Typographical base selectors.
 */
/**
 * Headings 1–6.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue_primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

h1 {
    font-size: 2.267em;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.133em;
    }
}

h2 {
    font-size: 1.8em;
}

@media (min-width: 768px) {


    h2 {
        font-size: 2.267em;
    }
}

h3 {
    font-size: 1.133em;
    color: var(--midGray_04);
}

@media (min-width: 768px) {
    h3 {
        font-size: 1.4em;
    }
}

h4 {
    font-size: 1em;
}

h5 {
    font-size: 0.83em;
}

h6 {
    font-size: 0.67em;
}

/*------------------------------------*\
    #LINKS
\*------------------------------------*/
a {
    text-decoration: none;
    color: var(--blue_primary);
    -webkit-text-decoration-skip: ink;
    text-decoration-skip: ink;
}

    a:hover,
    a:active,
    a:focus {
        text-decoration: underline;
        color: var(--darkblue_07);
    }

/* ========================================================================
  #BAND
  ======================================================================== */
.o-band {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 15px;
    border-color: var(--darkwhite_07);
    border-style: solid;
}

    .o-band:last-of-type {
        border: none;
    }

@media (min-width: 768px) {
    .o-band {
        padding-top: 60px;
        padding-bottom: 30px;
    }
}

.o-band--divider {
    border-bottom-width: 1px;
}

.o-band--flush {
    padding: 0;
}

.o-band--grey {
    background: var(--white_02);
}

.o-band--small {
    padding-top: 15px;
    padding-bottom: 7.5px;
}

@media (min-width: 768px) {
    .o-band--small {
        padding-top: 30px;
        padding-bottom: 15px;
    }
}

/* ==========================================================================
   #LIST-INLINE
   ========================================================================== */
/**
 * The list-inline object simply displays a list of items in one line.
 */
.o-list-inline {
    margin: 0;
    list-style: none;
}

.o-list-inline__item {
    display: inline-block;
}

.o-list-inline--gutter .o-list-inline__item {
    margin-right: 5px;
}

    .o-list-inline--gutter .o-list-inline__item:last-of-type {
        margin-right: 0;
    }

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn {
    display: inline-block;
    /* [1] */
    vertical-align: middle;
    /* [2] */
    font: inherit;
    /* [3] */
    text-align: center;
    /* [4] */
    margin: 0;
    /* [4] */
    cursor: pointer;
    /* [5] */
    padding: 15px 30px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    border-radius: 3px;
    border: none;
    font-weight: 500;
}

    .c-btn:disabled {
        color: var(--midGray_04) !important;
        background-color: var(--lightGray_05) !important;
    }

        .c-btn:disabled,
        .c-btn:disabled:hover,
        .c-btn:disabled:active,
        .c-btn:disabled:focus {
            color: var(--midGray_04) !important;
            background-color: var(--lightGray_05) !important;
            box-shadow: none !important;
        }

/* With icon
     ========================================================================== */
.c-btn__icon {
    width: 12px;
    height: 12px;
    margin-left: 10px;
    display: inherit;
    vertical-align: middle;
}

    .c-btn__icon > svg {
        display: block;
    }

/* Style variants
========================================================================== */
.c-btn--primary,
.c-btn--highlight {
    background-color: var(--blue_primary);
}

    .c-btn--primary,
    .c-btn--primary:hover,
    .c-btn--primary:active,
    .c-btn--primary:focus,
    .c-btn--highlight,
    .c-btn--highlight:hover,
    .c-btn--highlight:active,
    .c-btn--highlight:focus {
        text-decoration: none;
        /* [4] */
        color: var(--white_05);
    }

        .c-btn--primary:hover,
        .c-btn--primary:focus,
        .c-btn--highlight:hover,
        .c-btn--highlight:focus {
            background-color: var(--darkblue_07);
        }

.c-btn--highlight--yellowscale {
    background-color: var(--yellow_07);
    border: 1px solid var(--yellow_07);
}

    .c-btn--highlight--yellowscale:hover,
    .c-btn--highlight--yellowscale:active,
    .c-btn--highlight--yellowscale:focus {
        text-decoration: none;
        color: var(--yellow_07);
        background-color: var(--white_05);
        border: 1px solid var(--yellow_07);
    }

.c-btn--greyscale {
    background-color: var(--gray_06);
}

    .c-btn--greyscale,
    .c-btn--greyscale:hover,
    .c-btn--greyscale:active,
    .c-btn--greyscale:focus {
        text-decoration: none;
        /* [4] */
        color: var(--white_05);
    }

        .c-btn--greyscale:hover,
        .c-btn--greyscale:focus {
            background-color: var(--darkblue_07);
        }

.c-btn--secondary {
    background-color: var(--charcoal);
}

    .c-btn--secondary,
    .c-btn--secondary:hover,
    .c-btn--secondary:active,
    .c-btn--secondary:focus {
        text-decoration: none;
        color: var(--white_05);
    }

        .c-btn--secondary:hover,
        .c-btn--secondary:focus {
            background-color: var(--squid_ink);
        }

.c-btn--tertiary {
    background-color: var(--white_05);
    color: var(--blue_celestial);
}

    .c-btn--tertiary,
    .c-btn--tertiary:hover,
    .c-btn--tertiary:active,
    .c-btn--tertiary:focus {
        text-decoration: none;
        color: var(--blue_celestial);
    }

        .c-btn--tertiary:hover,
        .c-btn--tertiary:focus {
            color: var(--bice_blue);
        }

.c-btn--highlight {
    box-shadow: 0 5px 10px 0 rgba(0, 139, 206, 0.34);
}

.c-btn--round {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    width: 41px;
    height: 41px;
    padding: 0;
}

@media (min-width: 768px) {
    .c-btn--round {
        width: 48px;
        height: 48px;
    }
}

.c-btn--round:hover > svg,
.c-btn--round:active > svg,
.c-btn--round:focus > svg {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.c-btn--round > svg {
    width: 15px;
    height: 15px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

@media (min-width: 768px) {
    .c-btn--round > svg {
        width: 18px;
        height: 18px;
    }
}

.c-btn--pill {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    height: 41px;
    line-height: 1;
    border-radius: 50px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .c-btn--pill {
        height: 48px;
    }
}

.c-btn--pill:hover > svg:not(:first-child),
.c-btn--pill:active > svg:not(:first-child),
.c-btn--pill:focus > svg:not(:first-child) {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}

.c-btn--pill:hover > svg:not(:last-child),
.c-btn--pill:active > svg:not(:last-child),
.c-btn--pill:focus > svg:not(:last-child) {
    -webkit-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px);
}

.c-btn--pill > svg {
    width: 10px;
    height: 19px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

    .c-btn--pill > svg:not(:first-child) {
        margin-left: 15px;
    }

    .c-btn--pill > svg:not(:last-child) {
        margin-right: 15px;
    }

/* Size variants
     ========================================================================== */
.c-btn--small {
    padding: 7.5px 15px;
}

.c-btn--large {
    padding: 15px 60px;
}

.c-btn--xlarge {
    padding: 15px 90px;
}

.c-btn--pill-small {
    height: 32px;
}

.c-btn--pill-spacing {
    margin-left: 20px;
}

/* Ghost buttons
   ========================================================================== */
/**
 * Ghost buttons have see-through backgrounds and are bordered.
 */
.c-btn--ghost {
    border: 1px solid currentColor;
    padding: 14px 29px;
}

    .c-btn--ghost,
    .c-btn--ghost:hover,
    .c-btn--ghost:active,
    .c-btn--ghost:focus {
        background: none;
    }

        .c-btn--ghost.c-btn--small {
            padding: 6.5px 14px;
        }

        .c-btn--ghost.c-btn--large {
            padding: 14px 59px;
        }

        .c-btn--ghost.c-btn--xlarge {
            padding: 14px 88.5px;
        }

        .c-btn--ghost.c-btn--primary {
            color: var(--blue_primary);
            background: none;
        }

            .c-btn--ghost.c-btn--primary:hover,
            .c-btn--ghost.c-btn--primary:focus {
                color: var(--darkblue_07);
            }

/* ==========================================================================
   #FAB BUTTONS
   ========================================================================== */
/**
 * Circular button w/ elevation, defaults to theme's accent color
 */
.c-fab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    font: inherit;
    text-align: center;
    margin: 0;
    cursor: pointer;
    padding: 14px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    border: none;
    border-radius: 50%;
}

.c-fab__icon {
    width: 18px;
    height: 18px;
    margin: auto;
}

    .c-fab__icon > svg {
        display: block;
    }

/* Style variants
========================================================================== */
.c-fab--primary {
    background-color: var(--blue_primary);
}

    .c-fab--primary,
    .c-fab--primary:hover,
    .c-fab--primary:active,
    .c-fab--primary:focus {
        text-decoration: none;
    }

.c-fab--sky {
    background-color: var(--lightBlue_04);
}

    .c-fab--sky,
    .c-fab--sky:hover,
    .c-fab--sky:active,
    .c-fab--sky:focus {
        text-decoration: none;
    }

/* ========================================================================
  #HEADER
  ======================================================================== */
.c-header {
    width: 100%;
    position: relative;
    z-index: 5;
}

.c-header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

.c-header__logo {
    width: 180px;
    height: 50px;
    margin: 2px 0px 0px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .c-header__logo img,
    .c-header__logo a {
        display: block;
    }

@media (min-width: 768px) {
    .c-header__logo {
        background-color: var(--white_05);
        margin: 0px;
    }

        .c-header__logo .row {
            margin-right: 0;
        }
}

.c-header__links {
    margin-top: 40px;
    margin-bottom: 20px;
    display: none;
}

@media (min-width: 768px) {
    .c-header__links {
        display: block;
    }
}

.c-header__mobile-links {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: block;
    padding-left: 20px;
}

@media (min-width: 768px) {
    .c-header__mobile-links {
        display: none;
    }
}

.c-header__mobile-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 768px) {
    .c-header__mobile-actions {
        display: none;
    }
}

.c-header__action {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .c-header__action > svg {
        width: 16px;
    }

.c-header__login {
    margin-left: auto !important;
}

li.c-header__login.no-child {
    margin-left: 0px !important;
}

.c-header__sub {
    background-color: var(--blue_primary);
    color: var(--white_05);
    display: none;
}

@media (min-width: 768px) {
    .c-header__sub {
        display: block;
    }
}

.c-header__nav > .row {
    margin-left: 0;
    margin-right: 0;
}

/* breakpoints */
/* ==========================================================================
   #SITENAV
   ========================================================================== */
.c-sitenav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--white_05);
    height: 48px;
    width: 100%;
}

    .c-sitenav a {
        color: inherit;
        text-decoration: none;
    }

    .c-sitenav .component-content,
    .c-sitenav .component-content > nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .c-sitenav .component-content > nav {
            position: relative;
            width: 100%;
        }

            .c-sitenav .component-content > nav > ul {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                margin: 0;
                width: 100%;
            }

    .c-sitenav .rel-level1 {
        margin-left: 10px;
        margin-right: 10px;
    }

        .c-sitenav .rel-level1.first {
            margin-left: 0;
        }

        .c-sitenav .rel-level1 > .navigation-title > a {
            padding-bottom: 2px;
        }

            .c-sitenav .rel-level1 > .navigation-title > a:hover,
            .c-sitenav .rel-level1 > .navigation-title > a:active,
            .c-sitenav .rel-level1 > .navigation-title > a:focus {
                border-bottom: 2px solid var(--yellow_07);
            }

        .c-sitenav .rel-level1.submenu > .navigation-title a {
            position: relative;
            padding-right: 15px;
        }

            .c-sitenav .rel-level1.submenu > .navigation-title a:after {
                display: inline-block;
                font: normal normal normal 14px/1 FontAwesome;
                font-size: inherit;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                font-size: 10px;
                content: "";
                position: absolute;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                top: 50%;
                right: 0;
            }

        .c-sitenav .rel-level1 > ul {
            display: none;
            color: inherit;
            background-color: var(--white_05);
            border-radius: 5px;
            box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
            left: 0;
            overflow: hidden;
            position: absolute;
            top: 100%;
            width: auto;
            z-index: 10;
            padding: 20px;
        }

        .c-sitenav .rel-level1.show > a + ul {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
            display: block !important;
        }

        .c-sitenav .rel-level1.show {
            position: relative;
        }

            .c-sitenav .rel-level1.show > ul {
                display: -webkit-box !important;
                display: -ms-flexbox !important;
                display: block !important;
                min-width: 60px;
                margin-top: 12px;
            }

        .c-sitenav .rel-level1.active > span {
            display: block;
            padding: 10px 20px;
        }

        .c-sitenav .rel-level1.active > .navigation-title > a {
            border-bottom: 2px solid var(--yellow_07);
        }


        .c-sitenav .rel-level1 > ul {
            padding-top: 15px;
            margin: 0;
        }

    .c-sitenav .rel-level2 > ul {
        margin: 0;
    }

    .c-sitenav .rel-level2,
    .c-sitenav .rel-level3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 5px;
    }

        .c-sitenav .rel-level2 .field-navigationtitle > a {
            display: block;
            font-weight: 500;
            font-size: 16px;
            text-align: left;
            margin-right: 10px;
            color: var(--gray_09);
            border: 0;
            white-space: nowrap;
        }

            .c-sitenav .rel-level2 .field-navigationtitle > a:hover,
            .c-sitenav .rel-level2 .field-navigationtitle > a:active,
            .c-sitenav .rel-level2 .field-navigationtitle > a:focus {
                color: var(--blue_primary);
            }

        .c-sitenav .rel-level2 .field-navigation-icon {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-pack: distribute;
            justify-content: space-around;
            height: 40px;
            width: 40px;
            min-width: 40px;
            margin-right: 10px;
            border-radius: 50%;
            background-color: var(--lightBlue_02);
        }

            .c-sitenav .rel-level2 .field-navigation-icon > img {
                max-width: 24px;
            }

            .c-sitenav .rel-level2 .field-navigation-icon:empty {
                background-color: var(--white_05);
                width: auto;
                min-width: auto;
            }

        .c-sitenav .rel-level2.last {
            margin-bottom: 0;
        }

.c-outcome__title {
    color: var(--blue_07);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .c-outcome__title {
        font-size: 20px;
    }
}

.c-outcome__description {
    width: 990px;
    max-width: 100%;
    margin: 0 auto 30px auto;
    font-size: 16px;
}

@media (min-width: 992px) {
    .c-outcome__description {
        font-size: 17px;
    }
}

.c-outcome__description.c-outcome__description--large {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .c-outcome__description.c-outcome__description--large {
        font-size: 21px;
    }
}

.c-outcome__button {
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .c-outcome__button {
        margin-bottom: 0;
    }
}

.c-outcome__button .c-btn {
    width: 320px;
    max-width: 100%;
}

.c-cover-conditions {
    width: 730px;
    max-width: 100%;
    margin: 0 auto 30px auto;
}

@media (min-width: 992px) {
    .c-cover-conditions {
        margin-bottom: 60px;
    }
}

.c-cover-conditions__head {
    padding: 18px 0;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    background-color: var(--white_05);
    border-radius: 5px;
    margin-bottom: 7.5px;
    color: var(--blue_primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.22;
}

@media (min-width: 992px) {
    .c-cover-conditions__head {
        margin-bottom: 10px;
        font-size: 22px;
    }
}

.c-cover-conditions__condition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    background-color: var(--lightBlue_04);
    padding: 15px;
    margin-bottom: 7.5px;
}

@media (min-width: 992px) {
    .c-cover-conditions__condition {
        padding: 15px 25px;
    }
}

.c-cover-conditions__condition:last-child {
    margin-bottom: 0;
}

.c-cover-condition__title {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: var(--gray_06);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

@media (min-width: 992px) {
    .c-cover-condition__title {
        font-size: 20px;
    }
}

.c-cover-condition__cost-title {
    color: var(--gray_06);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .c-cover-condition__cost-title {
        font-size: 16px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }
}

.c-cover-condition__cost-amount {
    color: var(--blue_primary);
    vertical-align: middle;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

@media (min-width: 992px) {
    .c-cover-condition__cost-amount {
        display: inline-block;
        font-size: 23px;
    }
}

.c-page-header {
    width: 400px;
    max-width: 100%;
    margin: 0px auto;
}

@media (min-width: 576px) {
    .c-page-header {
        width: 500px;
    }
}

@media (min-width: 768px) {
    .c-page-header {
        width: 900px;
        padding: 0 20px;
    }
}

.c-page-header h1 {
    line-height: 1.11;
}

@media (min-width: 992px) {
    .c-page-header h1 {
        font-size: 47px;
    }
}

.c-page-header__lead {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .c-page-header__lead {
        color: var(--gray_06);
        font-size: 21px;
        line-height: 26px;
    }
}

.c-page-header__secondary-text {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
}

@media (min-width: 992px) {
    .c-page-header__secondary-text {
        color: var(--gray_06);
        font-size: 21px;
    }
}

.c-plan-extras {
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
    padding: 0 20px 30px 20px;
}

    .c-plan-extras .c-media-row {
        border: 0;
        margin: 0;
    }

    .c-plan-extras .c-media-row__icon,
    .c-plan-extras .c-media-row__arrow {
        display: none;
    }

@media (min-width: 992px) {

    .c-plan-extras .c-media-row__icon,
    .c-plan-extras .c-media-row__arrow {
        display: block;
    }
}

.c-plan-extras__extra {
    border-bottom: 1px solid var(--lightGray_07);
}

    .c-plan-extras__extra:last-child {
        border-bottom: 0;
    }

    .c-plan-extras__extra.is-open {
        padding-bottom: 15px;
    }

    .c-plan-extras__extra .container {
        padding: 0;
    }

.c-plan-extras__description {
    color: var(--black_08);
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
    width: 700px;
    max-width: 100%;
}

@media (min-width: 992px) {
    .c-plan-extras__description {
        padding: 0 95px;
        margin-top: -20px;
        margin-bottom: 30px;
    }
}

.c-extra-cost {
    background: var(--lightBlue_03);
    padding: 15px;
    border-radius: 4px;
}

@media (min-width: 992px) {
    .c-extra-cost {
        padding: 15px 25px;
    }
}

.c-extra-cost__container {
    width: 950px;
    max-width: 100%;
    margin: 0 auto;
}

.c-extra-cost__title,
.c-extra-cost__value {
    color: var(--black_08);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

@media (min-width: 992px) {

    .c-extra-cost__title,
    .c-extra-cost__value {
        font-size: 16px;
        line-height: 20px;
    }
}

.c-extra-cost--large {
    width: 100%;
    background: var(--lightBlue_03);
    padding: 30px 20px;
}

    .c-extra-cost--large .c-extra-cost__title,
    .c-extra-cost--large .c-extra-cost__value {
        color: var(--blue_primary);
        font-size: 20px;
        font-weight: 500;
        line-height: 25px;
    }

/* breakpoints */
.c-mobile-nav {
    width: 100%;
    font-size: 16px;
}

    .c-mobile-nav::before {
        content: "";
        display: block;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 0px;
        left: 0;
        bottom: 0;
        width: 10000px;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .c-mobile-nav nav > ul {
        border-top: 1px solid var(--darkwhite_07);
        margin: 0;
    }

    .c-mobile-nav .rel-level1 {
        cursor: pointer;
        margin: 0;
        background-color: var(--white_05);
        border-bottom: 1px solid var(--darkwhite_07);
    }

        .c-mobile-nav .rel-level1 > ul {
            padding-left: 25px;
            display: none;
        }

            .c-mobile-nav .rel-level1 > ul li {
                position: relative;
            }

        .c-mobile-nav .rel-level1.submenu.active > .navigation-title:before {
            content: "";
        }

        .c-mobile-nav .rel-level1.submenu > ul,
        .c-mobile-nav .rel-level1.submenu.active > ul {
            margin: 0;
            padding-bottom: 20px;
        }

        .c-mobile-nav .rel-level1.submenu > .navigation-title {
            position: relative;
        }

            .c-mobile-nav .rel-level1.submenu > .navigation-title:before {
                display: inline-block;
                font: normal normal normal 14px/1 FontAwesome;
                font-size: inherit;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                content: "";
                display: block;
                position: absolute;
                right: 20px;
                font-size: 10px;
                top: 20px;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                -webkit-transform: rotate(0);
                -ms-transform: rotate(0);
                transform: rotate(0);
                -webkit-transition: 0.6s;
                transition: 0.6s;
                -webkit-transform-style: preserve-3d;
                transform-style: preserve-3d;
            }

        .c-mobile-nav .rel-level1 > .navigation-title {
            border-bottom: none;
            padding-left: 20px;
            padding-right: 20px;
            padding-top: 10px;
            padding-bottom: 10px;
            color: var(--gray_06);
            margin: 0;
        }

            .c-mobile-nav .rel-level1 > .navigation-title:last-child {
                border-bottom: none;
            }

        .c-mobile-nav .rel-level1 .navigation-title > a {
            text-decoration: none;
            color: var(--midGray_04);
            display: inline;
        }


        .c-mobile-nav .rel-level1 ul {
            margin: 0;
        }

        .c-mobile-nav .rel-level1.active ul {
            display: block;
            margin: 0;
        }


    .c-mobile-nav .rel-level2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 5px;
    }

        .c-mobile-nav .rel-level2 .field-navigationtitle > a {
            display: block;
            font-weight: 500;
            font-size: 16px;
            text-align: left;
            margin-right: 10px;
            color: var(--gray_09);
            border: 0;
        }

            .c-mobile-nav .rel-level2 .field-navigationtitle > a:hover,
            .c-mobile-nav .rel-level2 .field-navigationtitle > a:active,
            .c-mobile-nav .rel-level2 .field-navigationtitle > a:focus {
                color: var(--blue_primary);
            }

        .c-mobile-nav .rel-level2 .field-navigation-icon {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-pack: distribute;
            justify-content: space-around;
            height: 40px;
            width: 40px;
            margin-right: 10px;
            border-radius: 50%;
            background-color: var(--lightBlue_02);
        }

            .c-mobile-nav .rel-level2 .field-navigation-icon > img {
                max-width: 16px;
            }

            .c-mobile-nav .rel-level2 .field-navigation-icon:empty {
                background-color: var(--white_05);
                width: auto;
                min-width: auto;
            }

        .c-mobile-nav .rel-level2.last {
            margin-bottom: 0;
        }

/* ==========================================================================
   #MOBILE LINKS
   ========================================================================== */
.c-mobile-links {
    padding: 20px;
}

    .c-mobile-links h3 {
        display: none;
    }

    .c-mobile-links ul {
        margin: 0;
        list-style: none;
    }

        .c-mobile-links ul > li {
            display: block;
            margin-bottom: 10px;
            color: var(--darkwhite_07);
        }

            .c-mobile-links ul > li.last {
                margin-bottom: 0;
            }

    .c-mobile-links .field-link > a {
        text-decoration: none;
        color: inherit;
    }

/* ==========================================================================
   #QUICK LINKS
   ========================================================================== */
.c-quick-links {
    display: none;
}

@media (min-width: 768px) {
    .c-quick-links {
        display: block;
    }
}

.c-quick-links h3 {
    display: none;
}

.c-quick-links ul {
    margin: 0;
    list-style: none;
}

    .c-quick-links ul > li {
        display: inline-block;
        margin-left: 10px;
        margin-right: 10px;
    }

        .c-quick-links ul > li.first {
            margin-left: 0;
        }

        .c-quick-links ul > li.last {
            margin-right: 0;
            color: var(--gray_06);
        }

.c-quick-links .field-link > a {
    text-decoration: none;
    color: inherit;
}

.c-next-step {
    width: 100%;
    padding: 0 15px;
}

.c-next-step--grey {
    background: var(--white_02);
}

.c-next-step--travellers {
    padding-top: 0;
    padding-bottom: 60px;
}

@media (min-width: 992px) {
    .c-next-step--travellers {
        padding-top: 20px;
        padding-bottom: 90px;
    }
}

.c-next-step__button input[type=button] {
    width: 100%;
    max-width: 240px;
}

.c-valuables-list__container:last-child .c-valuables-list__breaker {
    display: none;
}

.c-valuables-list__field {
    margin-bottom: 3.75px;
    padding-left: 3.75px;
    padding-right: 3.75px;
}

.c-valuables-list__field--type {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

@media (min-width: 992px) {
    .c-valuables-list__field--type {
        -ms-flex-preferred-size: 180px;
        flex-basis: 180px;
    }
}

.c-valuables-list__field--amount {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

@media (min-width: 992px) {
    .c-valuables-list__field--amount {
        -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
}

.c-valuables-list__field--description {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

@media (min-width: 992px) {
    .c-valuables-list__field--description {
        -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.c-valuables-list__field--action {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.c-valuables-list__breaker {
    border-bottom: 1px solid var(--lightGray_07);
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

@media (min-width: 992px) {
    .c-valuables-list__breaker {
        display: none;
    }
}

.c-valuables-list__delete {
    height: 46px;
    width: 46px;
    border-radius: 360px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--lightBlue_05);
    border: none;
    margin-top: 6px;
}

    .c-valuables-list__delete:hover {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

.c-valuables-list__icon {
    width: 18px;
    height: 18px;
    margin: auto;
}

.c-valuable-list__add {
    margin-top: 7.5px;
    margin-bottom: 15px;
}

.c-section-header {
    border-bottom: 1px solid var(--gainsboro_05);
    padding-bottom: 7.5px;
    margin-bottom: 30px;
}

.c-section-header__title {
    display: inline-block;
    color: var(--blue_07);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    margin-right: 5px;
}

.c-section-header__subtitle {
    display: inline-block;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
}

.c-section-header__description {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.c-fieldset {
    margin-bottom: 30px;
}

    .c-fieldset input,
    .c-fieldset select {
        width: 100%;
        margin-bottom: 7.5px;
    }

@media (min-width: 768px) {
    .c-fieldset .c-fieldset__last {
        margin-left: auto;
    }
}

.c-fieldset__title {
    color: var(--gray_06);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 15px;
}

.c-fieldset__label {
    color: var(--gray_06);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.13;
}

.c-fieldset__confirmation {
    margin-top: 10px;
    padding: 0 5px;
    position: relative;
}

    .c-fieldset__confirmation .c-error-message {
        position: absolute;
    }

    .c-fieldset__confirmation .c-checkbox,
    .c-fieldset__confirmation .c-fieldset__label {
        max-width: 50%;
    }

/* ========================================================================
  #HAMBURGER
  ======================================================================== */
.c-hamburger > .component-content,
.c-hamburger .toggle-content,
.c-hamburger .toggle-header {
    height: 100%;
}

.c-hamburger summary.toggle-header:before {
    content: "";
}

.c-hamburger details[open] summary:before {
    content: "";
}

.c-hamburger summary ~ .row {
    display: block;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 50px;
    width: 80%;
    height: 10000px;
    background-color: var(--white_05);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    margin-left: 0;
    margin-right: 0;
    background-color: var(--midGray_06);
}

.c-hamburger details[open] summary ~ .row {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

/* ==========================================================================
   #STEPPER BAR
   ========================================================================== */
.c-stepperbar {
    background: var(--white_05);
    border-bottom: 1px solid var(--gainsboro_04);
    width: 100%;
}

.c-stepperbar__container {
    padding: 20px 0;
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation-name: scrolldown;
    animation-name: scrolldown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .c-stepperbar__container::-webkit-scrollbar {
        display: none;
    }

@-webkit-keyframes scrolldown {
    from {
        margin-top: -50px;
    }

    to {
        margin-top: 0;
    }
}

@keyframes scrolldown {
    from {
        margin-top: -50px;
    }

    to {
        margin-top: 0;
    }
}

.c-stepperbar__step {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
}

    .c-stepperbar__step:first-child {
        padding-left: 20px;
    }

    .c-stepperbar__step:last-child {
        padding-right: 20px;
    }

.c-stepperbar__label {
    background: var(--darkwhite_06);
    color: var(--silver_07);
    border-radius: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    height: 32px;
    line-height: 32px;
    letter-spacing: 0.44px;
    min-width: 100px;
    width: 100%;
    border: none;
    padding: 0;
    font-family: inherit;
}

    .c-stepperbar__label.is-completed {
        background: var(--blue_primary);
        color: var(--white_05);
        cursor: pointer;
        -webkit-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }

        .c-stepperbar__label.is-completed:hover {
            background: var(--blue_03);
        }

    .c-stepperbar__label.is-current {
        background: var(--blue_primary);
        color: var(--white_05);
    }

.c-media-row {
    border-bottom: 1px solid var(--lightGray_07);
    padding: 15px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-media-row__heading {
    position: relative;
    margin: 0;
    padding-right: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media (min-width: 992px) {
    .c-media-row__heading {
        margin: 0 30px;
    }
}

.c-media-row__label {
    color: var(--midGray_05);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    padding-right: 10px;
}

.c-media-row__title {
    color: var(--blue_07);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding-right: 10px;
}

@media (min-width: 992px) {
    .c-media-row__title {
        font-size: 20px;
        line-height: 25px;
    }
}

.c-media-row__description {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: var(--gray_06);
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    padding-right: 10px;
}

.c-media-row__option select {
    min-width: 90px;
}

@media (min-width: 992px) {
    .c-media-row__option select {
        min-width: 130px;
    }
}

.c-media-row__arrow {
    margin: 0 15px;
}

.c-media-arrow {
    height: 46px;
    width: 46px;
    border-radius: 360px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    border: none;
}

    .c-media-arrow:hover {
        background: var(--lightBlue_05);
    }

    .c-media-arrow.is-active {
        background: var(--lightBlue_05);
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
    }

/* ========================================================================
  #CHECKBOX
  ======================================================================== */
.c-checkbox {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .c-checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        top: 0;
        left: 0;
        margin: 0;
        height: 35px;
        width: 35px;
    }

    .c-checkbox label {
        position: relative;
        display: inline-block;
        color: var(--midGray_04);
        font-weight: 500;
        padding-left: 45px;
        margin-top: 0;
        cursor: pointer;
        min-height: 35px;
        line-height: 35px;
    }

    .c-checkbox input[type="checkbox"] + label::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: inline-block;
        height: 35px;
        width: 35px;
        background: var(--white_04);
        border: 1px solid var(--blue_04);
        border-radius: 4px;
    }

    .c-checkbox input[type="checkbox"]:focus + label::before {
        outline: 0;
        box-shadow: 0 0 2px 2px rgba(34, 164, 223, 0.5);
    }

    .c-checkbox input[type="checkbox"] + label::after {
        position: absolute;
        content: "";
        display: none;
        height: 35px;
        width: 35px;
        top: 0;
        left: 0;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTlweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTkgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+DQogICAgICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICAgICAgPGcgaWQ9IkV4dHJhcy1IYW5kc2V0LVZhbHVhYmxlcyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMyNS4wMDAwMDAsIC02MzcuMDAwMDAwKSIgZmlsbD0iIzAwOEJDRSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9IlRpY2siIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMyNS4wMDAwMDAsIDYzNy4wMDAwMDApIj4NCiAgICAgICAgICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlJlY3RhbmdsZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMy42MzgwNjQsIDkuNjM4MDY0KSByb3RhdGUoNDUuMDAwMDAwKSB0cmFuc2xhdGUoLTMuNjM4MDY0LCAtOS42MzgwNjQpICIgcG9pbnRzPSItMC44NjE5MzU2MjQgOC45OTMwNjQzOSA4LjEzODA2NDM4IDguOTkzMDY0MzkgOC4xMzgwNjQzOCAxMC4yODMwNjQ0IC0wLjg2MTkzNTYyNCAxMC4yODMwNjQ0Ij48L3BvbHlnb24+DQogICAgICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjk4ODc4OSwgNi44OTkwNjMpIHNjYWxlKC0xLCAxKSByb3RhdGUoNDUuMDAwMDAwKSB0cmFuc2xhdGUoLTExLjk4ODc4OSwgLTYuODk5MDYzKSAiIHBvaW50cz0iMy40ODg3ODg2MSA2LjI1NDA2MzQgMjAuNDg4Nzg4NiA2LjI1NDA2MzQgMjAuNDg4Nzg4NiA3LjU0NDA2MzM2IDMuNDg4Nzg4NjEgNy41NDQwNjMzNiI+PC9wb2x5Z29uPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgIDwvZz4NCiAgICAgICAgPC9nPg0KICAgIDwvc3ZnPg==);
        background-repeat: no-repeat;
        background-position: center center;
    }

    .c-checkbox input[type="checkbox"]:checked + label::before {
        background: transparent;
    }

    .c-checkbox input[type="checkbox"]:checked + label::after {
        display: inline-block;
    }

/* ========================================================================
  #CHECKBUTTON
  ======================================================================== */
.c-checkbutton {
    position: relative;
    display: inline-block;
    color: var(--gray_06);
}

    .c-checkbutton:hover {
        background: var(--darkwhite_07);
    }

.c-checkbutton__label {
    width: 100%;
}

.c-checkbutton__input {
    position: absolute;
    top: 0;
    opacity: 0;
}

    .c-checkbutton__input:checked + .c-checkbutton__text {
        background-color: var(--gray_06);
        color: var(--white_05);
    }

.c-checkbutton__text {
    display: inline-block;
    /* [1] */
    vertical-align: middle;
    /* [2] */
    font: inherit;
    /* [3] */
    text-align: center;
    /* [4] */
    margin: 0;
    /* [4] */
    cursor: pointer;
    /* [5] */
    padding: 15px 30px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    border-radius: 3px;
    border: none;
    font-weight: 500;
    width: 100%;
    border: 1px solid currentColor;
}

.c-compare-plans {
    background: var(--white_03);
    width: 100%;
    overflow: hidden;
    padding: 30px 20px 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media all and (max-width: 619px) {
    .c-compare-plans {
        -ms-flex-flow: wrap;
        flex-flow: wrap;
    }
}

@media (min-width: 992px) {
    .c-compare-plans {
        display: block;
        padding: 52px 20px 0 20px;
    }
}

.c-compare-plans__container-fluid {
    background: var(--white_03);
    width: 100%;
    padding: 15px 20px 0 20px;
}

@media (min-width: 992px) {
    .c-compare-plans__container-fluid {
        padding: 0 20px 0 20px;
    }
}

.c-compare-plans__container {
    margin: 0 auto;
    width: 1170px;
    max-width: 100%;
}

.c-compare-plans__documents {
    margin: 0 auto;
    width: 1170px;
    max-width: 100%;
    padding: 0 0 30px 0;
}

@media (min-width: 992px) {
    .c-compare-plans__documents {
        padding: 0 0 30px 0;
    }
}

.c-compare-plans__document {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gainsboro_04);
}

@media (min-width: 992px) {
    .c-compare-plans__document {
        margin-top: 0;
    }
}

.c-compare-plans__document:first-child {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}

.c-compare-plans__title {
    color: var(--gray_09);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 10px;
}

.c-compare-plans__description {
    color: rgba(74, 74, 74, 0.6);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}

@media (min-width: 992px) {
    .c-compare-plans__description {
        margin-bottom: 70px;
    }
}

.c-compare-plans__benefits {
    color: var(--blue_07);
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
}

.c-plan-card {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    background: var(--white_05);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 30px 20px 0 20px;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid var(--gainsboro_06);
}

@media all and (min-width: 620px) and (max-width: 991px) {
    .c-plan-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 25%;
        flex: 1 1 25%;
    }

        .c-plan-card:nth-child(odd) {
            margin-right: 10px;
        }

        .c-plan-card:nth-child(even) {
            margin-left: 10px;
        }
}

@media (min-width: 992px) {
    .c-plan-card {
        border: 0;
        margin: 0;
        padding: 30px 30px;
    }
}

.c-plan-card::before {
    display: none;
    content: ' ';
    position: absolute;
    height: 10000px;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 992px) {
    .c-plan-card::before {
        display: block;
    }
}

.c-plan-card__label {
    position: absolute;
    top: -13px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    white-space: nowrap;
    border-radius: 14.5px;
    background-color: var(--gray_06);
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    color: var(--white_05);
    line-height: 16px;
    letter-spacing: 0.28px;
    padding: 5px 30px;
    font-weight: 500;
    font-size: 13px;
    -webkit-animation-name: drawattention;
    animation-name: drawattention;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

@-webkit-keyframes drawattention {
    50% {
        font-size: 15px;
    }
}

@keyframes drawattention {
    50% {
        font-size: 15px;
    }
}

.c-plan-card__icon {
    margin-bottom: 15px;
    display: block;
}

.c-plan-card__title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    color: var(--blue_07);
    margin-bottom: 7.5px;
}

.c-plan-card__price {
    font-size: 30px;
    line-height: 38px;
    color: var(--blue_07);
    font-weight: 500;
    margin-bottom: 15px;
}

    .c-plan-card__price span {
        font-size: 47px;
    }

.c-plan-card__tag {
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    background-color: var(--yellow_07);
    color: var(--white_05);
    line-height: 16px;
    border-radius: 17px;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 30px;
    text-transform: uppercase;
}

.c-plan-card__options {
    margin-top: 30px;
}

    .c-plan-card__options .c-btn {
        width: 100%;
    }

    .c-plan-card__options .row {
        padding-bottom: 7.5px;
    }

.c-plan-card__show-details {
    width: 100%;
    margin: 15px auto 0 auto;
    display: block;
}

@media (min-width: 992px) {
    .c-plan-card__show-details {
        display: none;
    }
}

.c-plan-card__details-label {
    position: relative;
    margin: 0 auto;
    width: 230px;
    max-width: 100%;
    color: var(--blue_primary);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .c-plan-card__details-label svg {
        margin-left: 10px;
    }

.c-plan-benefit.is-open .c-media-row,
.c-plan-benefit.is-open .c-plan-benefit__amount,
.c-plan-benefit:last-of-type .c-media-row,
.c-plan-benefit:last-of-type .c-plan-benefit__amount {
    border: 0px;
}

.c-plan-benefits__sublimits {
    width: 100%;
    margin-top: -15px;
    padding-bottom: 7.5px;
}

.c-plan-benefit__amount {
    text-align: center;
    height: 100%;
    border-bottom: 1px solid var(--lightGray_07);
    color: var(--midGray_05);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .c-plan-benefit__amount {
        margin: 0 35px;
    }
}

.c-plan-benefit__cta {
    margin: 0 35px 15px 35px;
    text-align: center;
}

    .c-plan-benefit__cta .c-btn {
        width: 100%;
    }

.c-plan-benefits__sublimits-description {
    color: var(--black_08);
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    padding: 0 30px 30px 95px;
}

.c-plan-benefit--white {
    background: var(--white_05);
    position: relative;
}

    .c-plan-benefit--white .c-plan-benefit__amount {
        color: var(--gray_06);
        font-size: 20px;
        font-weight: 500;
        line-height: 25px;
    }

    .c-plan-benefit--white:before,
    .c-plan-benefit--white:after {
        content: ' ';
        position: absolute;
        width: 100vw;
        height: 100%;
        top: 0;
        z-index: 0;
        background: var(--white_05);
    }

    .c-plan-benefit--white:before {
        left: -100vw;
    }

    .c-plan-benefit--white:after {
        right: -100vw;
    }

.c-small-benefits {
    text-align: left;
    margin-left: -25px;
    margin-right: -25px;
    padding: 0 25px;
}

.c-small-benefits--optional {
    background: var(--white_03);
}

.c-small-benefits.is-open .c-media-row,
.c-small-benefits.is-open .c-small-benefits__amount,
.c-small-benefits:last-child .c-media-row,
.c-small-benefits:last-child .c-small-benefits__amount {
    border: 0px;
}

.c-small-benefits__amount {
    text-align: center;
    height: 100%;
    border-bottom: 1px solid var(--lightGray_07);
    color: var(--gray_06);
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-small-benefits__description {
    color: var(--black_08);
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
}

.c-small-benefits__sublimits {
    background-color: var(--lightBlue_04);
    min-height: 100px;
    margin-left: -25px;
    margin-right: -25px;
    padding: 0 25px;
}

.c-sub-limits {
    background-color: var(--lightBlue_04);
}

@media (min-width: 992px) {
    .c-sub-limits__main {
        margin: 0 5px 0 0;
    }
}

.c-sub-limits__sub {
    margin: 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.c-sub-limits__heading {
    color: var(--black_10);
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gainsboro_09);
}

@media (min-width: 992px) {
    .c-sub-limits__heading {
        margin: 0 32px;
        padding: 24px 0;
        font-size: 16px;
        line-height: 20px;
    }
}

.c-sub-limits__container {
    height: 100%;
    width: 100%;
    border-bottom: 1px solid var(--gainsboro_09);
}

@media (min-width: 992px) {
    .c-sub-limits__container {
        margin: 0 24px;
    }
}

.c-sub-limits__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.c-sub-limits__amount {
    color: var(--gray_06);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

@media (min-width: 992px) {
    .c-sub-limits__amount {
        font-size: 17px;
        line-height: 21px;
    }
}

.c-sub-limits__disclaimer {
    color: var(--midGray_05);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}

.c-plan-benefits__sublimits .row:first-child .c-sub-limits,
.c-small-benefits__sublimits .row:first-child .c-sub-limits {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.c-plan-benefits__sublimits .row:last-child .c-sub-limits,
.c-small-benefits__sublimits .row:last-child .c-sub-limits {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.c-plan-benefits__sublimits .row:last-child .c-sub-limits__heading,
.c-plan-benefits__sublimits .row:last-child .c-sub-limits__container,
.c-small-benefits__sublimits .row:last-child .c-sub-limits__heading,
.c-small-benefits__sublimits .row:last-child .c-sub-limits__container {
    border: 0px;
}

/* ========================================================================
  #FOOTEr
  ======================================================================== */
.c-footer {
    width: 100%;
    position: relative;
    color: var(--white_05);
}

.c-footer__main {
    background-color: var(--midGray_06);
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
}

.c-footer__aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /*justify-content: space-between;*/
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .c-footer__aside {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}


.c-footer__awards {
    -webkit-box-align: end;
    -ms-flex-align: end;
    /*align-items: flex-end;*/
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .c-footer__awards ul li:first-child {
        margin-right: 15px;
        align-items: flex-start;
    }

.c-footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    /* align-items: flex-end;*/
    /*uncomment for adding feefo*/
}

    .c-footer__social ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 0;
    }

        .c-footer__social ul img {
            margin-right: 20px;
        }

.c-footer__secondary,
.c-footer__terms {
    padding: 15px;
}

.c-footer__secondary {
    background-color: var(--blue_primary);
}

.c-footer__terms {
    background-color: var(--darkwhite_07);
    color: var(--midGray_04);
}

.c-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    list-style: none;
}

    .c-footer-nav > li {
        display: inline-block;
    }

@media (min-width: 768px) {
    .c-footer-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.c-footer-nav__item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.c-media-icon {
    background-color: var(--lightBlue_06);
    border-radius: 360px;
    height: inherit;
    width: inherit;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}

    .c-media-icon svg {
        vertical-align: top;
        width: 60%;
        height: 100%;
    }

.c-media-icon--small {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.c-media-icon--medium {
    width: 64px;
    height: 64px;
    line-height: 64px;
}

.c-media-icon--large {
    width: 128px;
    height: 128px;
    line-height: 128px;
}

/* ========================================================================
  #FULL MEDIA
  ======================================================================== */
.c-full-media {
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--darkwhite_07);
    padding-left: 0;
    padding-right: 0;
}

    .c-full-media > .component-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
        padding: 0;
        height: auto;
        width: 100%;
    }

.c-full-media__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
}

.c-full-media__content-inner {
    width: 100%;
    text-align: center;
}

    .c-full-media__content-inner ul {
        padding-left: 20px;
        text-align: left;
        display: inline-block;
    }

        .c-full-media__content-inner ul li {
            list-style-type: initial;
        }

.c-full-media__image {
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

@media (min-width: 768px) {
    .c-full-media__image {
        min-height: 430px;
    }
}

.c-full-media__image:empty {
    display: none;
}

.c-full-media__image > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
}

.c-full-media:last-of-type {
    border-bottom: none;
}

@media (min-width: 768px) {
    .c-full-media--right {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.c-full-media--right > .component-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 768px) {
    .c-full-media--right > .component-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.c-full-media--right .c-full-media__content {
    text-align: left;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .c-full-media--right .c-full-media__content {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-right: 83px;
        width: 60%;
    }
}

@media (min-width: 768px) {
    .c-full-media--right .c-full-media__content-inner {
        width: 80%;
        max-width: 630px;
        text-align: left;
    }
}

.c-full-media--right .c-full-media__image {
    overflow: hidden;
    min-height: 280px;
}

@media (min-width: 768px) {
    .c-full-media--right .c-full-media__image {
        min-height: 400px;
        width: 40%;
    }
}

@media (min-width: 768px) {
    .c-full-media--left {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.c-full-media--left > .component-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 768px) {
    .c-full-media--left > .component-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

.c-full-media--left .c-full-media__content {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .c-full-media--left .c-full-media__content {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 83px;
        width: 60%;
    }
}

@media (min-width: 768px) {
    .c-full-media--left .c-full-media__content-inner {
        width: 80%;
        max-width: 630px;
        text-align: left;
    }
}

.c-full-media--left .c-full-media__image {
    overflow: hidden;
    min-height: 280px;
}

@media (min-width: 768px) {
    .c-full-media--left .c-full-media__image {
        min-height: 400px;
        width: 40%;
    }
}

.c-full-media--top > .component-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.c-full-media--top .c-full-media__content {
    padding-top: 30px;
}

/* ==========================================================================
   #PROMO BANNER
   ========================================================================== */
.c-promo {
    width: 100%;
    padding: 40px 0 80px;
    position: relative;
}

    .c-promo.c-promo-small {
        padding: 10px 0 0px;
    }

@media (max-width: 768px) {
    .c-promo-small .c-promo__content > div {
        margin: 5px !important;
    }

    .c-promo.c-promo--hide-in-mobile {
        display: none;
    }
}

@media (min-width: 992px) {
    .c-promo {
        padding: 75px 0 100px;
    }

        .c-promo.c-promo-small {
            padding: 16px 0 20px;
        }

        .c-promo.c-promo--large {
            padding: 200px 0 400px;
        }
}

.c-promo > .component-content {
    width: 100%;
    height: 100%;
    color: var(--white_05);
}

.c-promo__link {
    pointer-events: none;
    display: block;
    height: 100%;
}

    .c-promo__link,
    .c-promo__link:hover,
    .c-promo__link:active,
    .c-promo__link:focus {
        color: inherit;
    }

        .c-promo__link[href] {
            cursor: pointer;
        }

.c-promo__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .c-promo__image > img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.c-promo__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .c-promo__content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.c-promo__content .container {
    padding: 0;
}

.c-promo__content h1 {
    color: inherit;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.57);
}

.c-promo--products .c-promo__content h1 {
    color: var(--blue_primary);
    text-shadow: none;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .c-promo--products .c-promo__content h1 {
        font-size: 36px;
        line-height: normal;
        margin: 0 0 20px;
    }
}

@media (min-width: 992px) {
    .c-promo--products .c-promo__content h1 {
        font-size: 47px;
        line-height: normal;
        margin: 0 0 20px;
    }
}

.c-promo--products .c-promo__content h2 {
    color: var(--gray_06);
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 400;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .c-promo--products .c-promo__content h2 {
        font-size: 20px;
        margin: 0;
        line-height: normal;
        font-weight: 500;
    }
}

.c-promo--products .c-promo__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    width: 688px;
    max-width: 100%;
    min-height: 100px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .c-promo--products .c-promo__buttons {
        -ms-flex-flow: nowrap;
        flex-flow: nowrap;
    }
}

.c-promo--products .c-promo__buttons .c-promo__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.33%;
    flex: 0 1 33.33%;
    margin-bottom: 15px;
    -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (min-width: 768px) {
    .c-promo--products .c-promo__buttons .c-promo__button {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 120px;
        flex: 0 1 120px;
    }
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(6) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(7) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(8) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(9) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.c-promo--products .c-promo__buttons .c-promo__button:nth-child(10) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.c-promo--products .c-promo__buttons .c-promo__button .component,
.c-promo--products .c-promo__buttons .c-promo__button .component-content,
.c-promo--products .c-promo__buttons .c-promo__button button,
.c-promo--products .c-promo__buttons .c-promo__button .c-radio,
.c-promo--products .c-promo__buttons .c-promo__button .c-radio__label {
    height: 100%;
    min-height: 100px;
}

.c-promo--products .c-promo__buttons .c-promo__button .c-radio {
}

.c-promo--products .c-promo__buttons .c-promo__button .component {
    margin-right: 8px;
}

@media (min-width: 992px) {
    .c-promo--products .c-promo__buttons .c-promo__button:last-child .component {
        margin-right: 0;
    }
}

.c-promo--products .c-promo__buttons .c-promo__button button {
    background: none;
    border: 0;
    padding: 0;
    width: 100%;
}

.c-promo--products .c-promo__buttons .c-radio__label {
    /*width: auto;*/
    padding: 5px 10px;
    border: 1px solid var(--white_05);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 500;
    font-family: "omnes-pro", Helvetica, Verdana, Tahoma, sans-serif;
    line-height: 17px;
}

@media (min-width: 768px) {
    .c-promo--products .c-promo__buttons .c-radio__label {
        padding: 10px;
        font-size: 14px;
    }

    .c-promo--products .c-promo__buttons .c-promo__button .component,
    .c-promo--products .c-promo__buttons .c-promo__button .component-content,
    .c-promo--products .c-promo__buttons .c-promo__button button,
    .c-promo--products .c-promo__buttons .c-promo__button .c-radio,
    .c-promo--products .c-promo__buttons .c-promo__button .c-radio__label {
        min-height: 130px;
    }
}

.c-promo--products .c-promo__buttons .c-radio__label:hover {
    background-color: var(--blue_05);
    border: 1px solid var(--blue_05);
    opacity: 1;
}

    .c-promo--products .c-promo__buttons .c-radio__label:hover .c-radio__desc {
        color: var(--white_05);
    }

.c-promo--products .c-promo__buttons .c-radio__label svg {
    width: 60px;
    height: 60px;
    max-width: 100%;
}

.c-promo--products .c-promo__buttons .c-radio__label .c-radio__desc {
    font-size: 11px;
    color: var(--gray_05);
    margin: 5px 0 0;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

@media (min-width: 768px) {
    .c-promo--products .c-promo__buttons .c-radio__label .c-radio__desc {
        font-size: 12px;
        margin: 5px 0 0;
    }
}

.c-promo--products .c-promo__buttons .c-radio__icon {
    height: auto;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .c-promo--products .c-promo__buttons .c-radio__icon {
        margin-bottom: 10px;
    }
}

.c-promo--products .c-promo__buttons .c-radio__icon img {
    display: block;
    width: 50px;
    height: auto;
}

.c-promo--products .c-promo__highlight {
    background-color: var(--yellow_07);
    color: var(--gray_06);
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    max-width: 681px;
    border-radius: 3px;
}

.c-promo__badges {
    width: 100%;
    position: absolute;
    bottom: -45px;
    left: 0;
    z-index: 2;
    text-align: center;
}

@media (min-width: 768px) {
    .c-promo__badges {
        text-align: right;
    }
}

.c-promo__badge {
    display: inline-block;
    margin-left: 10px;
}

@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes puff-in-center {
    0% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes puff-in-center {
    0% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

/* ========================================================================
  #BREADCRUMB
  ======================================================================== */
.c-breadcrumb {
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .c-breadcrumb {
        padding-left: 0;
        padding-right: 0;
    }
}

.c-breadcrumb.breadcrumb-navigation {
    overflow: visible;
}

.c-breadcrumb ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.c-breadcrumb .field-title {
    display: inline-block;
}

.c-breadcrumb .separator {
    margin: 0 5px;
    color: var(--yellow_07);
    display: inline-block;
    vertical-align: middle;
}

.c-breadcrumb li {
    position: relative;
    display: block;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .c-breadcrumb li > .navigation-title {
        display: inline-block;
        vertical-align: middle;
    }

        .c-breadcrumb li > .navigation-title > a {
            text-decoration: none;
            color: var(--midGray_04);
        }

            .c-breadcrumb li > .navigation-title > a:hover,
            .c-breadcrumb li > .navigation-title > a:active,
            .c-breadcrumb li > .navigation-title > a:focus {
                color: var(--darkblue_07);
            }

    .c-breadcrumb li.last {
        -ms-flex-negative: 1;
        flex-shrink: 1;
    }

        .c-breadcrumb li.last > .navigation-title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

            .c-breadcrumb li.last > .navigation-title > a {
                color: var(--blue_primary);
            }

        .c-breadcrumb li.last .separator {
            display: none;
        }

/* ========================================================================
  #ARTICLE
  ======================================================================== */
.c-article__info {
    font-weight: 400;
    font-style: italic;
}

/* ========================================================================
  #TESTIMONIAL
  ======================================================================== */
.c-testimonial {
    width: 100%;
}

.c-testimonial__title {
    text-align: center;
    padding-top: 30px;
}

.c-testimonial__wrapper {
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 50px 30px 30px 30px;
    position: relative;
}

@media (min-width: 768px) {
    .c-testimonial__wrapper {
        padding: 50px;
    }
}

.c-testimonial__wrapper:before {
    content: " ";
    background-image: url("../../scti/Images/testimonial/quotation-mark.svg");
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 30px;
    background-size: 16px;
}

@media (min-width: 768px) {
    .c-testimonial__wrapper:before {
        top: 25px;
        background-size: 19px;
    }
}

@media (min-width: 768px) {
    .c-testimonial__grouped .c-testimonial__wrapper {
        padding: 50px 40px 40px 40px;
    }
}

.c-testimonial__testimonial {
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .c-testimonial__testimonial {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .c-testimonial__grouped .c-testimonial__testimonial {
        font-size: 16px;
        line-height: 19px;
    }
}

.c-testimonial__author {
    color: var(--blue_primary);
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    padding-top: 12px;
}

@media (min-width: 768px) {
    .c-testimonial__author {
        font-size: 16px;
    }
}

/* ========================================================================
  #CTA
  ======================================================================== */
.c-cta {
    width: 100%;
    padding-left: 33px;
    padding-right: 33px;
    margin-bottom: 30px;
    min-height: 50px;
}

@media (min-width: 768px) {
    .c-cta {
        padding-left: 0;
        padding-right: 0;
    }
}

.c-cta--wrapper {
    padding-right: 0;
    padding-left: 0;
    border-bottom: 1px solid var(--darkwhite_07);
}

@media (min-width: 768px) {
    .c-cta--wrapper {
        border-right: 1px solid var(--darkwhite_07);
        border-bottom: none;
    }
}

.c-cta--wrapper:last-child {
    border-bottom: none;
    border-right: none;
}

.c-cta--wrapper a:hover,
.c-cta--wrapper a:active {
    text-decoration: none;
}

.c-cta__image {
    border-radius: 50%;
    background-color: var(--lightBlue_02);
    height: 70px;
    width: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    float: left;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-right: 18px;
}

@media (min-width: 768px) {
    .c-cta__image {
        margin-right: 0;
        float: none;
        height: 98px;
        width: 98px;
        margin: auto;
    }
}

.c-cta__image img {
    max-width: 40px;
}

@media (min-width: 768px) {
    .c-cta__image img {
        margin: auto;
        display: block;
        max-width: 55px;
    }
}

.c-cta__title {
    color: var(--midGray_04);
    text-decoration: none;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 16px;
    height: 100%;
    float: left;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .c-cta__title {
        display: block;
        margin-bottom: none;
        margin-top: 17px;
        text-align: center;
        font-size: 18px;
        float: none;
        height: auto;
    }
}

.c-cta__link {
    display: block;
    width: 100%;
    height: 100%;
}

    .c-cta__link a {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
    }

.c-cta__link--arrow {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 15px;
    font-size: 25px;
    height: 100%;
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .c-cta__link--arrow {
        display: none;
    }
}

.c-cta__link--readmore {
    display: none;
}

@media (min-width: 768px) {
    .c-cta__link--readmore {
        display: block;
        width: 120px;
        margin: auto;
        margin-top: 18px;
        font-size: 15px;
        text-align: center;
        padding: 5px 10px;
        font-weight: 500;
    }
}

/* ========================================================================
  #GROUPED TESTIMONIALS
  ======================================================================== */
.c-testimonial__grouped .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .c-testimonial__grouped .flex .c-testimonial__grouped-testimonials {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

@media (min-width: 992px) {
    .c-testimonial__grouped .flex .c-testimonial__grouped-testimonials {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 80%;
    }
}

.c-testimonial__grouped .flex .c-testimonial__grouped-testimonials .c-testimonial__grouped-testimonial {
    float: left;
    width: 100%;
    padding-right: 0;
    padding-bottom: 25px;
}

@media (min-width: 992px) {
    .c-testimonial__grouped .flex .c-testimonial__grouped-testimonials .c-testimonial__grouped-testimonial {
        width: 50%;
        padding-right: 40px;
        padding-bottom: 0;
    }
}

.c-testimonial__grouped .flex .c-testimonial__grouped-images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
}

    .c-testimonial__grouped .flex .c-testimonial__grouped-images img {
        display: inline-block;
        margin: auto;
    }

    .c-testimonial__grouped .flex .c-testimonial__grouped-images .feefo img {
        display: block;
    }

@media (min-width: 992px) {
    .c-testimonial__grouped .flex .c-testimonial__grouped-images {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 20%;
    }

        .c-testimonial__grouped .flex .c-testimonial__grouped-images .feefo {
            bottom: 0;
            position: absolute;
        }
}

/* ==========================================================================
   #SOCIAL SHARE
   ========================================================================== */
.c-social-share {
    text-align: center;
    width: 100%;
}

    .c-social-share .component-content > h3 {
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        color: var(--blue_primary);
        margin-bottom: 15px;
    }

    .c-social-share .component-content ul {
        font-size: 0;
        margin: 0;
        list-style: none;
        margin-bottom: 30px;
    }

        .c-social-share .component-content ul > li {
            display: inline-block;
        }

        .c-social-share .component-content ul > li {
            margin-left: 3.75px;
            margin-right: 3.75px;
        }

.c-social-share__btn {
    display: inline-block;
    cursor: pointer;
}

/* ========================================================================
  #HAMBURGER
  ======================================================================== */
.c-card {
    border: 1px solid var(--darkwhite_07);
    margin: auto;
    max-width: 390px;
    background-color: var(--white_05);
}

.c-card__media {
    position: relative;
    padding-top: 75%;
}

    .c-card__media > img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
    }

.c-card__tags {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: -5px;
}

@media (min-width: 992px) {
    .c-card__tags {
        right: 30px;
    }
}

.c-card__tag {
    margin-bottom: 5px;
    margin-left: 5px;
    color: var(--blue_primary);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.8);
}

.c-card__content {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0;
}

.c-card__title {
    font-size: 18px;
    padding-right: 20px;
    padding-left: 20px;
    color: var(--gray_06);
    text-align: center;
}

@media (min-width: 768px) {
    .c-card__title {
        min-height: 56px;
        font-size: 26px;
    }
}

.c-card__actions {
    text-align: center;
    font-size: 16px;
}

.c-card__action {
    margin-bottom: 10px;
}

    .c-card__action > .c-btn__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODUuMzQzIDE4NS4zNDMiPjxwYXRoIGQ9Ik01MS43MDcgMTg1LjM0M2ExMC42OTIgMTAuNjkyIDAgMCAxLTcuNTkzLTMuMTQ5IDEwLjcyNCAxMC43MjQgMCAwIDEgMC0xNS4xNzVsNzQuMzUyLTc0LjM0N0w0NC4xMTQgMTguMzJjLTQuMTk0LTQuMTk0LTQuMTk0LTEwLjk4NyAwLTE1LjE3NSA0LjE5NC00LjE5NCAxMC45ODctNC4xOTQgMTUuMTggMGw4MS45MzQgODEuOTM0YzQuMTk0IDQuMTk0IDQuMTk0IDEwLjk4NyAwIDE1LjE3NWwtODEuOTM0IDgxLjkzOWExMC42NzggMTAuNjc4IDAgMCAxLTcuNTg3IDMuMTV6IiBmaWxsPSIjMDA5QURFIi8+PC9zdmc+);
        background-position: center;
        background-repeat: no-repeat;
    }

/* ========================================================================
  #SEARCH RESULTS
  ======================================================================== */
.c-search-results .search-result-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: -5px;
    margin-left: -5px;
}

@media (min-width: 768px) {
    .c-search-results .search-result-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.c-search-results .search-result-list > li {
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .c-search-results .search-result-list > li {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 33.333333%;
        flex: 1 1 33.333333%;
        max-width: 33.333333%;
        padding-right: 5px;
        padding-left: 5px;
    }
}

.c-search-results .search-result-list .c-card {
    height: 100%;
    position: relative;
}

.c-search-results-accordion li {
    border-bottom: 1px solid var(--darkwhite_07);
}

    .c-search-results-accordion li ul {
        padding-left: 20px;
    }

        .c-search-results-accordion li ul li {
            border-bottom: 0;
        }

.c-search-results-accordion .collapse:not(.show) {
    display: none;
}

.c-search-results-accordion .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    transition: height .35s ease;
}

.c-search-results-accordion__title {
    margin-bottom: 0;
    padding-right: 15px;
}

.c-search-results-accordion__link {
    font-family: "omnes-pro", Helvetica, Verdana, Tahoma, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    background: none;
    border: none;
    padding: 7.5px 0;
    width: 100%;
    text-align: left;
    color: var(--blue_primary);
}

    .c-search-results-accordion__link:hover,
    .c-search-results-accordion__link:active,
    .c-search-results-accordion__link:focus {
        text-decoration: none;
        color: var(--blue_primary);
    }

@media (min-width: 768px) {
    .c-search-results-accordion__link {
        padding: 20px 0;
        padding-bottom: 7.5px;
    }
}

.c-search-results-accordion__link.collapsed {
    color: var(--midGray_04);
}

@media (min-width: 768px) {
    .c-search-results-accordion__link.collapsed {
        padding-bottom: 20px;
    }
}

.c-search-results-accordion__link.collapsed .fa {
    background: none;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.c-search-results-accordion__link .fa {
    margin-left: auto;
    color: var(--blue_primary);
    background-color: var(--lightBlue_02);
    font-size: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    padding-left: 10px;
    padding-right: 10px;
}

.c-search-results-accordion__answer {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .c-header-accordion .items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}



@media (min-width: 768px) {
    .c-header-accordion .item {
        width: 20%;
        border-bottom: none;
    }
}

.c-header-accordion .item:last-child {
    border-bottom: none;
}

.c-header-accordion .item.active .field-heading:after {
    content: '\f106';
}

.c-header-accordion .item .field-heading:after {
    font-family: FontAwesome;
    font-size: 16px;
    content: '\f107';
    float: right;
}

@media (min-width: 768px) {
    .c-header-accordion .item .field-heading:after {
        content: '';
    }
}

.c-header-accordion .toggle-header {
    border-bottom: none;
}

@media (min-width: 768px) {
    .c-header-accordion .toggle-header {
    }
}

.c-header-accordion .toggle-header .component .field-heading {
    padding: 7.5px 0;
    font-size: 14px;
    font-weight: 500;
}

    .c-header-accordion .toggle-header .component .field-heading:before {
        display: none;
    }

.c-header-accordion .toggle-header .label {
    padding: 0;
    z-index: 0;
}

.c-header-accordion .toggle-content {
    padding: 0;
}

@media (min-width: 768px) {
    .c-header-accordion .toggle-content {
        display: block !important;
    }
}

.c-header-accordion .link-list h3 {
    color: var(--white_05);
    font-size: 15px;
}

.c-header-accordion .link-list ul {
    margin-bottom: 15px;
}

.c-header-accordion .field-heading a {
    color: var(--white_05) !important;
}

    .c-header-accordion .field-heading a.hover {
        color: red;
        text-decoration: none;
    }

        .c-header-accordion .field-heading a.hover:hover {
            text-decoration: underline;
        }

.c-header-accordion .link-list a {
    display: block;
    color: var(--white_05);
    margin-bottom: 7.5px;
    font-size: 14px;
}



@media (min-width: 768px) {
    .c-footer-accordion .items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.c-footer-accordion .item {
    border-bottom: 2px solid var(--midGray_07);
}

@media (min-width: 768px) {
    .c-footer-accordion .item {
        width: 20%;
        border-bottom: none;
    }
}

.c-footer-accordion .item:last-child {
    border-bottom: none;
}

.c-footer-accordion .item.active .field-heading:after {
    content: '\f106';
}

.c-footer-accordion .item .field-heading:after {
    font-family: FontAwesome;
    font-size: 16px;
    content: '\f107';
    float: right;
}

@media (min-width: 768px) {
    .c-footer-accordion .item .field-heading:after {
        content: '';
    }
}

.c-footer-accordion .toggle-header {
    border-bottom: none;
}

@media (min-width: 768px) {
    .c-footer-accordion .toggle-header {
        pointer-events: none;
    }
}

.c-footer-accordion .toggle-header .component .field-heading {
    padding: 7.5px 0;
    font-size: 14px;
    font-weight: 500;
}

    .c-footer-accordion .toggle-header .component .field-heading:before {
        display: none;
    }

.c-footer-accordion .toggle-header .label {
    padding: 0;
    z-index: 0;
}

.c-footer-accordion .toggle-content {
    padding: 0;
}

@media (min-width: 768px) {
    .c-footer-accordion .toggle-content {
        display: block !important;
    }
}

.c-footer-accordion .link-list h3 {
    display: none;
}

.c-footer-accordion .link-list ul {
    margin-bottom: 15px;
}

.c-footer-accordion .link-list a {
    display: block;
    color: var(--silver_05);
    margin-bottom: 7.5px;
    font-size: 14px;
}

/* ========================================================================
  #SEARCH FORM
  ======================================================================== */
.c-search-form {
    background-color: rgba(251, 251, 251, 0.3);
    padding: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    .c-search-form {
        padding: 50px;
    }
}

.c-search-form > .component-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
    margin-left: -10px;
}

    .c-search-form > .component-content .col-8 > .row {
        margin: 0;
    }

    .c-search-form > .component-content .twitter-typeahead,
    .c-search-form > .component-content .search-box-button {
        margin-bottom: 10px;
    }

    .c-search-form > .component-content .twitter-typeahead {
        width: 100%;
    }

.c-search-form .search-box-input {
    height: 59px;
    width: 100%;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--lightGray_05);
    background-color: var(--white_05);
}

.c-search-form .facet-dropdown {
    width: 100%;
}

.c-search-form .facet-heading {
    display: none;
}

.c-search-form .facet-dropdown-select {
    height: 59px;
    width: 100%;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--lightGray_05);
    background-color: var(--white_05);
}

.c-search-form .search-box-button {
    height: 59px;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    background-color: var(--blue_primary);
    color: var(--white_05);
    font-size: 17px;
    font-family: inherit;
    border: none;
    font-weight: 500;
    text-align: center;
}

/* ========================================================================
  #LOAD MORE BTN
  ======================================================================== */
.c-load-more {
    margin: auto;
}

    .c-load-more > .component-content > input {
        min-width: 290px;
        margin-bottom: 30px;
    }

.c-questions__question:first-child {
    border-top: 1px solid var(--gainsboro_03);
    padding-top: 40px;
}

.c-questions__question:last-child {
    border: 0;
    padding: 0;
    margin: 0;
}

.c-questions__question {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gainsboro_03);
    margin-bottom: 30px;
}

.c-questions__title {
    color: var(--gray_06);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 40px;
    padding: 0 30px;
}

@media (min-width: 992px) {
    .c-questions__title {
        font-size: 21px;
        padding: 0 100px;
    }
}

.c-questions__answers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-questions__answer {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .c-questions__answer {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 240px;
        flex: 0 1 240px;
    }
}

.c-questions__button {
    width: 100%;
    height: 100%;
}

.c-requirements__list .c-requirements__requirement:last-child {
    border: 0;
}

.c-requirements__requirement {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gainsboro_05);
}

.c-requirements__heading {
    margin-bottom: 7.5px;
}

@media (min-width: 768px) {
    .c-requirements__heading {
        margin-bottom: 0;
    }
}

.c-requirements__icon {
    margin-right: 7.5px;
    width: 46px;
    height: 46px;
}

@media (min-width: 992px) {
    .c-requirements__icon {
        margin-right: 15px;
        width: 64px;
        height: 64px;
    }
}

.c-requirements__title {
    color: var(--blue_07);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding-right: 10px;
}

@media (min-width: 992px) {
    .c-requirements__title {
        font-size: 20px;
        line-height: 25px;
    }
}

.c-requirements__description {
    color: var(--black_08);
    font-size: 14px;
    line-height: 1.22;
    font-weight: 400;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .c-requirements__description {
        margin-bottom: 0;
    }
}

.c-requirements__subtext {
    color: var(--gray_06);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
}

.c-requirements__helper {
    color: var(--blue_primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .c-requirements__helper {
        margin-bottom: 0;
    }
}

/*------------------------------------*\
  #FORMS
\*------------------------------------*/
.c-label {
    display: block;
}

.c-input-text {
    outline: none;
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
    padding: 11px 6px;
    vertical-align: middle;
    height: 59px;
    width: 100%;
    border-radius: 4px;
    background-color: var(--white_05);
    border: 1px solid var(--lightGray_05);
}

.c-input-text--traveller-age {
    width: 70px;
    border: 1px solid var(--lightGray_05);
    text-align: center;
    font-family: "omnes-pro", Helvetica, Verdana, Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray_06);
    margin-right: 7.5px;
    margin-bottom: 15px;
}

.c-radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.c-radio:not(:last-child) {
    margin-right: 15px;
}

.c-radio__radio {
    position: absolute;
    top: auto;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    white-space: nowrap;
}

    .c-radio__radio:checked + .c-radio__label {
        border: 1px solid var(--blue_primary);
        background-color: var(--blue_primary);
        color: var(--white_05);
        box-shadow: 0 5px 10px 0 rgba(0, 139, 206, 0.34);
    }

        .c-radio__radio:checked + .c-radio__label .c-radio__sublabel {
            color: var(--white_05);
        }

        .c-radio__radio:checked + .c-radio__label svg path,
        .c-radio__radio:checked + .c-radio__label svg rect {
            fill: var(--white_05);
        }

.c-radio__label {
    display: block;
    border: 1px solid var(--lightGray_05);
    border-radius: 3px;
    width: 107px;
    height: 100%;
    text-align: center;
    padding: 15px 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
}

    .c-radio__label:hover,
    .c-radio__label:active,
    .c-radio__label:focus {
        border: 1px solid var(--blue_primary);
        background-color: var(--blue_primary);
        color: var(--white_05);
        box-shadow: 0 5px 10px 0 rgba(0, 139, 206, 0.34);
    }

        .c-radio__label:hover .c-radio__sublabel,
        .c-radio__label:hover .c-radio__desc,
        .c-radio__label:active .c-radio__sublabel,
        .c-radio__label:active .c-radio__desc,
        .c-radio__label:focus .c-radio__sublabel,
        .c-radio__label:focus .c-radio__desc {
            color: var(--white_05);
        }

        .c-radio__label:hover svg path,
        .c-radio__label:hover svg rect,
        .c-radio__label:active svg path,
        .c-radio__label:active svg rect,
        .c-radio__label:focus svg path,
        .c-radio__label:focus svg rect {
            fill: var(--white_05);
        }

    .c-radio__label svg {
        display: block;
        height: auto;
    }

        .c-radio__label svg path,
        .c-radio__label svg rect {
            -webkit-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
        }

.c-radio__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 67px;
    margin-bottom: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-radio__sublabel {
    font-weight: 500;
    color: var(--midGray_04);
    font-size: 12px;
    line-height: 15px;
    opacity: 0.6;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.c-form-help {
    background-color: var(--white_05);
    border-radius: 3px;
    padding: 15px 30px;
    margin-bottom: 15px;
    color: var(--midGray_04);
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    max-width: 755px;
    font-size: 13px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .c-form-help {
        font-size: initial;
    }
}

.c-form-help strong {
    color: black;
    font-weight: 500;
}

.c-form-feedback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--white_05);
    color: var(--blue_primary);
    border: 2px solid var(--blue_primary);
    border-radius: 3px;
    padding: 15px;
    margin-bottom: 15px;
}

.c-form-feedback__icon {
    width: 26px;
    height: 26px;
    margin-right: 7.5px;
}

    .c-form-feedback__icon circle {
        stroke: var(--blue_primary);
    }

    .c-form-feedback__icon path {
        fill: var(--blue_primary);
    }

.c-form-error {
    color: red;
    font-size: 13px;
}

.c-input-field {
    position: relative;
}

    .c-input-field.focused .c-input-field__label,
    .c-input-field.populated .c-input-field__label {
        color: var(--blue_primary);
        font-size: 13px;
        pointer-events: none;
        top: 9px;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

    .c-input-field.focused input[type='text'],
    .c-input-field.populated input[type='text'] {
        padding-top: 10px;
    }

.c-input-field__label {
    color: var(--gray_06);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
    cursor: text;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.c-input-field__input {
    height: 60px;
    padding: 0px 15px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-overflow: ellipsis;
    outline: none;
    display: block;
    border: 1px solid var(--lightGray_05);
    border-radius: 4px;
    background-color: var(--white_05);
    font-size: 16px;
    font-family: "omnes-pro", Helvetica, Verdana, Tahoma, sans-serif;
    font-weight: 500;
    color: var(--gray_06);
}

/*------------------------------------*\
  #ERRORS
\*------------------------------------*/
.c-error-message {
    color: var(--tomato_07);
    font-size: 12px;
}

.c-input-text.error,
.c-input-field.error input {
    border: 1px solid var(--tomato_07);
}


/* ========================================================================
  #FULL WIDTH COVER CONTAINER
  ======================================================================== */
.c-full-cover {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

    .c-full-cover:before {
        content: '';
        position: absolute;
        bottom: 50%;
        right: 0;
        width: 100%;
        height: 50%;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.18)), to(var(--white_05)));
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.18) 0%, var(--white_05) 100%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, var(--white_05) 100%);
    }

    .c-full-cover:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: var(--white_05);
    }

    .c-full-cover > .component-content {
        position: relative;
        z-index: 1;
    }

.c-travellers_traveller {
    padding: 60px 0 30px 0;
}

    .c-travellers_traveller:first-child {
        padding-top: 0;
    }

    .c-travellers_traveller:nth-child(odd) {
        background: var(--white_02);
    }

    .c-travellers_traveller:nth-child(even) {
        background: var(--white_05);
    }

    .c-travellers_traveller:last-child {
        padding-bottom: 0;
    }

#quote-journey {
    width: 100%;
}

.c-quote-wizard {
    width: 100%;
    min-height: 100%;
    background-color: var(--darkwhite_04);
    opacity: 0.97;
    padding: 30px 0;
}

@media (min-width: 768px) {
    .c-quote-wizard {
        padding: 60px 0;
    }
}

.c-quote-wizard__actions {
    text-align: right;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .c-quote-wizard__actions {
        padding: 0;
    }
}

.c-quote-wizard__actions .c-btn {
    margin-left: 15px;
}

.c-quote-wizard__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
}

    .c-quote-wizard__content .c-btn {
        width: auto;
    }

        .c-quote-wizard__content .c-btn:disabled {
            background-color: var(--lightGray_05);
            box-shadow: none;
        }

@media (min-width: 768px) {
    .c-quote-wizard__content .c-btn {
        width: auto;
    }
}

.c-quote-step__title {
    line-height: 1;
    max-width: 755px;
    margin-bottom: 7.5px;
}

.c-quote-step__subtitle {
    font-size: 16px;
    font-weight: 500;
}

.c-quote-step__counter {
    color: var(--gray_06);
}

.c-quote-step__questions {
    color: var(--gray_06);
}

.ReactModal__Overlay--after-open {
    z-index: 10;
}

.c-autocomplete .c-form-feedback {
    margin-bottom: 7.5px;
}

.c-autocomplete__search-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 7.5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 768px) {
    .c-autocomplete__search-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.c-autocomplete__search-container .c-btn {
    width: 200px;
    padding-left: 0;
    padding-right: 0;
}

.c-autocomplete__search {
    position: relative;
    width: 100%;
    background-color: var(--white_05);
    border: 1px solid var(--lightGray_05);
    border-radius: 3px;
    padding: 0 7.5px;
    margin-right: 7.5px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .c-autocomplete__search {
        margin-bottom: 0;
    }
}

.c-autocomplete--active .c-autocomplete__search {
    border-color: var(--blue_primary);
    box-shadow: 0 0 10px 0 rgba(0, 139, 206, 0.34);
}

.c-autocomplete__label {
    position: absolute;
    top: 50%;
    left: 22.5px;
    margin-top: -12px;
    color: var(--gray_06);
    font-size: 16px;
    pointer-events: none;
}

.c-autocomplete--active .c-autocomplete__label {
    color: var(--blue_primary);
    font-size: 13px;
    top: 7.5px;
    margin-top: 0;
}

.c-autocomplete__input {
    width: 100%;
    border: none;
    border-radius: 3px;
    font-family: "omnes-pro", Helvetica, Verdana, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 2.5;
    padding: 5px;
}

.c-autocomplete__icon {
    position: absolute;
    width: 41px;
    height: 33px;
    top: 50%;
    right: 15px;
    margin-top: -16px;
}

.c-autocomplete__select,
.c-autocomplete__results {
    background-color: var(--white_05);
    border-radius: 3px;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
}

.c-autocomplete__select-container {
    padding: 30px;
}

.c-autocomplete__select-header {
    color: var(--blue_primary);
    margin-bottom: 0;
    border-bottom: 1px solid var(--midGray_04);
    padding-bottom: 15px;
    line-height: 1;
}

.c-autocomplete__select-helper {
    font-style: italic;
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
}

.c-autocomplete__select-subheader {
    margin-bottom: 7.5px;
}

.c-autocomplete__select-list-item {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
}

.c-autocomplete__select-link {
    color: var(--gray_06);
}

.c-autocomplete__select-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid var(--lightGray_05);
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    padding: 15px 60px;
}

.c-autocomplete__select-icon {
    width: 26px;
    height: 26px;
    margin-right: 7.5px;
}

.c-autocomplete__results {
    margin-bottom: 7.5px;
    padding: 15px 7.5px;
}

.c-autocomplete__results-list {
    margin-bottom: 0;
}

.c-autocomplete__results-link {
    display: block;
    padding: 3.75px 15px;
    color: var(--gray_06);
    font-weight: 400;
}

.c-autocomplete__results-suggestion {
    font-weight: 500;
}

.c-autocomplete__selections {
    margin-top: 7.5px;
}

.c-autocomplete__selections-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.c-autocomplete__selections-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--gray_06);
    color: var(--white_05);
    padding: 7.5px 15px;
    border-radius: 3px;
    margin-bottom: 7.5px;
    font-weight: 400;
}

    .c-autocomplete__selections-item:not(:last-child) {
        margin-right: 7.5px;
    }

.c-autocomplete__selections-link {
    color: var(--white_05);
}

.c-autocomplete__selections-icon {
    width: 14px;
    height: 14px;
    margin-left: 7.5px;
}

    .c-autocomplete__selections-icon rect {
        fill: var(--white_05);
    }

/* ==========================================================================
   #SELECT
   ========================================================================== */
.c-select {
    min-width: 80px;
    max-width: 100%;
}

.c-select-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.c-select-group__label {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-right: 15px;
}

.c-select-group__icon {
    display: block;
}

.c-select--large {
    margin-right: 10px;
}

@media (min-width: 768px) {
    .c-select--large {
        margin-right: 30px;
    }
}

.c-select--large .c-select__value-container {
    padding: 7.5px 15px;
    padding-right: 0;
}

    .c-select--large .c-select__value-container > div {
        width: 30px;
    }

.c-select--large .c-select__single-value,
.c-select--large .c-select__placeholder {
    color: var(--blue_primary);
    font-family: "omnes-pro", Helvetica, Verdana, Tahoma, sans-serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1;
}

.c-select--large .c-select__indicator-separator {
    display: none;
}

.c-select--large .c-select__indicator {
    padding: 2px;
}

@media (min-width: 768px) {
    .c-select--large .c-select__indicator {
        padding: 0;
    }
}

.c-select--large .c-select__indicator svg {
    fill: var(--blue_primary);
    width: 30px;
    height: 30px;
}

/* ========================================================================
  #LOADING SPINNER
  ======================================================================== */
.c-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 50;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
}

.c-loading__symbol {
    display: block;
    margin: auto;
}

.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
}

    .sk-folding-cube .sk-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

        .sk-folding-cube .sk-cube:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--blue_primary);
            -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
            animation: sk-foldCubeAngle 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .sk-folding-cube .sk-cube2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        -ms-transform: scale(1.1) rotate(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .sk-folding-cube .sk-cube3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        -ms-transform: scale(1.1) rotate(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .sk-folding-cube .sk-cube4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        -ms-transform: scale(1.1) rotate(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .sk-folding-cube .sk-cube2:before {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .sk-folding-cube .sk-cube3:before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .sk-folding-cube .sk-cube4:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

@-webkit-keyframes sk-foldCubeAngle {

    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {

    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

.c-tab {
    height: 100%;
    border-radius: 5px;
    border: 1px solid var(--gainsboro_07);
    cursor: pointer;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    width: 100%;
}

@media (min-width: 768px) {
    .c-tab {
        margin-bottom: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
    }
}

.c-tab.is-active {
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    background-color: var(--white_05);
    border: 0;
}

.c-tabs__tab-list {
    margin-bottom: 30px;
}

.c-tab__container {
    width: 100%;
    position: relative;
}

@media (min-width: 768px) {

    .c-tab__icon,
    .c-tab__title {
        display: inline-block;
        vertical-align: middle;
    }
}

.c-tab__icon {
    margin-bottom: 7.5px;
}

@media (min-width: 768px) {
    .c-tab__icon {
        margin-bottom: 0;
        position: absolute;
        left: 20px;
    }
}

.c-tab__title {
    color: var(--blue_primary);
    font-weight: 500;
    line-height: 1.27;
    font-size: 17px;
}

@media (min-width: 992px) {
    .c-tab__title {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .c-tab__content {
        padding: 0 15px;
    }
}



/* ========================================================================
  #HIDE DEVICES
  ======================================================================== */
@media all and (max-width: 576px) {
    .u-hide-small {
        display: none !important;
    }
}

@media all and (min-width: 577px) and (max-width: 767px) {
    .u-hide-medium {
        display: none !important;
    }
}

@media all and (min-width: 768px) and (max-width: 991px) {
    .u-hide-large {
        display: none !important;
    }
}

@media all and (min-width: 992px) {
    .u-hide-extra-large {
        display: none !important;
    }
}

/* ========================================================================
  #TEXT-ALIGN
  ======================================================================== */
.u-text-center {
    text-align: center;
}

.u-text-left {
    text-align: left;
}

.u-text-right {
    text-align: right;
}

/* ========================================================================
  #LINKS
  ======================================================================== */
.u-underline-links a {
    text-decoration: underline;
}

.u-width-100 {
    width: 100%;
}

.u-width-90 {
    width: 90%;
}

.u-width-80 {
    width: 80%;
}

.u-width-70 {
    width: 70%;
}

.u-width-60 {
    width: 60%;
}

.u-width-50 {
    width: 50%;
}

.u-width-40 {
    width: 40%;
}

.u-width-30 {
    width: 30%;
}

.u-width-20 {
    width: 20%;
}

.u-width-10 {
    width: 10%;
}

.u-no-padding {
    padding: 0;
}

.u-no-margin {
    margin: 0;
}

.xa-variable {
    border: 0px;
    padding: 1px;
    margin: 0px;
    background-color: var(--linen_05);
    color: var(--midGray_09);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

#breadcrumbMenuSubcontrol_context_menu * {
    box-sizing: initial;
}

.Clickablefalse {
    pointer-events: none;
}

.without-header-margin h1,
.without-header-margin h2,
.without-header-margin h3,
.without-header-margin h4,
.without-header-margin h6,
.without-header-margin h5 {
    margin-bottom: 0px !important;
}

.c-footer__awards--au {
    /*    background-color: #000;*/
}

/*desktop based media queries*/
@media (min-width: 992px) {
    .c-footer__awards--nz {
        margin-top: -50px;
        margin-right: -30px;
    }

    .c-footer__awards--au {
        margin-top: -20px;
        /*margin-right:20px;*/
    }
}

/* mobile  based media queries */
@media (max-width: 991px) {

    .c-footer__nav,
    .c-footer-accordion .items {
        margin-bottom: 0px;
    }

    .c-footer__social {
        padding-top: 0px;
    }

    .c-footer__awards--au {
        margin-top: 15px;
    }

    .c-footer__aside {
        align-items: center;
    }
}

/*Alert banner styling*/

.alertBanner {
    padding: 10px;
}

    .alertBanner a {
        color: var(--white_05);
    }

    .alertBanner p {
        margin-bottom: 0px !important;
        text-align: center;
    }

.close-alert button {
    display: block;
    margin-left: auto;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-align: right !important;
    margin-right: 0px;
}

    .close-alert button:hover {
        opacity: 1;
        transform: rotate(90deg);
    }

.close-alert:hover:after {
    transform: rotate(0deg);
    transition: all .5s;
}

#shielded-logo {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    position: absolute;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle,
.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle,
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow,
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before,
.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before,
.react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
    box-sizing: content-box;
    position: absolute;
    border: 8px solid transparent;
    height: 0;
    width: 1px;
}

    .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before,
    .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before,
    .react-datepicker__year-read-view--down-arrow::before,
    .react-datepicker__month-read-view--down-arrow::before,
    .react-datepicker__month-year-read-view--down-arrow::before {
        content: "";
        z-index: -1;
        border-width: 8px;
        left: -8px;
        border-bottom-color: var(--silver_08);
    }

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
    top: 0;
    margin-top: -8px;
}

    .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle,
    .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
        border-top: none;
        border-bottom-color: var(--white_06);
    }

        .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
            top: -1px;
            border-bottom-color: var(--silver_08);
        }

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle,
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
    bottom: 0;
    margin-bottom: -8px;
}

    .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle,
    .react-datepicker__year-read-view--down-arrow,
    .react-datepicker__month-read-view--down-arrow,
    .react-datepicker__month-year-read-view--down-arrow,
    .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before,
    .react-datepicker__year-read-view--down-arrow::before,
    .react-datepicker__month-read-view--down-arrow::before,
    .react-datepicker__month-year-read-view--down-arrow::before {
        border-bottom: none;
        border-top-color: var(--white_05);
    }

        .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before,
        .react-datepicker__year-read-view--down-arrow::before,
        .react-datepicker__month-read-view--down-arrow::before,
        .react-datepicker__month-year-read-view--down-arrow::before {
            bottom: -1px;
            border-top-color: var(--silver_08);
        }

.react-datepicker-wrapper {
    display: inline-block;
}

.react-datepicker {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    background-color: var(--white_05);
    color: var(--black_10);
    border: 1px solid var(--silver_08);
    border-radius: 0.3rem;
    display: inline-block;
    position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
    left: 35px;
}

.react-datepicker--time-only .react-datepicker__time-container {
    border-left: 0;
}

.react-datepicker--time-only .react-datepicker__time {
    border-radius: 0.3rem;
}

.react-datepicker--time-only .react-datepicker__time-box {
    border-radius: 0.3rem;
}

.react-datepicker__triangle {
    position: absolute;
    left: 50px;
}

.react-datepicker-popper {
    z-index: 1;
}

    .react-datepicker-popper[data-placement^="bottom"] {
        margin-top: 10px;
    }

    .react-datepicker-popper[data-placement^="top"] {
        margin-bottom: 10px;
    }

    .react-datepicker-popper[data-placement^="right"] {
        margin-left: 8px;
    }

        .react-datepicker-popper[data-placement^="right"] .react-datepicker__triangle {
            left: auto;
            right: 42px;
        }

    .react-datepicker-popper[data-placement^="left"] {
        margin-right: 8px;
    }

        .react-datepicker-popper[data-placement^="left"] .react-datepicker__triangle {
            left: 42px;
            right: auto;
        }

.react-datepicker__header {
    text-align: center;
    background-color: var(--white_06);
    border-bottom: 1px solid var(--silver_08);
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    padding-top: 8px;
    position: relative;
}

.react-datepicker__header--time {
    padding-bottom: 8px;
    padding-left: 5px;
    padding-right: 5px;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
    display: inline-block;
    margin: 0 2px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
    margin-top: 0;
    color: var(--black_10);
    font-weight: bold;
    font-size: 0.944rem;
}

.react-datepicker-time__header {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.react-datepicker__navigation {
    background: none;
    line-height: 1.7rem;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 10px;
    width: 0;
    padding: 0;
    border: 0.45rem solid transparent;
    z-index: 1;
    height: 10px;
    width: 10px;
    text-indent: -999em;
    overflow: hidden;
}

.react-datepicker__navigation--previous {
    left: 10px;
    border-right-color: var(--silver_04);
}

    .react-datepicker__navigation--previous:hover {
        border-right-color: var(--silver_09);
    }

.react-datepicker__navigation--previous--disabled,
.react-datepicker__navigation--previous--disabled:hover {
    border-right-color: #e6e6e6;
    cursor: default;
}

.react-datepicker__navigation--next {
    right: 10px;
    border-left-color: var(--silver_04);
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
    right: 80px;
}

.react-datepicker__navigation--next:hover {
    border-left-color: var(--silver_09);
}

.react-datepicker__navigation--next--disabled,
.react-datepicker__navigation--next--disabled:hover {
    border-left-color: #e6e6e6;
    cursor: default;
}

.react-datepicker__navigation--years {
    position: relative;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.react-datepicker__navigation--years-previous {
    top: 4px;
    border-top-color: var(--silver_04);
}

    .react-datepicker__navigation--years-previous:hover {
        border-top-color: var(--silver_09);
    }

.react-datepicker__navigation--years-upcoming {
    top: -4px;
    border-bottom-color: var(--silver_04);
}

    .react-datepicker__navigation--years-upcoming:hover {
        border-bottom-color: var(--silver_09);
    }

.react-datepicker__month-container {
    float: left;
}

.react-datepicker__month {
    margin: 0.4rem;
    text-align: center;
}

    .react-datepicker__month .react-datepicker__month-text {
        display: inline-block;
        width: 4rem;
        margin: 2px;
    }

.react-datepicker__input-time-container {
    clear: both;
    width: 100%;
    float: left;
    margin: 5px 0 10px 15px;
    text-align: left;
}

    .react-datepicker__input-time-container .react-datepicker-time__caption {
        display: inline-block;
    }

    .react-datepicker__input-time-container .react-datepicker-time__input-container {
        display: inline-block;
    }

        .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
            display: inline-block;
            margin-left: 10px;
        }

            .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
                width: 85px;
            }

                .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-inner-spin-button,
                .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-outer-spin-button {
                    -webkit-appearance: none;
                    margin: 0;
                }

                .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"] {
                    -moz-appearance: textfield;
                }

        .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
            margin-left: 5px;
            display: inline-block;
        }

.react-datepicker__time-container {
    float: right;
    border-left: 1px solid var(--silver_08);
    width: 70px;
}

.react-datepicker__time-container--with-today-button {
    display: inline;
    border: 1px solid var(--silver_08);
    border-radius: 0.3rem;
    position: absolute;
    right: -72px;
    top: 0;
}

.react-datepicker__time-container .react-datepicker__time {
    position: relative;
    background: var(--white_05);
}

    .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
        width: 70px;
        overflow-x: hidden;
        margin: 0 auto;
        text-align: center;
    }

        .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
            list-style: none;
            margin: 0;
            height: -webkit-calc(195px + (1.7rem / 2));
            height: calc(195px + (1.7rem / 2));
            overflow-y: scroll;
            padding-right: 0px;
            padding-left: 0px;
            width: 100%;
            box-sizing: content-box;
        }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
                height: 30px;
                padding: 5px 10px;
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
                    cursor: pointer;
                    background-color: var(--white_06);
                }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
                background-color: var(--blue_lapis);
                color: var(--white_05);
                font-weight: bold;
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
                    background-color: var(--blue_lapis);
                }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
                color: var(--silver_04);
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
                    cursor: default;
                    background-color: transparent;
                }

.react-datepicker__week-number {
    color: var(--silver_04);
    display: inline-block;
    width: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    margin: 0.166rem;
}

    .react-datepicker__week-number.react-datepicker__week-number--clickable {
        cursor: pointer;
    }

        .react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
            border-radius: 0.3rem;
            background-color: var(--white_06);
        }

.react-datepicker__day-names,
.react-datepicker__week {
    white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
    color: var(--black_10);
    display: inline-block;
    width: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    margin: 0.166rem;
}

.react-datepicker__month--selected,
.react-datepicker__month--in-selecting-range,
.react-datepicker__month--in-range {
    border-radius: 0.3rem;
    background-color: var(--blue_lapis);
    color: var(--white_05);
}

    .react-datepicker__month--selected:hover,
    .react-datepicker__month--in-selecting-range:hover,
    .react-datepicker__month--in-range:hover {
        background-color: var(--brown_saddle);
    }

.react-datepicker__month--disabled {
    color: var(--silver_04);
    pointer-events: none;
}

    .react-datepicker__month--disabled:hover {
        cursor: default;
        background-color: transparent;
    }

.react-datepicker__day,
.react-datepicker__month-text {
    cursor: pointer;
}

    .react-datepicker__day:hover,
    .react-datepicker__month-text:hover {
        border-radius: 0.3rem;
        background-color: var(--white_06);
    }

.react-datepicker__day--today,
.react-datepicker__month-text--today {
    font-weight: bold;
}

.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted {
    border-radius: 0.3rem;
    background-color: #3dcc4a;
    color: var(--white_05);
}

    .react-datepicker__day--highlighted:hover,
    .react-datepicker__month-text--highlighted:hover {
        background-color: #32be3f;
    }

.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1 {
    color: magenta;
}

.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2 {
    color: green;
}

.react-datepicker__day--selected,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range {
    border-radius: 0.3rem;
    background-color: var(--blue_lapis);
    color: var(--white_05);
}

    .react-datepicker__day--selected:hover,
    .react-datepicker__day--in-selecting-range:hover,
    .react-datepicker__day--in-range:hover,
    .react-datepicker__month-text--selected:hover,
    .react-datepicker__month-text--in-selecting-range:hover,
    .react-datepicker__month-text--in-range:hover {
        background-color: var(--brown_saddle);
    }

.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected {
    border-radius: 0.3rem;
    background-color: #2a87d0;
    color: var(--white_05);
}

    .react-datepicker__day--keyboard-selected:hover,
    .react-datepicker__month-text--keyboard-selected:hover {
        background-color: var(--brown_saddle);
    }

.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range {
    background-color: rgba(33, 107, 165, 0.5);
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range,
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range {
    background-color: var(--white_06);
    color: var(--black_10);
}

.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled {
    cursor: default;
    color: var(--silver_04);
}

    .react-datepicker__day--disabled:hover,
    .react-datepicker__month-text--disabled:hover {
        background-color: transparent;
    }

.react-datepicker__month-text.react-datepicker__month--selected:hover,
.react-datepicker__month-text.react-datepicker__month--in-range:hover {
    background-color: var(--blue_lapis);
}

.react-datepicker__month-text:hover {
    background-color: var(--white_06);
}

.react-datepicker__input-container {
    position: relative;
    display: inline-block;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
    border: 1px solid transparent;
    border-radius: 0.3rem;
}

    .react-datepicker__year-read-view:hover,
    .react-datepicker__month-read-view:hover,
    .react-datepicker__month-year-read-view:hover {
        cursor: pointer;
    }

        .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
        .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
        .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
        .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
        .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
        .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
            border-top-color: var(--silver_09);
        }

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
    border-top-color: var(--silver_04);
    float: right;
    margin-left: 20px;
    top: 8px;
    position: relative;
    border-width: 0.45rem;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
    background-color: var(--white_06);
    position: absolute;
    width: 50%;
    left: 25%;
    top: 30px;
    z-index: 1;
    text-align: center;
    border-radius: 0.3rem;
    border: 1px solid var(--silver_08);
}

    .react-datepicker__year-dropdown:hover,
    .react-datepicker__month-dropdown:hover,
    .react-datepicker__month-year-dropdown:hover {
        cursor: pointer;
    }

.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
    height: 150px;
    overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
    line-height: 20px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .react-datepicker__year-option:first-of-type,
    .react-datepicker__month-option:first-of-type,
    .react-datepicker__month-year-option:first-of-type {
        border-top-left-radius: 0.3rem;
        border-top-right-radius: 0.3rem;
    }

    .react-datepicker__year-option:last-of-type,
    .react-datepicker__month-option:last-of-type,
    .react-datepicker__month-year-option:last-of-type {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border-bottom-left-radius: 0.3rem;
        border-bottom-right-radius: 0.3rem;
    }

    .react-datepicker__year-option:hover,
    .react-datepicker__month-option:hover,
    .react-datepicker__month-year-option:hover {
        background-color: var(--silver_04);
    }

        .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
        .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
        .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
            border-bottom-color: var(--silver_09);
        }

        .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
        .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
        .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
            border-top-color: var(--silver_09);
        }

.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
    position: absolute;
    left: 15px;
}

.react-datepicker__close-icon {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    outline: 0;
    padding: 0;
    vertical-align: middle;
    position: absolute;
    height: 16px;
    width: 16px;
    top: 25%;
    right: 7px;
}

    .react-datepicker__close-icon::after {
        background-color: var(--blue_lapis);
        border-radius: 50%;
        bottom: 0;
        box-sizing: border-box;
        color: var(--white_05);
        content: "\00d7";
        cursor: pointer;
        font-size: 12px;
        height: 16px;
        width: 16px;
        line-height: 1;
        margin: -8px auto 0;
        padding: 2px;
        position: absolute;
        right: 0px;
        text-align: center;
    }

.react-datepicker__today-button {
    background: var(--white_06);
    border-top: 1px solid var(--silver_08);
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    padding: 5px 0;
    clear: left;
}

.react-datepicker__portal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    left: 0;
    top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 2147483647;
}

    .react-datepicker__portal .react-datepicker__day-name,
    .react-datepicker__portal .react-datepicker__day,
    .react-datepicker__portal .react-datepicker__time-name {
        width: 3rem;
        line-height: 3rem;
    }

@media (max-width: 400px), (max-height: 550px) {

    .react-datepicker__portal .react-datepicker__day-name,
    .react-datepicker__portal .react-datepicker__day,
    .react-datepicker__portal .react-datepicker__time-name {
        width: 2rem;
        line-height: 2rem;
    }
}

.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
    font-size: 1.44rem;
}

.react-datepicker__portal .react-datepicker__navigation {
    border: 0.81rem solid transparent;
}

.react-datepicker__portal .react-datepicker__navigation--previous {
    border-right-color: var(--silver_04);
}

    .react-datepicker__portal .react-datepicker__navigation--previous:hover {
        border-right-color: var(--silver_09);
    }

.react-datepicker__portal .react-datepicker__navigation--previous--disabled,
.react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover {
    border-right-color: #e6e6e6;
    cursor: default;
}

.react-datepicker__portal .react-datepicker__navigation--next {
    border-left-color: var(--silver_04);
}

    .react-datepicker__portal .react-datepicker__navigation--next:hover {
        border-left-color: var(--silver_09);
    }

.react-datepicker__portal .react-datepicker__navigation--next--disabled,
.react-datepicker__portal .react-datepicker__navigation--next--disabled:hover {
    border-left-color: #e6e6e6;
    cursor: default;
}

.react-datepicker-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 768px) {
    .react-datepicker-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 350px;
    }
}

.react-datepicker-group .c-select {
    min-width: 200px;
    max-width: 100%;
}

.react-datepicker-wrapper {
    margin-right: 15px;
    padding-bottom: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .react-datepicker-wrapper {
        padding-bottom: 0;
    }
}

.react-datepicker__input-container {
    height: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .react-datepicker__input-container {
        width: auto;
    }
}

.react-datepicker__input-inner-container {
    height: 100%;
    border: 1px solid var(--lightGray_05);
    border-radius: 3px;
    background-color: var(--white_05);
}

.react-datepicker__input-inner-container--empty:not(.react-datepicker__input-inner-container--active) .react-datepicker__label {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    color: var(--gray_06);
    font-size: 16px;
}

.react-datepicker__input-inner-container--empty:not(.react-datepicker__input-inner-container--active) .react-datepicker__input {
    height: 100%;
}

.react-datepicker__input-inner-container--empty:not(.react-datepicker__input-inner-container--active) .react-datepicker__icon path {
    fill: var(--gray_06);
}

.react-datepicker__input-inner-container--active {
    border-color: var(--blue_primary);
    box-shadow: 0 0 10px 0 rgba(0, 139, 206, 0.34);
}

    .react-datepicker__input-inner-container--active .react-datepicker__icon path {
        fill: var(--blue_primary);
    }

.react-datepicker__label {
    position: absolute;
    top: 15px;
    left: 15px;
    display: block;
    color: var(--blue_primary);
    font-size: 13px;
    pointer-events: none;
}

.react-datepicker__input {
    border: none;
    border-radius: 3px;
    font-family: "omnes-pro", Helvetica, Verdana, Tahoma, sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 15px;
    padding-top: -webkit-calc(15px + 24px);
    padding-top: calc(15px + 24px);
}

@media (max-width: 767px) {
    .c-quote-step .react-datepicker__input {
        width: 100%;
    }
}

.react-datepicker__icon {
    position: absolute;
    width: 19px;
    height: 19px;
    top: 50%;
    margin-top: -10px;
    right: 15px;
    pointer-events: none;
}

    .react-datepicker__icon path {
        fill: var(--gray_06);
    }

.c-travellers_traveller .react-datepicker__input {
    padding: 15px 15px 0 15px;
    margin: 0;
    height: 60px;
}

.c-travellers_traveller .react-datepicker__label {
    top: 9px;
}

.react-datepicker {
    border: none;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    padding: 7.5px;
}

.react-datepicker__triangle {
    display: none;
}

.react-datepicker__header {
    background-color: var(--white_05);
    border-bottom: none;
}

.react-datepicker__day-names .react-datepicker__day-name {
    color: var(--blue_primary);
    margin: 7.5px;
    font-size: 13px;
}

.react-datepicker__month {
    font-size: 13px;
}

.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range,
.react-datepicker__month--selecting-range .react-datepicker__day--in-range {
    background-color: #D9F0FA;
    color: var(--gray_06);
}

.react-datepicker__day--selected,
.react-datepicker__day--range-start,
.react-datepicker__day--range-end {
    background-color: var(--blue_primary);
    color: var(--white_05);
}

.react-datepicker__day {
    margin: 7.5px;
    border-radius: 50%;
}

    .react-datepicker__day:hover {
        background-color: var(--blue_primary);
        color: var(--white_05);
        border-radius: 50%;
    }

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle,
.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle,
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
    margin-left: -8px;
    position: absolute;
}


/*#region ImageCard*/

.card-wrapper {
    display: flex;
    overflow: hidden;
    align-items: stretch;
    flex-wrap: wrap;
}

.card {
    width: var(--card-width);
    min-width: var(--card-width);
    display: flex;
    flex-direction: column;
    align-content: stretch;
    background: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 10px;
}


.card-header {
    padding: 0;
    position: relative;
}

    .card-header .no-image {
        border: #009ADE solid 1px;
        height: 150px
    }

.card-image-custom img {
    width: 369px !important;
    height: 151px !important;
}

.card-header .header-text {
    height: var(--card-header-height);
    width: var(--card-header-width);
    background: #009ADE;
    color: #ffffff;
    position: absolute;
    top: 0;
    font-style: normal;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.015em;
    padding: 0px 10px;
}

    .card-header .header-text .secondary-text {
        display: block;
        margin-top: -10px;
    }

.card-content {
    padding: 1.5rem;
    min-height: 200px;
}

    .card-content .body-header {
        font-style: normal;
        font-size: 24px;
        line-height: 36px;
        letter-spacing: -0.015em;
        color: #000000;
        margin: 0px !important;
        padding: 0% !important;
    }

    .card-content .body-text {
        margin-top: 1.1rem;
    }

.card-footer {
    padding: 1.5rem;
    margin-top: auto;
}

.card .btn {
    font-size: 16px;
    line-height: 17px;
    letter-spacing: -0.015em;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid #18A0FB;
    border-radius: 6px;
    color: #18A0FB;
    cursor: pointer;
    width: 113px;
    margin: 0 0 24px 24px;
}

.card a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}

.loginBtn__nz,
.loginBtn__nz-active {
    display: none;
}

.loginBtn__nz-active {
    background: #E7447B;
    padding: 4px 16px;
    border-radius: 30px;
    color: white !important;
}

.loginBtn__nz {
    background: #E7447B;
    padding: 4px 16px;
    border-radius: 30px;
    color: white !important;
}

/*#endregion ImageCard*/

@font-face {
    font-family: "Agrandir";
    src: url("../fonts/fontawesome/Agrandir-TightBlack.ttf");
}

@font-face {
    font-family: "Omnes";
    src: url("../fonts/fontawesome/Omnes-Medium.ttf");
}

@font-face {
    font-family: "Omnes-Semibold";
    src: url("../fonts/fontawesome/Omnes-Semibold.ttf");
}

.scti-au-hero {
    background: linear-gradient(270deg, #262521 0%, #262521 49%, #01426a 51%);
    display: flex;
    overflow: hidden;
    height: 460px;
    width: 100%;
}

.scti-au-hero-container {
    background: #01426a;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 1280px;
}

.scti-au-hero-content-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 66%;
}

.scti-au-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 56px 40px 48px 0px;
}

.scti-au-hero-image-awards-container {
    position: relative;
    width: 34% !important;
    display: flex;
}

.scti-au-hero-image {
    object-fit: cover;
    object-position: left;
    height: 100%;
}

.scti-au-star {
    position: absolute;
    top: -42px;
    right: -109px;
    width: 220px;
    height: 261.25px;
    z-index: 100;
}

.scti-au-hero-content-pretext {
    font-family: "Omnes-Semibold";
    font-size: 44px;
    font-weight: 700;
    transform: rotate(-2deg);
    color: #f7b5c8;
    text-transform: uppercase;
    margin: 0px;
    padding-left: 24px;
    padding-right: 12px;
    line-height: 100%;
}

.scti-au-hero-content-title {
    font-family: "Agrandir";
    font-size: 44px;
    font-weight: 900;
    transform: rotate(-2deg);
    line-height: 90%;
    letter-spacing: 1.52px;
    margin: 0px;
    color: #f7b5c8;
    text-transform: uppercase;
    padding-left: 28px;
    padding-right: 12px;
}

.scti-au-hero-content-title-highlight {
    color: #ffffff;
}

.scti-au-hero-content-subtitle {
    font-family: "Omnes";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0px;
    color: #ffffff;
    padding-left: 24px;
    padding-right: 12px;
}

.scti-au-hero-content-cta-container {
    padding-left: 24px;
    padding-right: 12px;
}

.scti-au-hero-cta {
    padding: 10px 20px;
    border-radius: 100px;
    background: #f7b5c8;
    color: #01426a;
    text-decoration: none;
    display: flex;
    justify-content: center;
    font-family: "Omnes";
    font-size: 16px;
    font-weight: 500;
}

.scti-au-hero-awards-container {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0px 40px 40px 40px;
    flex-wrap: wrap;
}


.scti-au-hero-award {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .7));
}

.scti-au-hero-awards-line-one {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    & .scti-au-hero-award

{
    height: 96px;
}

}

.scti-au-hero-awards-line-two {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    & .scti-au-hero-award

{
    height: 41px;
}

}

@media only screen and (max-width: 1200px) {
    .scti-au-hero-content-container {
        width: 50% !important;
    }
}


/* Media query for screen sizes up to 992px */
@media only screen and (max-width: 992px) {
    .scti-au-hero {
        height: 568px;
    }

    .scti-au-hero-content-container {
        width: 60% !important;
    }

    .scti-au-hero-image-awards-container {
        width: 40% !important;
    }

    .scti-au-hero-awards-container {
        padding: 0px 40px 40px 40px;
        bottom: 0;
    }

    .scti-au-hero-image {
        width: 100%;
    }
}


/* Media query for screen sizes up to 768px */
@media only screen and (max-width: 768px) {
    .scti-au-hero {
        min-height: 865px !important;
    }

    .scti-au-hero-container {
        flex-direction: column;
    }

    .scti-au-hero-content-container {
        width: 100% !important;
        height: 60% !important;
    }

    .scti-au-hero-content {
        gap: 16px;
        padding: 56px 24px 48px 24px !important;
        width: 100%;
    }

    .scti-au-star {
        top: 439px !important;
        right: -60px !important;
        height: 190px !important;
        z-index: 100;
    }

    .scti-au-hero-content-pretext {
        font-size: 40px;
        padding-left: 14px;
    }

    .scti-au-hero-content-title {
        padding-left: 20px;
    }

    .scti-au-hero-content-cta-container {
        padding-left: 20px;
    }

    .scti-au-hero-image-awards-container {
        width: 100% !important;
        align-items: flex-end;
        height: 40%;
    }

    .scti-au-hero-awards-container {
        padding: 150px 24px 32px 24px;
        width: auto;
    }
}


.mySctiButton {
    background: #dc582a;
    padding: 10px 20px;
    border-radius: 30px;
    color: #ffffff !important;
}