.cmm.cmm--top-right .cmm__content:has(.cbr-list) {
    padding: 28px 0 0;
}

.cmm.cmm--cbr-list .cmm__content:has(.cbr-list) {
    max-width: 350px;
    padding: 28px 0 0;
}

.cbr-flag {
    display: flex;
    align-items: center;
    width: 20px;
    height: 20px;
}

.cbr-flag img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.cbr-btn,
.cbr-btn__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cbr-btn {
    color: currentColor;
    background: none;
    border: none;
}

.cbr-btn__name {
    font-weight: 600;
    line-height: 1;
}

.cbr-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
}

.cbr-list__search {
    position: relative;
    padding: 12px 12px 12px 40px;
    color: rgba(0 0 0 / 50%);
}

.cbr-list__search:has(input:focus),
.cbr-list__search:has(input:hover) {
    color: #000;
}

.cbr-list__search svg {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    color: currentColor;
    transition: var(--transition);
}

.cbr-list__search input {
    padding: 0;
    border: 0;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.cbr-list__search input::placeholder {
    color: rgba(0 0 0 / 50%);
}

.cbr-list__list {
    display: flex;
    flex-direction: column;
    max-height: 220px;
	padding: 0;
	margin: 0;
    overflow-y: scroll;
	list-style-type: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cbr-list__list::-webkit-scrollbar {
    display: none;
}

.cbr-list__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    transition: var(--transition, all 0.3s ease);
    cursor: pointer;
}

.cbr-list__item.current {
    order: -1;
    pointer-events: none;
}

.cbr-list__item.current,
.cbr-list__item:hover {
    background: #ebebeb;
}

.cbr-list__item-flag {
    flex-shrink: 0;
}

.cbr-list__item-flag,
.cbr-list__item-name {
    pointer-events: none;
}

.cbr-list__item-check {
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
}

.cbr-list__item-check::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 4px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
}

.cbr-tooltip__name {
    font-size: 14px;
    line-height: 1.3;
}

.cbr-tooltip__panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.cbr-availability {
    display: flex;
    gap: 5px;
    align-items: center;
}