.tcl-button__button a {
  text-align: center;
}
.tcl-button__button--primary a {
  font-family: "Karla";
  font-weight: 800;
  font-size: 18px;
  line-height: 140%;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--main-design-color);
  color: #fff;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  width: 100%;
}
.tcl-button__button--primary a[disabled] {
  background: transparent !important;
  border: 2px solid #adb5bd !important;
  color: #adb5bd !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: not-allowed;
}
.tcl-button__button--primary a:hover {
  background-color: var(--main-design-color-hover);
  -webkit-box-shadow: 0px 10px 20px rgba(93, 199, 197, 0.15);
          box-shadow: 0px 10px 20px rgba(93, 199, 197, 0.15);
}
.tcl-button__button--primary a:active {
  background-color: var(--main-design-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.tcl-button__button--secondary a {
  font-family: "Karla";
  font-weight: 800;
  font-size: 18px;
  line-height: 140%;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 20px;
  background-color: transparent;
  color: var(--main-design-color);
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  border: 2px solid var(--main-design-color);
  width: 100%;
}
.tcl-button__button--secondary a[disabled] {
  background: transparent !important;
  border: 2px solid #adb5bd !important;
  color: #adb5bd !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: not-allowed;
}
.tcl-button__button--secondary a:hover {
  color: #ffffff;
  background: rgba(var(--main-design-color-rgb), 0.5);
  -webkit-box-shadow: 0px 10px 20px rgba(var(--main-design-color-rgb), 0.15);
          box-shadow: 0px 10px 20px rgba(var(--main-design-color-rgb), 0.15);
  border: 2px solid rgba(var(--main-design-color-rgb), 0.05);
}
.tcl-button__button--secondary a:active {
  color: var(--main-design-color);
  border: 2px solid var(--main-design-color);
  background-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
}