.ArticleButton-root {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    font-family: SansOri, SansOriFallback, sans-serif;
    text-transform: uppercase;
    min-width: 64px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: none;
    line-height: 1.5;
    border-radius: 25px;
    padding: 12px 23px;
	-webkit-tap-highlight-color: transparent;
	background: transparent;
}
.ArticleButton-root:active {
	box-shadow: none;
}

.ArticleButton-containedPrimary {
	color: rgb(255, 255, 255);
    background-color: rgb(104, 187, 147);
}
.ArticleButton-containedPrimary:hover {
	text-decoration: none;
	box-shadow: none;
    background-color: rgb(72, 150, 113);
	color: rgb(255, 255, 255);
}
.ArticleButton-containedPrimary:focus {
	color: rgb(255, 255, 255);
}

.ArticleButton-containedSecondary {
    background: rgba(210, 235, 226, 0.3);
    color: rgb(72, 150, 113);
}
.ArticleButton-containedSecondary:hover {
	text-decoration: none;
	box-shadow: none;
    color: rgb(72, 150, 113);
    background: rgba(104, 187, 147, 0.3);
}
.ArticleButton-containedSecondary:focus {
	color: rgb(72, 150, 113);
    background: rgba(104, 187, 147, 0.3);
}

.ArticleButton-outlinedDefault  {
	color: rgb(51, 51, 51);
    border: 1px solid rgb(51, 51, 51);
}
.ArticleButton-outlinedDefault:hover {
	text-decoration: none;
	box-shadow: none;
	color: rgb(51, 51, 51);
    border: 1px solid rgb(51, 51, 51);
	background-color: rgba(51, 51, 51, 0.04);
}
.ArticleButton-outlinedDefault:focus {
	color: rgb(51, 51, 51);
    border: 1px solid rgb(51, 51, 51);
}

.ArticleButton-disabled {
	pointer-events: none;
    cursor: default;
	box-shadow: none;
	color: rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.06);
	border-color: transparent;
}

