*,
.container,
body,
html,
input,
select {
  box-sizing: border-box;
}
button,
label {
  font-weight: 700;
}
@font-face {
  font-family: rokhBold;
  src: url(../fonts/Rokh-Bold.woff2);
}
@font-face {
  font-family: rokhMedium;
  src: url(../fonts/Rokh-Medium.woff2);
}
*,
body,
html {
  font-family: rokhMedium;
  margin: 0;
  direction: rtl;
  height: auto;
  font-size: 18px;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  color: #333;
  height: 100vh;
}
.result,
h2 {
  text-align: center;
  color: #2E94B9;
}
.container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
h2 {
  font-family: rokhBold;
  font-size: 26px !important;
  margin: 0 0 20px;
}
form div {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}
input,
select {
  appearance: none;
  background: 0 0;
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  width: 100%;
  padding: 10px;
  background-color: #e23e57;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
button:hover {
  background-color: #2e94b9;
}
.result {
  margin-top: 20px;
}
.result h3 {
  margin: 0;
}
#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
#background > div {
  --size: 5vw;
  --symbol: "✽";
  --pos_x: 0vw;
  --duration_move: 7s;
  --delay_move: 0s;
  --duration_rotate: 1.5s;
  --delay_rotate: 0s;
  --duration_clip: 10s;
  --delay_clip: 0s;
  --hue: 0deg;
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(15px, var(--size), 80px);
  font-family: "Noto Sans Symbols 2", sans-serif;
  transform-origin: center top;
  animation: move var(--duration_move) var(--delay_move) linear infinite normal
    both;
}
#background span {
  display: block;
  position: relative;
  transform-origin: center;
  transform: rotate(0);
  animation: rotate var(--duration_rotate) var(--delay_rotate) ease-in-out
    infinite alternate both;
}
#background span:after {
  content: var(--symbol);
  -webkit-text-stroke: 0.8px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  position: relative;
  display: block;
  color: transparent;
  background-clip: text;
  filter: brightness(1.2) hue-rotate(var(--hue));
  transform: translateZ(0);
  animation: bg1 var(--duration_clip) var(--delay_clip) linear infinite
    alternate both;
}
#background > div:nth-child(2n) span:after {
  animation-name: bg2;
}
@keyframes bg1 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}
@keyframes bg2 {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(115deg);
  }
  100% {
    transform: rotate(245deg);
  }
}
@keyframes move {
  0% {
    transform: translate3d(var(--pos_x), calc(0 - var(--size)), 0);
  }
  100% {
    transform: translate3d(var(--pos_x), 100vh, 0);
  }
}
#background > div:nth-child(23n + 1),
#background > div:nth-child(23n + 18) {
  --symbol: "🟄";
}
#background > div:nth-child(23n + 2) {
  --symbol: "❉";
}
#background > div:nth-child(23n + 3) {
  --symbol: "🟉";
}
#background > div:nth-child(23n + 4) {
  --symbol: "❈";
}
#background > div:nth-child(23n + 5) {
  --symbol: "✣";
}
#background > div:nth-child(23n + 6) {
  --symbol: "🞯";
}
#background > div:nth-child(23n + 7) {
  --symbol: "🟎";
}
#background > div:nth-child(23n + 8) {
  --symbol: "♦";
}
#background > div:nth-child(23n + 9) {
  --symbol: "✢";
}
#background > div:nth-child(23n + 10) {
  --symbol: "🞵";
}
#background > div:nth-child(23n + 11) {
  --symbol: "✤";
}
#background > div:nth-child(23n + 12) {
  --symbol: "✦";
}
#background > div:nth-child(23n + 13) {
  --symbol: "❇";
}
#background > div:nth-child(23n + 14) {
  --symbol: "🞻";
}
#background > div:nth-child(23n + 15) {
  --symbol: "✶";
}
#background > div:nth-child(23n + 16) {
  --symbol: "✳";
}
#background > div:nth-child(23n + 17) {
  --symbol: "❊";
}
#background > div:nth-child(23n + 19) {
  --symbol: "✻";
}
#background > div:nth-child(23n + 20) {
  --symbol: "❋";
}
#background > div:nth-child(23n + 21) {
  --symbol: "✷";
}
#background > div:nth-child(23n + 22) {
  --symbol: "✴";
}
#background > div:nth-child(21n + 1) {
  --pos_x: 5vw;
}
#background > div:nth-child(21n + 2) {
  --pos_x: 10vw;
}
#background > div:nth-child(21n + 3) {
  --pos_x: 15vw;
}
#background > div:nth-child(21n + 4) {
  --pos_x: 20vw;
}
#background > div:nth-child(21n + 5) {
  --pos_x: 25vw;
}
#background > div:nth-child(21n + 6) {
  --pos_x: 30vw;
}
#background > div:nth-child(21n + 7) {
  --pos_x: 35vw;
}
#background > div:nth-child(21n + 8) {
  --pos_x: 40vw;
}
#background > div:nth-child(21n + 9) {
  --pos_x: 45vw;
}
#background > div:nth-child(21n + 10) {
  --pos_x: 50vw;
}
#background > div:nth-child(21n + 11) {
  --pos_x: 55vw;
}
#background > div:nth-child(21n + 12) {
  --pos_x: 60vw;
}
#background > div:nth-child(21n + 13) {
  --pos_x: 65vw;
}
#background > div:nth-child(21n + 14) {
  --pos_x: 70vw;
}
#background > div:nth-child(21n + 15) {
  --pos_x: 75vw;
}
#background > div:nth-child(21n + 16) {
  --pos_x: 80vw;
}
#background > div:nth-child(21n + 17) {
  --pos_x: 85vw;
}
#background > div:nth-child(21n + 18) {
  --pos_x: 90vw;
}
#background > div:nth-child(21n + 19) {
  --pos_x: 95vw;
}
#background > div:nth-child(21n + 20) {
  --pos_x: 100vw;
}
#background > div:nth-child(12n + 1) {
  --hue: 30deg;
}
#background > div:nth-child(12n + 2) {
  --hue: 270deg;
}
#background > div:nth-child(12n + 3) {
  --hue: 90deg;
}
#background > div:nth-child(12n + 4) {
  --hue: 150deg;
}
#background > div:nth-child(12n + 5) {
  --hue: 330deg;
}
#background > div:nth-child(12n + 6) {
  --hue: 180deg;
}
#background > div:nth-child(12n + 7) {
  --hue: 60deg;
}
#background > div:nth-child(12n + 8) {
  --hue: 210deg;
}
#background > div:nth-child(12n + 9) {
  --hue: 120deg;
}
#background > div:nth-child(12n + 10) {
  --hue: 240deg;
}
#background > div:nth-child(12n + 11) {
  --hue: 300deg;
}
#background > div:nth-child(8n + 1) {
  --delay_move: -4s;
}
#background > div:nth-child(8n + 2) {
  --delay_move: -5s;
}
#background > div:nth-child(8n + 3) {
  --delay_move: -6s;
}
#background > div:nth-child(8n + 4) {
  --delay_move: -1s;
}
#background > div:nth-child(8n + 5) {
  --delay_move: -2s;
}
#background > div:nth-child(8n + 6) {
  --delay_move: -3s;
}
#background > div:nth-child(8n + 7) {
  --delay_move: -7s;
}
#background > div:nth-child(9n + 1) {
  --duration_move: 7.5s;
}
#background > div:nth-child(9n + 2) {
  --duration_move: 8s;
}
#background > div:nth-child(9n + 3) {
  --duration_move: 8.5s;
}
#background > div:nth-child(9n + 4) {
  --duration_move: 9s;
}
#background > div:nth-child(9n + 5) {
  --duration_move: 5.5s;
}
#background > div:nth-child(9n + 6) {
  --duration_move: 6s;
}
#background > div:nth-child(9n + 7) {
  --duration_move: 6.5s;
}
#background > div:nth-child(9n + 8) {
  --duration_move: 7.8s;
}
#background > div:nth-child(7n + 1) {
  --delay_rotate: 0.3s;
}
#background > div:nth-child(7n + 2) {
  --delay_rotate: 0.6s;
}
#background > div:nth-child(7n + 3) {
  --delay_rotate: 0.9s;
}
#background > div:nth-child(7n + 4) {
  --delay_rotate: -0.3s;
}
#background > div:nth-child(7n + 5) {
  --delay_rotate: -0.6s;
}
#background > div:nth-child(7n + 6) {
  --delay_rotate: -0.9s;
}
#background > div:nth-child(6n + 1) {
  --duration_rotate: 1s;
}
#background > div:nth-child(6n + 2) {
  --duration_rotate: 1.6s;
}
#background > div:nth-child(6n + 3) {
  --duration_rotate: 1.1s;
}
#background > div:nth-child(6n + 4) {
  --duration_rotate: 1.2s;
}
#background > div:nth-child(6n + 5) {
  --duration_rotate: 1.3s;
}
#background > div:nth-child(5n + 1) {
  --size: 3vw;
}
#background > div:nth-child(5n + 2) {
  --size: 4vw;
}
#background > div:nth-child(5n + 3) {
  --size: 6vw;
}
#background > div:nth-child(5n + 4) {
  --size: 7vw;
}
@media screen and (max-width: 900px) {
  .col-s-1 {
    width: 8.33%;
  }
  .col-s-2 {
    width: 16.66%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.33%;
  }
  .col-s-5 {
    width: 41.66%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.33%;
  }
  .col-s-8 {
    width: 66.66%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.33%;
  }
  .col-s-11 {
    width: 91.66%;
  }
  .col-s-12 {
    width: 100%;
  }
  .col-s-offset-0 {
    margin-right: 0;
  }
  .col-s-offset-1 {
    margin-right: 8.33%;
  }
  .col-s-offset-2 {
    margin-right: 16.66%;
  }
  .col-s-offset-3 {
    margin-right: 25%;
  }
  .col-s-offset-4 {
    margin-right: 33.33%;
  }
  .col-s-offset-5 {
    margin-right: 41.66%;
  }
  .col-s-offset-6 {
    margin-right: 50%;
  }
  .col-s-offset-7 {
    margin-right: 58.33%;
  }
  .col-s-offset-8 {
    margin-right: 66.66%;
  }
  .col-s-offset-9 {
    margin-right: 75%;
  }
  .col-s-offset-10 {
    margin-right: 83.33%;
  }
  .col-s-offset-11 {
    margin-right: 91.66%;
  }
  .col-s-offset-12 {
    margin-right: 100%;
  }
}
@media screen and (min-width: 900px) {
  .col-xl-1 {
    width: 8.33%;
  }
  .col-xl-2 {
    width: 16.66%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.33%;
  }
  .col-xl-5 {
    width: 41.66%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.33%;
  }
  .col-xl-8 {
    width: 66.66%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.33%;
  }
  .col-xl-11 {
    width: 91.66%;
  }
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-offset-0 {
    margin-right: 0;
  }
  .col-xl-offset-1 {
    margin-right: 8.33%;
  }
  .col-xl-offset-2 {
    margin-right: 16.66%;
  }
  .col-xl-offset-3 {
    margin-right: 25%;
  }
  .col-xl-offset-4 {
    margin-right: 33.33%;
  }
  .col-xl-offset-5 {
    margin-right: 41.66%;
  }
  .col-xl-offset-6 {
    margin-right: 50%;
  }
  .col-xl-offset-7 {
    margin-right: 58.33%;
  }
  .col-xl-offset-8 {
    margin-right: 66.66%;
  }
  .col-xl-offset-9 {
    margin-right: 75%;
  }
  .col-xl-offset-10 {
    margin-right: 83.33%;
  }
  .col-xl-offset-11 {
    margin-right: 91.66%;
  }
  .col-xl-offset-12 {
    margin-right: 100%;
  }
}
label {
  display: inline !important;
  padding-left: 5px;
}
.test {
  display: flex;
}
/* .material-symbols-outlined {
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
  } */
.question-icon {
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
  font-size: 20px;
  color: #555;
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 300px; */
  padding: 20px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.close-btn {
  display: block;
  margin: 10px auto 0;
  padding: 10px 20px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
