.matter-button-outlined {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
    border: solid 1px; /* Safari */
    border-color: rgba(var(--matter-onsurface-rgb, 0, 0, 0), 0.24);
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: rgb(var(--matter-primary-rgb, 33, 150, 243));
    background-color: transparent;
    font-family: var(--matter-font-family, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 14px;
    font-weight: 500;
    line-height: 34px;
    outline: none;
    cursor: pointer;
}

.matter-button-outlined::-moz-focus-inner {
    border: none;
}

/* Highlight, Ripple */
.matter-button-outlined::before,
.matter-button-outlined::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
    opacity: 0;
}

.matter-button-outlined::before {
    background-color: rgb(var(--matter-primary-rgb, 33, 150, 243));
    transition: opacity 0.2s;
}

.matter-button-outlined::after {
    background: radial-gradient(circle at center, currentColor 1%, transparent 1%) center/10000% 10000% no-repeat;
    transition: opacity 1s, background-size 0.5s;
}

/* Hover, Focus */
.matter-button-outlined:hover::before {
    opacity: 0.04;
}

.matter-button-outlined:focus::before {
    opacity: 0.12;
}

.matter-button-outlined:hover:focus::before {
    opacity: 0.16;
}

/* Active */
.matter-button-outlined:active::after {
    opacity: 0.16;
    background-size: 100% 100%;
    transition: background-size 0s;
}

/* Disabled */
.matter-button-outlined:disabled {
    color: rgba(var(--matter-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: transparent;
    cursor: initial;
}

.matter-button-outlined:disabled::before,
.matter-button-outlined:disabled::after {
    opacity: 0;
}
