@import "styles.css";

.ruby-dark-bg {
  background: linear-gradient(to bottom right, #623E7E, #465394);
}

.ruby-dark-text {
  background: linear-gradient(to bottom right, #623E7E, #465394);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
/* color #FFFFFF based on transparency percentage */
.text-gray-90 {
  color:rgba(255, 255, 255, 0.9);
}

.text-gray-70 {
  color:rgba(255, 255, 255, 0.7);
}

.text-gray-80 {
  color:rgba(255, 255, 255, 0.8);
}

.text-gray-30 {
  color:rgba(255, 255, 255, 0.3);
}

.border-gray-10 {
  border-color:rgba(255, 255, 255, 0.1);
}

.img-30 {
  opacity: 0.3;
}

.ruby-dark-btn {
  border: none;
  outline: none;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #465394, #623E7E);
  z-index: 1;
  transition: all ease 0.5s;
  box-shadow: 0px 0px 10px 2px #574686;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ruby-dark-btn::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border-radius: 12px;
  background-color: #111827;
  z-index: -1;
}

.ruby-dark-btn::after {
  content: attr(data);
  font-size: 16px;
  background: linear-gradient(to bottom right, #465394, #623E7E);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.ruby-dark-btn:hover {
  box-shadow: 0 0 0.8rem 0.7rem #574686;
}

.ruby-dark-btn:active {
  box-shadow: 0 0 2rem 1rem #574686;
}

.ruby-orange-outline-btn {
  border: none;
  outline: none;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #FF248A, #FD7D21);
  z-index: 1;
  transition: all ease 0.5s;
  box-shadow: 0px 0px 10px 2px #c93167;
}

.ruby-orange-outline-btn::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border-radius: 12px;
  background-color: #111827;
  z-index: -1;
}

.ruby-orange-outline-btn::after {
  content: attr(data);
  font-size: 16px;
  background: linear-gradient(to bottom right, #FF248A, #FD7D21);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.ruby-orange-outline-btn:hover {
  box-shadow: 0 0 0.8rem 0.7rem #c93167;
}

.ruby-orange-outline-btn:active {
  box-shadow: 0 0 2rem 1rem #c93167;
}

.ruby-orange-btn {
  width: 100%;
  border: none;
  outline: none;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #FF248A, #FD7D21);
  color: rgba(255, 255, 255, 0.9);
  transition: all ease 0.5s;
  box-shadow: 0px 0px 15px 5px #c93167;
  background-image: linear-gradient(to bottom right, #FF248A, #FD7D21) !important;
}

.ruby-orange-btn::after {
  content: attr(data);
  font-size: 16px;
}

.ruby-orange-btn:hover {
  box-shadow: 0 0 0.8rem 0.7rem #c93167;
}

.ruby-blue-btn {
  content: attr(data);
  border: none;
  outline: none;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #465394, #623E7E);
  color: rgba(255, 255, 255, 0.9);
  transition: all ease 0.5s;
  box-shadow: 0px 0px 15px 5px #574686;
}

.ruby-blue-btn:hover {
  box-shadow: 0 0 0.8rem 0.7rem #574686;
}

.ruby-blue-btn:active {
  color: transparent;
}

.ruby-blue-btn::after {
  content: attr(data);
  font-size: 16px;
}

.gray-gradient-btn {
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.gray-gradient-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
}

.hover-badge-zoom:hover {
  transform: scale(1.1);
  transition: transform .5s;
}