
/* Изменение ширины результатов в выпадающем списке */
.select2 {
    min-width: 100%;
    font-size: 24px;
}

.select2-container--default .select2-results__options {
    max-height: 400px !important;
}
.select2-container--default .select2-results__options {

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.select2-results__option {
    font-size: 18px;
}
.select2-results__option:hover {
    color: white;
    background: var(--btn-th-color);
}
.select2-results__option:active {
    color: white;
    background: var(--btn-th-color);
}
.select2-results__option:focus {
    color: white;
    background: var(--btn-th-color);
}
.select2-container--default .select2-selection--single {
    height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.select2-selection__arrow {
    margin-top: 3px;
    margin-right: 3px;
    scale: 1;
}
.select2-dropdown--below {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.select2-search__field {
    height: 25px;
    font-size: 20px;
}
.select2-container {
    z-index: 10;
}


.register .select2 {
    margin-bottom: 10px;
}

.ellipsis {
    display: flex;
}
.textS2 {
    float: left;
    max-width: 100%;
    width: 100%;
    min-width: 10%;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.spanS2 {
    display: flex;
    float: right;
    width: 50%;
}

.countT2 {
    float: left; 
    width: 100%;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.countS2 {
    display: flex;
    float: right;
    width: 30%;
}

.ellipsis .count {
    margin-left: 5px;
    height: 100%;
    width: 100%;
    min-width: 50px;
    text-align: center;
    color: white;
    text-shadow: -0.6px 0 black, 0 0.6px black, 0.6px 0 black, 0 -0.6px black;
    background-color: rgb(75, 154, 75);
    border: 1px solid rgb(50, 50, 50);
    border-radius: 4px;
}
.ellipsis .count_red {
    margin-left: 5px;
    height: 100%;
    width: 100%;
    min-width: 50px;
    text-align: center;
    color: white;
    text-shadow: -0.6px 0 black, 0 0.6px black, 0.6px 0 black, 0 -0.6px black;
    background-color: rgb(255, 99, 99);
    border-radius: 4px;
    border: 1px solid rgb(50, 50, 50);
}
.ellipsis .count_blue {
    margin-left: 5px;
    height: 100%;
    width: 100%;
    min-width: 50px;
    text-align: center;
    color: white;
    text-shadow: -0.6px 0 black, 0 0.6px black, 0.6px 0 black, 0 -0.6px black;
    background-color: var(--btn-th-color);
    border-radius: 4px;
    border: 1px solid rgb(50, 50, 50);
}

.ellipsis .price {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 0px;
    padding-left: 1px;
    padding-right: 1px;
    width: 200%;
    height: 100%;
    min-width: 40%;
    text-align: center;
    color: white;
    text-shadow: -0.6px 0 black, 0 0.6px black, 0.6px 0 black, 0 -0.6px black;
    background-color: hsl(99, 43%, 44%);
    border-radius: 4px;
    border: 1px solid rgb(50, 50, 50);
}