
.button-1 {
  align-items: center;
  background-color: var(--linkColor);
  border: 0;
  border-radius: 100vw;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: 'Raleway';
  font-size: 18px;
  font-weight: 300;
  justify-content: center;
  line-height: 12px;
  height: 52px;
  width: 163px;
  overflow: hidden;
  padding: 12px 28px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-1:hover,
.button-1:focus { 
  background-color: var(--linkHoverColor);
  color: #ffffff;
}

.button-1:active {
  background: var(--linkActiveColor);
  color: rgb(255, 255, 255, .7);
}

.button-1:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}



.button-2 {
  align-items: center;
  background-color: var(--buttonBg);
  border: 2px solid var(--buttonBorder);
  border-radius: 100vw;
  box-sizing: border-box;
  color: var(--buttonText);
  
  cursor: pointer;
  display: inline-flex;
  font-family: 'Raleway';
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  line-height: 12px;
  overflow: hidden;
  padding: 8px 18px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-2:hover, .button-2:focus{ 
  background-color: var(--buttonHover);
}

.button-2:active {
  border: 2px solid var(--linkColor);
}

.button-2:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}



.button-3 {
  align-items: center;
  background-color: var(--linkColor);
  border: 0;
  border-radius: 100vw;
  box-sizing: border-box;
  color: #ffffff;
  
  cursor: pointer;
  display: inline-flex;
  font-family: 'Raleway';
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 12px;
  overflow: hidden;
  padding: 11px 18px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-3:hover,
.button-3:focus { 
  background-color: var(--linkHoverColor);
  color: #ffffff;
}

.button-3:active {
  background: var(--linkActiveColor);
  color: rgb(255, 255, 255, .7);
}

.button-3:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}


/* Icon in a button */
.button-icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-button-icon {
  width: 28px;
  height: 28px;
  margin-left: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-ref {
  align-items: center;
  background-color: var(--linkColor);
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: 'Raleway';
  font-size: 18px;
  font-weight: 300;
  justify-content: center;
  line-height: 12px;
  height: 50px;
  width: 50px;
  overflow: hidden;
  padding: 12px 22px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}