.agent--select {
    + .select2 {
        margin-bottom: 9px;
        height: 45px + 16px;

        padding-top: 8px;
        padding-bottom: 8px;

        .select2-selection {
            display: flex;
            justify-content: space-between;
            align-items: center;

            height: 100%;
            padding: 1px 20px;
            border-radius: 2rem !important; //!important to prevent open border changed

            margin-bottom: 2rem;

            .select2-selection {
                &__rendered {
                    padding: 0;
                }

                &__arrow {
                    position: relative;
                }
            }
        }
    }
}

.select2-container--open {
    .select2-dropdown { //stop the borders being removed on the dropdown
        &--below {
            border-top: 1px solid #aaa;
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        &--above {
            border-bottom: 1px solid #aaa;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }
    }
}
