.relative {
    position: relative;
}
.form__row-dropdown.form__row-dropdown-address {
    position: static;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    z-index: 1;
    pointer-events: all;
    display: flex
;
    align-items: center;
}

.form__row-dropdown-address.form__row-dropdown svg {
    position: absolute;
    left: 7px;
    width: 1rem;
    height: .7rem;
    display: block;
    fill: #b0b0b0;
}

.form__row-dropdown-address.form__row-dropdown .form__input--select {
    padding-left: 20px;
    color: #8C8C8C;
}

.form__row-dropdown-address.form__row-dropdown .form__input--select.form__input--select-chosen {
    color: #000;
}

.header__nav-specifications {
    display: block;
}

@media screen and (max-width: 767px) {
    .header__nav-specifications {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .header__nav-list {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        padding: 0;
        margin: 0;
    }

    .header__nav-list-item {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

.auto-inner-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .auto-inner-desktop {
        display: none;
    }

    .auto-inner-mobile {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .specifications-wrapper {
        display: flex;
        flex-flow: row nowrap;
    }

    .specifications-wrapper .header__nav-specifications .header__nav-list {
        display: flex;
        flex-flow: column;
        width: fit-content;
    }
    .specifications-wrapper .header__nav-list-item:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: auto;
        width: .3rem;
        height: 100%;
        background-color: #fd6317;
        margin: 0 auto;
        transform: scaleX(0);
        transition: transform .3s ease;
    }
    .specifications-wrapper .header__nav-list-item {
        padding: 1rem 0;
        cursor: pointer;
    }
}

.plan-description {
    margin-top: 10px;
    font-size: 14px;
    text-align: justify;
    margin-right: 20px;
}

.statements__col-row-width {
    width: 16.6%;
}

@media screen and (max-width: 767px) {
    .statements__col-row-width {
        width: 100%;
    }
}

.orange-highlighted-text {
    color:#fd6317;
    background-color: #fff4ec;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
    display: inline;
}

.form--collapsible {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.form--collapsible.is-open {
    max-height: 3000px;
    opacity: 1;
}

.car__remove-custom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    transition: transform .3s ease;
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
}

.car__remove-custom svg {
    width: 100%;
    height: 100%;
    fill: #888;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .car__remove-custom { right: 1.5rem; }
}

@media screen and (min-width: 1025px) {
    .car__remove-custom:hover { transform: rotate(10deg); }
}
.form__upload-item-image-wrap img {
    object-fit: contain;
}