/* primary transparent */
.primary-transparent-button {
  position: relative;
  font-size: 12px;
  background-color: transparent;
  border: 1px solid var(--background-white-color);
  border-radius: var(--border-radius-small);
  padding: 16px 40px 16px 24px;
  max-width: max-content;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
}

.primary-transparent-button:hover {
  color: var(--primary-color);
}
.primary-transparent-button span {
  position: relative;
  z-index: 10;
}
.primary-transparent-button:before {
  content: "";
  height: 8px;
  width: 8px;
  background-color: var(--background-white-color);
  position: absolute;
  right: 20px;
  top: 18px;
  border-radius: 100%;
  transition: 0.5s;
  z-index: -1;
}

.primary-transparent-button:hover:before {
  transform: scale(70);
}

.primary-transparent-button:after {
  content: "";
  height: 8px;
  width: 8px;
  background-color: var(--background-white-color);
  position: absolute;
  right: 20px;
  top: 18px;
  border-radius: 100%;
}

.primary-transparent-button:hover:after {
  background-color: var(--primary-color);
}
/* primary transparent end */

/* primary background */
.primary-background-button {
  position: relative;
  font-size: 12px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-small);
  padding: 16px 40px 16px 24px;
  max-width: max-content;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
}

.primary-background-button span {
  position: relative;
  z-index: 10;
}

.primary-background-button:hover {
  color: var(--primary-color);
  border-color: var(--background-white-color);
}

.primary-background-button:before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: var(--background-white-color);
  right: 20px;
  top: 18px;
  border-radius: 100%;
  transition: 0.5s;
  z-index: 1;
}

.primary-background-button:hover:before {
  transform: scale(70);
}

.primary-background-button:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: var(--background-white-color);
  right: 20px;
  top: 18px;
  border-radius: 100%;
  z-index: 10;
}

.primary-background-button:hover:after {
  background-color: var(--primary-color);
}
/* primary background end */

/* gredient background */
.primary-gradient-button {
  position: relative;
  font-size: 12px;
  background-image: var(--background-gradient);
  border-radius: var(--border-radius-full);
  padding: 15px 30px 15px 30px;
  max-width: max-content;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
}

.primary-gradient-button span {
  position: relative;
  z-index: 10;
}

.primary-gradient-button:hover {
  color: var(--primary-color);
}

.primary-gradient-button:before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  right: 50%;
  top: 50%;
  background-color: transparent;
  transform: translate(-50%, -40%);
  border-radius: 100%;
  transition: 0.5s;
  z-index: 1;
}

.primary-gradient-button:hover:before {
  background-color: var(--background-white-color);
  transform: scale(70);
}
/* gredient background end */
