.btn-element-style-1 {
  padding: 5px 25px;
  background-color: var(--var-color-1);
  transition: all 0.2s ease-in;
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-element-style-1:hover {
  opacity: 0.7;
}

.btn-element-style-1 span {
  color: var(--var-color-3);
  font-size: 14px;
}

.btn-element-style-2 {
  padding: 15px 25px;
  background-color: var(--var-color-4);
  transition: all 0.2s ease-in;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-element-style-2:hover {
  opacity: 0.7;
}

.btn-element-style-2 span {
  color: var(--var-color-1);
  font-size: 20px;
}

.btn-element-style-3 {
  padding: 15px 25px;
  background-color: var(--var-color-1);
  transition: all 0.2s ease-in;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-element-style-3:hover {
  opacity: 0.7;
}

.btn-element-style-3 span {
  color: var(--var-color-2);
  font-size: 20px;
}

.btn-element-style-4 {
  padding: 15px 25px;
  background-color: unset;
  transition: all 0.2s ease-in;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.btn-element-style-4 span {
  color: var(--var-color-1);
  font-size: 20px;
}

.btn-element-style-4::after {
  content: "";
  width: 20px;
  height: 4px;
  background-color: var(--var-color-4);
  transition: all 0.2s ease-in;
}

.btn-element-style-4:hover {
  opacity: 0.7;
}

.btn-element-style-4:hover::after {
  width: 40px;
}

.btn-element-style-5 {
  padding: 15px 25px;
  background-color: var(--var-color-3);
  transition: all 0.2s ease-in;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-element-style-5:hover {
  opacity: 0.7;
}

.btn-element-style-5 span {
  color: var(--var-color-1);
  font-size: 20px;
}

.burger-menu {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  z-index: 1000000;
}

.burger-menu .bar {
  width: 100%;
  height: 4px;
  background-color: var(--var-color-4);
  transition: all 0.3s ease;
}

.burger-menu.open .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.burger-menu.open .bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.open .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

