html, body {
    overflow-x: hidden;
}

@media only screen and (min-width: 544px) {
    .formBox {
        background-color: white !important;
    }
}

@media only screen and (max-width: 543px) {
    .formBox {
        border-width: 0px !important;
    }
}

.bg-grey {
    background-color: #eaebed;
}

.islandDropdown {
    border-width: 0px 2px 2px 2px;
    border-style: solid;
    border-color: #eaebed;
}

.bg-dark-blue {
    background-color: #1A5B8D;
}

.bg-hover-dark-blue:hover {
    background-color: #2277b8;
}

.div-bg-hover-dark-blue:hover div {
    background-color: #2277b8;
}

.text-dark-blue { 
    color: #1A5B8D;
}

.text-hover-dark-blue:hover {
    color: #2277b8;
}

.i-text-hover-dark-blue:hover i { 
    color: #2277b8;
}

.formBox .btn-text {
    display: flex;
    align-items: center;
}

.squareIconContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
}

.listMenu {
    list-style-type: none;
}

.build-links a {
    color: #2277b8 !important;
    text-decoration: none;
}

.build-links a:hover,
.build-links a:focus {
    color: #1A5B8D !important;
    text-decoration: none;
}

.form-control:focus {
    border-color: black !important;
    box-shadow: none;
}

.form-control.is-invalid:focus {
    box-shadow: none;
}

.radioInput,
.checkboxInput {
    position: absolute;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.radioButton {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    border: 2px solid #ccc;
    margin: 4px 2px;
}

.radioLabel {
    position: relative;
    padding-left: 40px;
    width: 100%;
    margin: 0;
    cursor: pointer;
}

.radioLabel.radioLabelInline {
    width: auto;
    padding-left: 26px;
    margin-right: 10px;
}

.radioLabel:hover input ~ .radioButton,
.checkboxLabel:hover input ~ .checkboxButton {
    background-color: #eee;
}

.radioButton:after,
.checkboxButton:after {
    content: "";
    position: absolute;
    display: none;
}

.radioLabel input:checked ~ .radioButton:after,
.checkboxLabel input:checked ~ .checkboxButton:after {
    display: block;
}

.radioLabel .radioButton:after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1A5B8D;
    position: 'absolute';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.checkboxButton {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #ccc;
    margin: 4px 2px;
}

.checkboxLabel {
    position: relative;
    padding-left: 26px;
    width: 100%;
    margin: 0;
    cursor: pointer;
}

.checkboxLabel .checkboxButton:after {
    left: 5px;
    top: -6px;
    width: 8px;
    height: 16px;
    border: solid #1A5B8D;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.errorBox {
    border: solid red;
    border-width: 1px;
    border-radius: 10px;
    background-color: #eee;
    margin: 5px 0;
}

.errorBox h4 {
    color: red;
    font-weight: bold;
    font-family: SubaruType-Semibold, sans-serif;
    /*margin-left: 20px;*/
    font-size: 24px;
    margin-top: 10px;
}

.error-text-red {
    display: block;
    color: red;
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 12px;
}

.trim-header {
    font-weight: bold;
    padding-left: 40px;
    color: #6d6e70;
}

.img-top {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%
}

.store-links > a {
    word-break: break-all;
}

.dealer-info {
    text-decoration: underline;
}

.dealer-info:hover {
    opacity: 0.4;
}

#contactDealerButton:disabled, #contactDealerButton.disabled,
#inventoryButton.disabled, #inventoryButton:disabled, 
#buildButton.disabled, #buildButton:disabled {
    display: none;
}

.form-label {
    font-family: var(--primary-font);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--pahoehoe);
}

.form-required {
    color: red;
}

.form-control:focus + .placeholder { 
  display: none;
}

.required-field-label {
    color: var(--pahoehoe);
    margin-bottom: 8px;
}

.errorTextTrim {
    padding-left: 40px;
    margin-bottom: 8px;
    margin-top: -8px;
}