﻿/* Fonts
   ========================================================================== */
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,300,700,500,100);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);
@import url(https://fonts.googleapis.com/css?family=Oswald);

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: normal;
    margin: 0
}

a:-webkit-any-link {
    text-decoration: none
}

/*@supports (text-decoration-color: transparent) {
    a:-webkit-any-link {
        text-decoration: none;
        text-decoration-color: transparent
    }
}*/

ol,
ul {
    /*list-style-type: none;*/
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
    margin: 0
}

p {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0
}

hr {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    border-style: solid;
    border-width: 0
}

:focus {
    outline: none
}

button {
    border: none
}

svg {
    margin: 0
}

textarea {
    resize: none
}

html,
body {    
    color: #1e1e1e;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    /* ### font-size: 16px; */
    line-height: 1.45;
    height: 100%;
    /*padding-top: 60px;*/ 
    position: relative;
    background: #fff;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.header {
    position: fixed; 
    width: 100%; 
    background-color: rgb(19, 22, 26);
    z-index: 9999;
}

.header__content {
    height: 160px;
    /* ### height: 75px; */
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    /* ### max-width: 1200px; */
    padding: 0 30px;
    margin: 0 auto;         
}

.title__header {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size:33px;
    color: #1e1e1e;
}

.title__sub-header {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size:13px;
    color: #1e1e1e;
}

.navbar-inverse .navbar-nav>li>a {
    color: #fff;
}


.inventory__header {
    display: table;
    width: 100%;
    /*padding: 2.5rem 2rem 0;*/


  }

  .inventory__header-left,
  .inventory__header-right {
    display: table-cell;
    white-space: nowrap;
  }

  .inventory__header-right {
    text-align: right;
  }






label {
    display: block
}

.section--light-grey {
    background-color:#F5F5F5;
    padding:30px;  
}

.section--black {
    background-color: rgb(24,21,16);
    background-color: RGB(0,31,49);
    padding:30px;  
}

.button {   
    user-select: none;
    letter-spacing: 1px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: .8rem;
    /* ### font-size: 16px; */
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    color: #fff;
    display: inline-block;
    height: 44px;
    line-height: 44px;
    padding: 0 .8rem;
    /*### padding: 0 1rem;*/
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    text-transform: none;
    vertical-align: middle;
    white-space: nowrap;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out
}

.button:hover {
    cursor: pointer
}

.button--small {
    height: 32px;
    line-height: 32px
}

.button--tag {
    border-radius: 100px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    height: 28px;
    line-height: 28px;
    text-transform: initial;
    padding: 0 0.75rem;
    letter-spacing: inherit
}

.button--full {
    width: 100%
}

.button--primary {
    background-color:#F5931F;
    color:#333333;
    border-radius:4px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1); 
}

.button--secondary {
    background-color:#6C7680;
    color:#ffffff;
    border-radius:4px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}

.button--tender {
    background-color:#6e9e50;
    color:#ffffff;
    border-radius:4px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1); 
}

.button--theme,
#open_filters_desktop {
    background-color: #ff9c22;
    color: #fff
}

.button--theme:active,
#open_filters_desktop:active {
    background-color: #F5931F;
    color: #fff
}

body:not(.not-hover) .button--theme:hover,
body:not(.not-hover) #open_filters_desktop:hover {
    background-color: #F5931F;
    color: #fff
}



.button--black {
    background-color: #1e1e1e;
    color: #fff
}

.button--black:active {
    background-color: #2b2b2b
}

body:not(.not-hover) .button--black:hover {
    background-color: #2b2b2b
}

.button--pink {
    background-color: #e50c5a;
    color: #fff
}

.button--pink:active {
    background-color: #cd0b50
}

body:not(.not-hover) .button--pink:hover {
    background-color: #cd0b50
}

.button--icon {
    width: auto;
    display: inline-block
}

.button.disabled {
    opacity: 0.5;
    pointer-events: none
}

.button--right {
    float: right
}

.button--float {
    position: fixed;
    top: calc(100% - 5rem);
    z-index: 21;
    transform: translateX(-50%);
    left: 50%;
    min-width: 200px
}

.button--white {
    background-color: #fff;
    color: #25282a
}

.button--white:active {
    background-color: #e5e5e5
}

body:not(.not-hover) .button--white:hover {
    background-color: #e5e5e5
}

.button--test-drive {
    background-color: #ffad3b;
    color: #333333
}

#open_filters_desktop svg {
    fill: #fff
}

.button__container {
    padding: 0
}

.button__container.no-top-padding {
    padding-top: 0
}

.button--mobile {
    display: none
}

.button[scrolldowntohide] {
    transform: translate3d(0, -3rem, 0)
}

.button[scrolldowntohide].slideOutDown {
    transform: translate3d(0, 0, 0) !important
}

.button[scrolldowntohide].slideInUp {
    transform: translate3d(0, -3rem, 0) !important
}

@media (max-width: 812px) {
    .button__mobile--full {
        width: 100%
    }
    .inventory__button-fixed.no-footer-spacing {
        bottom: 0
    }
    .button--tag {
        height: 32px;
        line-height: 32px
    }
}

@media (max-width: 544px) {
    .button {
        height: auto;
        white-space: inherit
    }
    .button--mobile {
        display: block;
        position: fixed;
        bottom: 2rem;
        width: calc(100% - 4rem);
        margin-left: 2rem;
        transition: all 0.5s;
        z-index: 1
    }
    .fade-in--up {
        animation: fadeInUp 0.5s forwards
    }
    .fade-out--down {
        animation: fadeOutDown 0.5s forwards
    }
    .button__container {
        padding-bottom: 4rem
    }
}

@media (max-width: 320px) {
    .button {
        font-size: 0.7rem
    }
}

hr {
    margin: 0;
    padding: 0;
    border-top: 1px solid #bebfbf;
    clear: both
}

hr.light {
    border-color: #e5e5e5
}

hr.dark {
    border-color: #5a5a5a
}

hr.gap {
    padding: 0.75rem 0;
    margin: 0;
    content: '';
    border: none
}

hr.gap-medium {
    padding: 0.5rem 0;
    margin: 0;
    content: '';
    border: none
}

hr.gap-small {
    padding: 0.25rem 0;
    margin: 0;
    content: '';
    border: none
}

.vertical__hr {
    border-left: 1px solid #e5e5e5;
    height: 100%
}

b,
strong {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    font-weight: 700
}

p {
    margin: 0;
    padding: 0
}

.inline {
    display: inline
}

.inline-block {
    display: inline-block
}

.relative-container {
    position: relative
}

.overflow--hidden {
    overflow: hidden
}

.u-pull--left {
    clear: both;
    float: left
}

.u-pull--right {
    clear: both;
    float: right
}

.u-stack--left {
    float: left
}

.u-stack--right {
    float: right
}

.u-align--center {
    text-align: center
}

.u-align--left {
    text-align: left
}

.u-align--right {
    text-align: right
}

.u-white-space--nowrap {
    white-space: nowrap
}

.u-align-y--top {
    vertical-align: top
}

.u-align-y--middle {
    vertical-align: middle
}

.u-align-y--bottom {
    vertical-align: bottom
}

.u-no-bottom--padding {
    padding-bottom: 0 !important
}

.u-position--relative {
    position: relative !important
}

.u-position--absolute {
    position: absolute !important
}

.u-height-100 {
    height: 100% !important
}

.u-align-self--center {
    align-self: center
}

.u-justify-content--left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start
}

.u-justify-content--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}

.u-justify-content--right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end
}

.u-justify-content--space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between
}

.u-display-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.u-flex-order-first {
    -webkit-box-ordinal-group: -1;
    -moz-box-ordinal-group: -1;
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1
}

.u-flex-direction-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.u-flex-wrap-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.u-flex-grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.u-align-y--flex-middle {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center
}

.u-align-items--flex-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end
}

.u-align-items--center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center
}

.u-clearfix:not(.u-justify-content--space-between):after {
    content: "";
    display: table;
    clear: both
}

.u-hide-element {
    height: 1px;
    width: 1px;
    z-index: -100;
    position: fixed;
    opacity: 0
}

.u-only-mobile {
    display: none !important
}

.u-display-none {
    display: none !important
}

.u-display-block {
    display: block !important
}

.u-visibility-hidden {
    visibility: hidden
}

.u-white-space--pre-line {
    white-space: pre-line !important
}

.u-overflow-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.u-overflow-y {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.u-side-lines {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center
}

.u-side-lines:before,
.u-side-lines:after {
    content: '';
    border-top: 1px solid #f5f5f5;
    flex: 1 0 1.5rem
}

.u-side-lines:before {
    margin: 0 1.5rem 0 0
}

.u-side-lines:after {
    margin: 0 0 0 1.5rem
}

.u-clickable {
    cursor: pointer
}

.u-w-full {
    width: 100% !important
}

@media (max-width: 544px) {
    .u-mobile-full {
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important
    }
}

@media (max-width: 812px) {
    .u-center-text--mobile {
        text-align: center
    }
    .u-only-mobile {
        display: inherit !important
    }
    .u-only-desktop {
        display: none !important
    }
}

.u-pointer-events-none {
    pointer-events: none
}

.link,
.richtext a:not(.button),
[href^=tel] {
    color: #0397f5;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.45;
    transition: text-decoration-color 0.15s;
    user-select: none;
    text-decoration: none
}

.link:hover,
.richtext a:hover:not(.button),
[href^=tel]:hover {
    text-decoration: underline;
    text-decoration-color: #0397f5
}

[href^=tel] {
    white-space: nowrap
}

.link--spacing {
    margin-left: 0.5rem
}

.link:hover:not(.disabled):not(.footer__link):not(.link--no-underline),
.richtext a:hover:not(.disabled):not(.footer__link):not(.link--no-underline):not(.button),
[href^=tel]:hover:not(.disabled):not(.button) {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: inherit
}

.link--small {
    font-size: .833rem
}

.link--no-underline:hover {
    text-decoration: none
}

.link--icon svg {
    margin-right: 0.5rem;
    margin-left: 0;
    vertical-align: middle
}

.link--icon svg.icon-arrow {
    margin-top: -2px;
    width: 14px;
    height: 14px
}

.link--icon svg.icon--learn {
    margin-top: -2px;
    margin-right: 0.25rem
}

.link--icon svg.icon--wrench {
    margin-top: -3px;
    margin-right: 0.25rem
}

.link--icon svg.icon-location {
    margin-top: -3px;
    margin-right: 0
}

.text--bold {
    color: #1e1e1e;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.45
}

.text--semi-bold {
    font-weight: 600
}

.link--icon:hover:not(.disabled):not(.footer__link) {
    text-decoration: none
}

.link--icon:hover:not(.disabled):not(.footer__link) span {
    text-decoration: underline
}

.link--white {
    color: #fff
}

.link--back {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: .833rem;
    letter-spacing: 1px;
    line-height: 1.2;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: #5a5a5a;
    position: relative;
    left: -3px
}

.link--back .icon-arrow--back {
    margin-right: 0.25rem;
    fill: #5a5a5a
}

.link--external {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: .833rem;
    letter-spacing: 1px;
    line-height: 1.2;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: #0397f5;
    position: relative
}

.link--external .icon-arrow--forward {
    margin-left: 0.25rem;
    fill: #0397f5
}

.label {
    color: #1e1e1e;
    font-size: 1rem;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.45
}

.label--hidden {
    margin: 0;
    height: 0;
    opacity: 0
}

.label__white {
    background-color: #fff
}

.label--uppercase {
    text-transform: uppercase
}

.leading-tight {
    line-height: 1.2 !important
}

.leading-snug {
    line-height: 1.375 !important
}

.leading-normal {
    line-height: 1.5 !important
}

.fineprint {
    color: #25282a;
    font-size: .694rem;
    line-height: 1.45
}

.fineprint a {
    font-size: 0.694rem;
    line-height: 1.45
}

.fineprint.link,
.richtext a.fineprint:not(.button) {
    color: #0397f5
}

.fineprint--grey,
.richtext .highlight__disclaimer {
    color: #5a5a5a;
    font-size: .694rem;
    line-height: 1.45
}

b.fineprint--grey,
.richtext b.highlight__disclaimer {
    color: #5a5a5a;
    font-size: .694rem;
    line-height: 1.45
}

.label--small {
    font-size: .833rem
}

.label--bold {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: .833rem;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #5a5a5a
}

.label--medium {
    font-size: 1rem
}

.label--large {
    font-size: 1.1875rem
}

.label--warning,
.form .fieldset label.label--warning:not(.label__radio) {
    color: #e9590b
}

h1 sub {
    font-size: 1rem
}

h3 sup {
    font-size: .833rem
}

.label--grey {
    color: #5a5a5a !important
}

.label--grey-light {
    color: #c8c8c8 !important
}

.label--grey-darker {
    color: #25282a !important
}

.label--green {
    color: #34c64d !important
}

.label--theme {
    color: #00273e !important
}

.label--highlight-color {
    color: #00273e !important
}

.label--blue {
    color: #0397f5 !important
}

.label--orange {
    color: #eb9013 !important
}

.label--white {
    color: #fff !important
}

.label--brand {
    color: #00273e !important
}

h1,
.h1 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: 2.074rem;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #1e1e1e;
    /*text-transform: uppercase*/
}

h2,
.h2 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: 1.728rem;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #1e1e1e;
    /*text-transform: uppercase*/
}

h3,
.h3 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: 1.44rem;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #1e1e1e;
    /*text-transform: uppercase*/
}

h4,
.h4 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #1e1e1e;
    /*text-transform: uppercase*/
}

h5,
.h5 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #1e1e1e;
    /*text-transform: uppercase*/
}

h6,
.h6 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: .833rem;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #1e1e1e;
    /*text-transform: uppercase*/
}

.text-lg {
    font-size: 1.5em;
}

.text--white {
    color: #fff !important
}

.text--black {
    color: #1e1e1e !important
}

.text--blue {
    color: #0397f5
}

.text--red {
    color:red
}


.text--shadow {
    text-shadow: 0 2px 4px #000
}

/* ---------- Colours ---------------- */
.suttons-blue { color:#00273E }
.blue { color:#2196F3 }
.light-grey { color:#F5F5F5 }
.light-blue { color:#E0E5E8 }
.gold { color:#F5931F }
.black { color:#1E1E1E }
.dark-grey { color:#5A5A5A }
.grey { color:#C8C8C8 }

html {
    -webkit-text-size-adjust: 100%
}

sup {
    line-height: 0 !important
}

sup.no-bold {
    font-weight: normal !important
}

sup.sup--small {
    font-size: 0.8rem
}

sup.sup--xs {
    font-size: 0.6rem
}


.footer {
    /*background: #161819; */
    background: #181510;
    display: table;
    overflow: hidden;
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: auto
}

.footer a {
	color: #ffffff;
	-webkit-transition: .25s;
	-ms-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.footer a:hover {
	color: #09a0f7;
	opacity: .75;
	text-decoration: none;
}

.footer hr {
    border-top: 1px solid #67696a
}

.footer__block {
    width: 100%;
    display: inline-block
}



.footer .bullet-point {
    margin: 0 0.25rem;
    color: #c8c8c8;
    font-size: 0.694rem
}

.footer__title {
    color: #fff
}

.footer__link {
    color: #ffffff;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.45;
    transition: text-decoration-color 0.15s;
    font-size: .833rem;
    width: 100%;
    display: block;
    padding: 8px 0 0
}

.footer__link:hover {
    color: #c8c8c8;
    text-decoration: underline;
    text-decoration-color: #c8c8c8
}

.footer__link .footer__link-hover:hover:not(.disabled),
.footer__link [href^=tel]:hover:not(.disabled),
.footer__link .icon--social:hover+.footer__link-hover:not(.disabled) {
    cursor: pointer;
    text-decoration: underline
}

.footer__link--social {
    width: auto
}

.footer .footer__link--no-padding {
    padding: 0;
    width: inherit;
    display: inline
}

.footer .accordion__content-container {
    padding: 0 2.5rem
}

.footer .accordion__content-container::after {
    height: 3rem
}

.footer .accordion__content-container.social__container::after {
    height: 2.5rem
}

.footer .accordion .title {
    font-size: 1rem
}

.footer .accordion .indicator {
    height: 19px;
    width: 19px
}

.footer .accordion__switch {
    padding: 2rem 1.5rem
}

.footer--mobile {
    display: none
}

.footer--mobile .accordion__switch:hover .title,
.footer--mobile .accordion__switch:hover svg {
    color: #0397f5 !important;
    fill: #0397f5 !important
}

.footer__social {
    font-size: 1rem;
    padding: 2rem 2rem 2rem 1rem
}

.footer .autocx-logo {
    fill: #fff
}


@media (max-width: 812px) {
    .table-responsive {
        width: calc(100vw);
        padding-left: 1.5rem;
        margin-left: -1.5rem
    }
    .table-col-sticky {
        position: sticky;
        background: #fff;
        text-align: center
    }
    .table-col-sticky--right {
        right: 0;
        box-shadow: -1px 0px 0px 0px #c8c8c8
    }
    .table-col-sticky--right:nth-child(2n) {
        background-color: inherit
    }
    .table--fixed .table__header {
        margin: 0
    }
    .table__header {
        margin-bottom: 1rem
    }
    .table__header .table__cell {
        border: 1px solid transparent
    }
    .table__header .table__cell.touch {
        border-color: #0397f5
    }
    .table__header .table__cell.active {
        border-color: #0397f5
    }
    .table__row:last-of-type {
        border-bottom: 1px solid #e5e5e5
    }
    .table__row .table__cell {
        border-left: none;
        width: 100%
    }
    .table__row .table__cell--mobile {
        display: block
    }
    .table__row .table__cell--small {
        width: 20%
    }
    .table--borderless--no-padding .table__row--mobile:not(:first-of-type) {
        margin-top: 1rem
    }
    .table:not(.table--feature):not(.table--borderless--no-padding):not(.table--fixed) .table__row .table__cell.active {
        display: block
    }
    .table:not(.table--feature):not(.table--borderless--no-padding):not(.table--fixed) .table__row .table__cell:not(.active) {
        display: none
    }
    .table--feature .table__header>*:first-child {
        display: none
    }
    .table--feature .table__row>*:first-child {
        display: block
    }
    .table--feature .table__row>*:not(:first-child).active {
        display: block;
        padding-top: 0
    }
    .table--feature .table__row>*:not(:first-child):not(.active) {
        display: none
    }
    .table--borderless .table__row,
    .table--borderless--no-padding .table__row {
        border: none
    }
}

@media (max-width: 812px) {
    .grid>[class*="col--"].table__medium:not(:first-child) {
        margin-top: 3.5rem
    }
}

/*
 * This first rule keeps the radio buttons side-by-side 
 * by forcing the inner element to respect the d-flex container.
 */
.form-check.form-check-inline label {
    display: inline-block !important;
    padding-left: 0.5rem !important;
}


/* * This rule targets the label text following the radio input 
 * and forces the padding with !important.
 */
.form-check-inline .form-check-input + label {
    /* * You might need a larger value, but 0.5rem (approx 8px) is standard.
     * Use a larger value like 1rem if 0.5rem isn't visible.
     */
    padding-left: 0.5rem !important;
}
