.company-country {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.company-country__option {
    position: relative;
    display: block;
    cursor: pointer;
}

.company-country__option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.company-country__content {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 14px;
    gap: 9px;
    border: 1px solid #d9dde4;
    border-radius: 8px;
    background: #fff;
    color: #222;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.company-country__option input:checked + .company-country__content {
    border-color: #d71920;
    box-shadow: 0 0 0 1px #d71920;
}

.company-country__option input:focus-visible + .company-country__content {
    outline: 2px solid #222;
    outline-offset: 2px;
}

.company-country__flag {
    font-size: 22px;
    line-height: 1;
}

.company-country__title {
    font-size: 14px;
    font-weight: 600;
}

.company-country-field {
    margin-bottom: 20px;
}

.company-country-field__label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 500;
}

.company-country-note {
    margin-top: 8px;
    color: #777;
    font-size: 12px;
    line-height: 1.4;
}

.company-country-hidden {
    display: none !important;
}

@media (max-width: 480px) {
    .company-country__option {
        flex: 1 1 calc(50% - 5px);
    }

    .company-country__content {
        justify-content: center;
        padding-right: 10px;
        padding-left: 10px;
    }
}
