:root {
  --color-primary: #ff4800;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Amsi Pro", sans-serif;
}

html,
body {
  max-width: 100vw;
  min-height: 100vh;

  overflow-x: hidden;
}

body {
  position: relative;
  background-color: #1c1c1c;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0.5;
  background-image: url("../images/texture.png");
  background-position: center;
  background-size: cover;

  z-index: -1;
}

.wrapper {
  max-width: 1150px;
  margin: 0 auto;

  /* border-left: 1px solid #ececec;
  border-right: 1px solid #ececec; */
}

.toastify {
  font-family: "Amsi Pro", sans-serif;
  font-size: 1.6rem;
  border-radius: 0.5rem;
}

.regulation {
  font-size: 1.4rem;
  color: #fff;

  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;

  max-height: 70vh;
  overflow: auto;
}

.info {
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info a {
  color: var(--color-primary);
}

.mselect__title {
  text-align: center;
  font-size: 3rem;
  color: #ececec;
}

.mselect__description {
  text-align: center;
  font-size: 1.6rem;
  color: #ececec;
}

.mselect__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;

  margin-top: 2rem;
}

.mselect__button {
  cursor: pointer;
  flex: 1;

  padding: 1.5rem 2rem;

  border-radius: 1.5rem;
  border: 1px solid #ececec;

  color: #ececec;
  background: transparent;

  font-size: 1.5rem;
  font-weight: bold;

  text-transform: uppercase;
  text-align: center;
}

.mselect__button:hover {
  background: #ececec;
  color: #1c1c1c;
}

.info__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.kits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.kit {
  cursor: pointer;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #ececec;

  max-width: 25rem;
}

.kit--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.kit:hover:not(.kit--disabled),
.kit:has(:checked):not(.kit--disabled) {
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 0.5rem var(--color-primary);
}

.kit > input {
  display: none;
}

.kit__image {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.kit__title {
  font-size: 2rem;
  color: #ececec;

  text-align: center;
}

.kit__description {
  font-size: 1.4rem;
  color: #ececec;

  text-align: center;
}

.kits__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.kits__price {
  font-size: 1.2rem;
  color: #ececec;
}

.spin {
  animation: spin 1s linear infinite;

  width: 2rem;
  height: 2rem;
}

.g-recaptcha {
  margin: 0 auto;
  width: fit-content;
}

.link {
  color: var(--color-primary);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #222222;
}

*::-webkit-scrollbar-thumb {
  background-color: #fc500d;
  border-radius: 2rem;
}

@media screen and (max-width: 1200px) {
  .wrapper {
    margin: 0 4rem;
  }
}

@media screen and (max-width: 640px) {
  .toastify {
    max-width: calc(90% - 20px);
  }
}
