.side-by-side-select {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-select-parent {
    width: 50%;
}

.from-select-header {
    padding-left: 5px;
}

.form-select-parent select {
    width: 100%;
    border-radius: 0;
}

.form-select-parent select:focus {
    border-color: #ced4da !important;
    box-shadow: none !important;
}

.to-select-parent {
    width: 50%;
}

.to-select-parent select {
    width: 100%;
    border-left: 0;
    border-radius: 0 5px 5px 0;
}

.to-select-parent select:focus {
    border-color: #ced4da !important;
    box-shadow: none !important;
}

.to-select-header {
    padding-left: 5px;
}

.from-select-header,
.to-select-header {
    text-align: center;
    padding: 8px 0;
    border: 1px solid #ced4da;
    border-bottom: 0;
    font-weight: 500;
}

@media (max-width: 425px) {
    .side-by-side-select {
        display: block;
    }

    .form-select-parent,
    .to-select-parent {
        width: 100%;
        margin-bottom: 15px;
    }

    .to-select-parent {
        margin-bottom: 0;
    }

    .to-select-parent select {
        border-left: 1px solid#ced4da;
        border-radius: 0;
    }

    .form-select-parent select {
        border-radius: 0;
    }
}

.to-select-parent select option:checked {
    background-color: transparent !important;
}