country-switcher {
    display: flex;
    flex-direction: column
}

country-switcher .country-switcher__disclaimer {
    font-size: 1.6rem
}

country-switcher .country-switcher__error {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1px;
    border: 1px solid #EB001B;
    padding: 4px 12px;
    margin-top: 3rem;
    background: #D9D9D9;
    color: #9D9D9D;
}

country-switcher disclosure-select .btn {
    padding: 16px 12px 8px !important;
    font-size: var(--button-font-size);
    justify-content: space-between !important
}

country-switcher disclosure-select .btn svg {
    margin-bottom: 6px
}

country-switcher disclosure-select.disabled {
    pointer-events: none;
    background-color: #d8d8d8
}

country-switcher disclosure-select .btn[aria-expanded=true] svg {
    rotate: 180deg;
    transition: all var(--accordion-animation-timing) ease-out
}

country-switcher .disclosure-current {
    letter-spacing: var(--font-body-letter-spacing)
}

country-switcher .disclosure__list-wrapper {
    top: 100%;
    border-right: 1px solid;
    border-left: 1px solid;
    border-bottom: 1px solid;
    text-align: left;
    bottom: auto;
    transform: none
}

country-switcher .disclosure__list {
    width: 100%;
    max-height: 12.5rem
}

country-switcher ul li .disclosure__link {
    display: block;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    line-height: 25px;
}

.country-switcher__search {
    width: 100%;
    position: relative;
}

.country-switcher__search input {
    width: 100%;
    outline: none;
    border-bottom: 1px solid #9D9D9D;
    color: #000000;
    padding-right: 20px;
}

.country-switcher__search input::placeholder {
    color: #9D9D9D;
}

.country-switcher__search input:focus-visible {
    outline: none !important;
}

.country-switcher__search svg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

country-switcher .error {
    color: #EB001B;
}