.landing-select {
    position: relative;
    display: flex;
    /*overflow: hidden;*/
    align-items: center;
    width: 250px;
    height: 52px;
    background-color: #fff;
    border-radius: 12px;
    padding: 11px 24px;
    cursor: pointer;
}

.landing-list_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.landing-list_arrow {
    transform: rotate(180deg);
}

.landing-select_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
}

.landing-select_inner > input {
    width: 100%;
}

.input-arrow {
    position: absolute;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.input-arrow.rotate {
    top: auto;
    transform: rotate(180deg);
}

.landing-select_inner,
.landing-select_inner > input {
    cursor: pointer;
}

.landing-select_inner > input {
    font-size: 16px;
    line-height: 24px;
}

.landing-select_inner > input::placeholder {
    color: #000;
}

.landing-list_wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 250px;
    max-height: 349px;
    overflow-y: auto;
    border-radius: 10px;
    top: 58px;
    left: 0;
    background-color: #fff;
    z-index: 15;
    cursor: pointer;
}

.checkbox {
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.disabled {
    background-color: #e9e9e9;
}

.disabled:hover {
    background-color: #e9e9e9 !important;
}

.landing-select_list {
    display: flex;
    flex-direction: column;
}

.landing-input_wrapper {
    display: flex;
    align-items: flex-start;
    grid-gap: 7px;
    padding: 14px 12px 14px 24px;
    transition: all .3s ease;
}

 .landing-input_wrapper:hover {
     background-color: #F5F5F5;
 }

.checkbox label::before {
    color: #E40427;
}

.landing-input_wrapper > label {
    margin-top: -4px;
}

.landing-selected_item {
    display: flex;
    align-items: center;
    height: 30px;
    background-color: #E40427;
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 10px;
    font-weight: 500;
}

.landing-remove_button {
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    margin: 0 -10px 0 8px;
    padding-left: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 8px;
    width: 8px;
    height: 8px;
    line-height: 1;
    opacity: .75;
    border-radius: 0;
    cursor: pointer;
}

.landing-selected_wrapper {
    display: flex;
    grid-gap: 5px;
}