.primary-btn {
  all: unset;
  background: var(--primary-color);
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  font-size: 1em;
  color: white;
  font-family: "Manrope";
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.secondary-btn {
  background: #444444;
  border: none;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2em;
  color: white;
  font-family: 'Manrope';
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.primary-btn::after,
.secondary-btn::after {
  content: '';
  top: 0;
  height: 100%;
  width: 20px;
  position: absolute;
  transform: skewX(-15deg);
  animation: shine 10s linear infinite;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(10px);
  left: -20%;
}

@keyframes shine {
  0% {
    left: -20%;
  }

  75% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

/* Modal Default starts */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  visibility: hidden;
  font-family: 'Poppins', sans-serif;
  border: none;
  transition: all 0.3s ease-in-out;
}

.modal-overlay.active {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.modal-overlay.active .modal {
  transform: scale(1);
  opacity: 1;
}

.modal {
  background-color: #ffffff;
  padding: 2.5em 2em;
  border-radius: 15px;
  position: relative;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.7);
  opacity: 0;
  max-height: 90%;
  overflow-y: scroll;
  transition: all 0.3s ease-in-out;
  max-width: 1100px;
}

.modal::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.close-modal {
  align-self: flex-start;
  position: relative;
  background: none;
  cursor: pointer;
  border: 1px solid #dbdbdb;
  background: white;
  border-radius: 50%;
  aspect-ratio: 1;
  transition: all 0.2s ease-in-out;
  width: 45px;
}

.close-modal svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.close-modal:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

/* Modal Default ends */
