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

.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller-animation-almeja 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: currentColor;
  margin: -3.6px 0 0 -3.6px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}

@keyframes lds-roller-animation-almeja {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading_screen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #7e1af0;
}

.loading_screen_spinner {
  display: inline-block;
  padding: 10px;
  color: #fff;
}

.standard_screen {
  display: block;
  width: 100%;
  min-height: 100vh;
  background-color: #7e1af0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
}

.standard_title {
  display: block;
  font-size: 30px;
  font-family: sans-serif;
  color: #fff;
  margin-bottom: 15px;
}

.upload_skill_form {
  display: block;
  padding: 10px;
}

.upload_skill_form_hint {
  display: block;
  font-size: 18px;
  font-family: sans-serif;
  color: #fff;
  margin-bottom: 8px;
}

.upload_skill_form_sendBtn {
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 22px;
  font-family: sans-serif;
  border-radius: 100px;
  padding: 10px;
  color: #000;
  background-color: #1af07e;
  border: 5px solid #000;
}

.single_link {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-family: sans-serif;
  padding: 3px;
}

.form_error {
  display: block;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  margin: 10px 0px;
  color: #fff;
  border-radius: 8px;
  background-color: #e11f1f;
}

.form_message {
  display: block;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  margin: 10px 0px;
  color: #fff;
  border-radius: 8px;
  background-color: #1575da;
}

.search_form {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 0;
  padding: 5px;
}

.search_form_input {
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 20px;
  font-family: sans-serif;
  border: 3px solid #000;
  border-right: none;
}

.search_form_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  font-size: 20px;
  font-family: sans-serif;
  cursor: pointer;
  text-align: center;
  border: 3px solid #000;
  background-color: #1af07e;
  color: #000;
}

.search_form_submit input {
  display: none;
}

.skills_shop_results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 10px 0px;
}

.skills_shop_results_item {
  display: block;
  padding: 10px;
  border-radius: 15px;
  border: 3px solid #1af07e;
  cursor: pointer;
  color: #fff;
}

.skills_shop_results_item_name {
  display: block;
  font-size: 23px;
  font-family: sans-serif;
  text-align: center;
  font-weight: bold;
}

.skills_shop_results_item_description {
  font-size: 18px;
  font-family: sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 7px;
}

.skill_info_text {
  display: block;
  font-size: 18px;
  font-family: sans-serif;
  color: #fff;
  padding: 5px;
}

.skill_info_connneeded_table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  padding: 15px;
  margin: 10px 0;
  overflow: auto;
}

.skill_info_connneeded_table_title {
  display: block;
  font-size: 18px;
  font-family: sans-serif;
  color: #fff;
  font-weight: bold;
}

.skill_info_connneeded_table_text {
  display: block;
  font-size: 18px;
  font-family: sans-serif;
  color: #fff;
}

.skill_info_connneeded_table_text_button {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  background-color: #000000;
  border-radius: 15px;
  padding: 10px;
}

.skill_info_script_json {
  display: block;
  width: 100%;
  padding: 10px;
  color: #fff;
  background-color: #2e2e2e;
  font-family: monospace;
  font-size: 17px;
  margin-top: 10px;
  overflow-x: scroll;
}

.skill_info_script_download {
  display: block;
  text-align: right;
  padding: 5px;
}

.skill_info_script_downloadBtn {
  display: inline-block;
  padding: 5px;
  font-size: 17px;
  font-family: sans-serif;
  cursor: pointer;
}

.add_skill_form {
  display: block;
  text-align: center;
  padding: 5px;
}

.add_skill_form_btn {
  display: inline-block;
  padding: 5px;
  font-size: 17px;
  font-family: sans-serif;
  cursor: pointer;
}

.common_link {
  display: inline;
  text-decoration: underline;
  cursor: pointer;
  color: #00ffff;
}

.standard_text_zone {
  display: block;
  padding: 5px;
  font-size: 19px;
  line-height: 1.35;
  font-family: sans-serif;
  color: #fff;
}

.standard_text_zone p {
  margin: 8px 0px;
}

.standard_text_zone h2 {
  margin: 10px 0px;
  font-size: 25px;
}

.standard_text_zone ol, .standard_text_zone ul {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

.standard_text_zone li {
  font-size: 18px;
  font-family: sans-serif;
  color: #fff;
  padding-left: 20px;
}

.standard_text_zone li>.standard_text_zone ol,
.standard_text_zone li>.standard_text_zone ul {
  padding-left: 20px;
  /* Ajusta este valor según tus necesidades */
}

.config_form {
  display: block;
  padding: 5px;
}

.config_form_select {
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 18px;
  font-family: sans-serif;
}

.config_form_submit {
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 18px;
  font-family: sans-serif;
  cursor: pointer;
  margin-top: 10px;
}

.config_form_hint {
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  color: #fff;
  margin-bottom: 3px;
  margin-top: 10px;
}

.config_form_play_button {
  display: inline-block;
  padding: 5px;
  font-size: 17px;
  font-family: sans-serif;
  cursor: pointer;
}

.main_screen {
  display: block;
  width: 100%;
  min-height: 100vh;
  background-color: #7e1af0;
  overflow-y: auto;
  overflow-x: hidden;
}

.main_admin_screen {
  display: block;
  width: 100%;
  min-height: 100vh;
  background-color: #232323;
  overflow-y: auto;
  overflow-x: hidden;
  color: #fff;
}