.select2-hidden-accessible {
    display: none;
}

.select2 {
    font-size: 24px;
    color: #555460;
    font-weight: 700;
    line-height: 24px;
}


.select2-selection__rendered {
    line-height: 20px!important;
}

span.select2-selection__arrow {
    width: 24px;
    height: 24px;
    
    display: block;
    position: relative;
    cursor: pointer;
}

span.select2-selection__arrow:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    top: 50%;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 5px;
    border-right-width: 5px;
    border-top: 5px solid #555460;
    transition: .15s;
}

.select2-selection.select2-selection--single {
    display: flex;
    align-items: center;
}

.select2-container--open span.select2-selection__arrow:before {
    transform: translate(-50%, -50%) rotate(180deg);
}

span.select2-search.select2-search--dropdown {
    display: none;
}


span.select2-container.select2-container--default.select2-container--open {
    width: 48px;
    margin-top: 30px;
    background: #000;
    z-index: 2;
}

ul.select2-results__options li {
    color: #555460;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    border-bottom: 1px dashed;
    margin: 0 0 6px;
    padding-right: 8px;
    cursor: pointer;
}

ul.select2-results__options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0 5px;
}

ul.select2-results__options li:last-child {
    margin: 0;
}

ul.select2-results__options li.select2-results__option--selected {
    display: none;
}