.BrowserUpdater {
    position: relative;
    z-index: 100502;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 204px;
    min-height: 204px;
    max-height: 204px;

    background-color: #f1f0ec;
}

    .BrowserUpdater-List {
        display: flex;

        margin-bottom: 10px;
    }

    .BrowserUpdater-ListItem {
        padding: 14px;
    }

    .BrowserUpdater-Link {
        display: block;

        width: 150px;
        height: 120px;
        padding-top: 10px;

        text-align: center;

        background-color: #fff;
    }

    .BrowserUpdater-BrowserIcon {
        width: 67px;
        height: 65px;
        margin: 10px auto;

        background-image: url(//yastatic.net/s3/webmaster/webmaster/_/k7Apgav9.jpg);
        background-repeat: no-repeat;
        background-position: 0 0;
    }

    .BrowserUpdater-BrowserIcon_name_yandex {
            background-position: -195px 0;
        }

    .BrowserUpdater-BrowserIcon_name_ie {
            background-position: -130px 0;
        }

    .BrowserUpdater-BrowserIcon_name_opera {
            background-position: -65px 0;
        }

    .BrowserUpdater-Close {
        position: absolute;
        top: 12px;
        right: 12px;

        cursor: pointer;

        color: #999;
    }

    .BrowserUpdater.Hidden {
        display: none;
    }

/* common */
.Link_view_default {
    color: var(--link-view-default-typo-color-base);

    transition: color .15s linear;
}
/* disable */
.Link_view_default[aria-disabled='true'] {
    color: var(--link-view-default-typo-color-disabled);
}

.Link {
    text-decoration: none;

    outline: 0;

    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.Link[aria-disabled='true'] {
    pointer-events: none;
}

/* hover */
.Link_view_default:not([aria-disabled='true']):hover {
    color: var(--link-view-default-typo-color-hovered);
}
/* focus */
.utilityfocus .Link:focus {
    outline: 2px solid var(--link-view-default-outline-color);
}

.Link {
    cursor: pointer;
}

.Link[aria-disabled='true'] {
    cursor: default;
}

.Icon_hasGlyph {
    position: relative;
}

.Icon_hasGlyph svg {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

/* stylelint-disable selector-max-universal */

.Icon_hasGlyph svg,
.Icon_hasGlyph svg * {
    fill: currentColor;
}

.Icon_glyph_type-close svg {
    width: 10px;
    height: 10px;
}

.Icon {
    display: inline-block;

    background-repeat: no-repeat;
    background-position: 50%;
}

/**
 * Для правильного позиционирования относительно baseline.
 * Плюс высота блока начинает определяться по унаследованному line-height.
 */

.Icon::after {
    visibility: hidden;

    content: '\00A0';
}

.AppRoot-Content {
    height: 100%;
}

