body {
	--button-border-radius: 50%;
    --button-bg: #000000;
    --button-stroke: #ec221d;
    --button-stroke-width: 2px;
    --button-text: #FFFFFF;
    --button-bg-hover:#ec221d;
    --button-stroke-hover: #ec221d;
    --button-stroke-width-hover: 1px;
    --button-text-hover: #ffffff;
    --cursor-stroke: #fff;
    --cursor-fill: #fff;
    --cursor-stroke-width: 1px;
    --color-text: #ffffff;
    --color-bg: #312b35;
    --color-link: #89639e;
    --color-link-hover: #ce1352;
    --button-filler: #ec221d;
}

.button {
	cursor: pointer;
	-moz-appearance: none;
	-webkit-appearance: none;
	color: var(--button-text);
	border: 0;
	background: var(--button-bg);
	width: 9rem;
	height: 9rem;
	padding: 0;
	margin: 1rem;
	font-family: inherit;
	font-size: 1.3rem;
	line-height:30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius:50%;
}
.e-cta__icon {
  margin-bottom: 10px;
  align-items: center;
  position: absolute;
  width: 100%;
  top:25%;
}
.e-cta__icon svg{ width:45px; height:32px;}
.button:focus,
.button--hover {
	outline: none;
	border-width: var(--button-stroke-width-hover);
	border-color: var(--button-stroke-hover);
	color: var(--button-text-hover);
	background: var(--button-bg-hover);
	font-size: 1.5rem;
}

.button__deco {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-width: var(--button-stroke-width);
	border-color: var(--button-stroke);
	border-style: solid;
	border-radius: var(--button-border-radius);
	background: var(--button-bg);
}

.button__deco-filler {
	background: var(--button-filler);
	position: absolute;
	width: 150%;
	height: 200%;
	border-radius: 50%;
	top: -50%;
	left: -25%;
	transform: translate3d(0,75%,0);
}

.button__text, 
.button__text-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin-top:12%;
}
@media only screen and (max-width: 768px) {
.button {
	width: 5rem;
	height: 5rem;
	font-size: 0.70rem;
	line-height:30px;
}
.e-cta__icon {
  margin-bottom: 10px;
  align-items: center;
  position: absolute;
  width: 100%;
  top:10%;
}
.e-cta__icon svg{ width:32px; height:19px;}
}
