.planifica-tu-ruta-columna-1 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);

    .row-1 {

        .input-icon-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;

            i.fa-search {
                position: absolute;
                top: 10px;
                right: 2%;
                color: #00475C;
                pointer-events: none;
                font-size: 22px;
            }

            ul#search-results {
                display: none;
                background-color: white;
                border: 1px solid var(--black);
                list-style: none;
                padding-left: 5px;
                gap: 5px;
                flex-direction: column;
                padding-top: 5px;
                padding-bottom: 5px;
                z-index: 1000;
                max-height: 300px;
                overflow-y: auto;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
                position: absolute;
                width: 100%;

                li.is-suggestion-active > a {
                    background-color: var(--grey-100, #f5f5f5);
                }
            }
        }
    }

    .row-2 {
        display: flex;
        flex-direction: row;
        gap: var(--spacing-sm);

        .input-block {
            flex: 1 1 calc(90% - 4px);
        }

        .arrows {
            flex: 1 1 calc(10% - 4px);
        }
    }

    .row-3 {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        gap: var(--spacing-sm);

        .text-custom {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: var(--black);
        }

        #search-center-checkbox {
            accent-color: var(--primary-base);
            width: 22px;
            height: 22px;
        }

        .search-by-center,
        .search-by-company {
            font-size: 16px;
            line-height: 24px;
            text-decoration: underline solid var(--primary-base);
            font-weight: 600;
            color: var(--primary-base);
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: var(--spacing-sm);
            font-family: 'Inter', sans-serif;
        }
    }

    .get-instructions {
        padding: 8px 12px;
        background-color: var(--primary-base);
        color: white;
        border-radius: 3px;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        border: 1px solid var(--primary-base);
    }
}