*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
}

button {
  background: transparent;
  cursor: pointer;
}

hr {
  border: none;
  border-top: 1px dashed #C3D2DE;
  height: 1px;
  width: 300px;
}

html {
  font-size: 100%;
}

.main_wazdan header {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  position: fixed;
  top: 0;
  width: 100%;
}
.main_wazdan header h1 {
  color: #fff;
}
.main_wazdan .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 57px;
  height: calc(100vh - 57px);
}
.main_wazdan .container .sidebar_menu {
  max-width: 250px;
  width: 100%;
  background: linear-gradient(-170deg, rgba(136, 12, 255, 0.6) 0%, rgba(136, 12, 255, 0.36) 20.75%, rgba(136, 12, 255, 0) 91.18%), #12102B;
  padding: 20px;
  max-height: 100vh;
  overflow-y: scroll;
}
.main_wazdan .container .sidebar_menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.main_wazdan .container .sidebar_menu ul li {
  background-color: #191919;
  color: #fff;
  padding: 10px;
  border-radius: 7px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.main_wazdan .container .sidebar_menu ul li.active {
  background-color: rgb(92, 92, 92);
}
.main_wazdan .container .help_container {
  width: 100%;
  padding: 20px;
  max-height: 100vh;
  background: #000;
}
.main_wazdan .container .help_container #game-frame {
  width: 100%;
  height: 100%;
  background-color: #000;
  border: none;
}/*# sourceMappingURL=style.css.map */