/*__________________________________________________________*/
/*__________________ Command Edit Designs __________________*/
/*__________________________________________________________*/
.command_edit_container {
  display: none;
  position: absolute;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: #000000d6;
  padding: 5vh 0;
}

.command_edit_alpha_container {
  display: grid;
  grid-template-rows: 60px auto 40px;
  width: 35vw;
  height: 90vh;
  overflow: hidden;
  margin: 0 auto;
  background-color: #444;
  color: #fff;
}

.command_edit_sub_container_header {
  background-color: #333;
  display: grid;
  align-items: center;
  color: #ccc;
  grid-template-columns: auto 40px;
  padding-left: 10px;
  font-size: 30px;
}

.command_edit_sub_container_header_text {}

.command_edit_sub_container_header_close {
  text-align: center;
  font-size: 24px;
}

.command_edit_sub_container_header_close:hover {
  cursor: pointer;
}

.command_edit_sub_container_footer {
  display: grid;
  grid-template-columns: 33% 34% 33%;
  text-align: center;
  font-weight: 600;
  color: #ccc;
  background-color: #333;
}

.command_edit_sub_container_footer_cancel {
  height: 100%;
  transition: 0.5s;
  display: grid;
  align-items: center;
}

.command_edit_sub_container_footer_cancel:hover {
  cursor: pointer;
  background-color: #3e3e3e;
  color: #fff;
}

.command_edit_sub_container_footer_reset {
  height: 100%;
  transition: 0.5s;
  display: grid;
  align-items: center;
}

.command_edit_sub_container_footer_reset:hover {
  cursor: pointer;
  background-color: #3e3e3e;
  color: #fff;
}

.command_edit_sub_container_footer_save {
  height: 100%;
  transition: 0.5s;
  display: grid;
  align-items: center;
}

.command_edit_sub_container_footer_save:hover {
  cursor: pointer;
  background-color: #3e3e3e;
  color: #fff;
}

.command_edit_sub_container {
  overflow: auto;
  display: grid;
  align-items: center;
  padding: 10px 20px;
  padding-top: 0;
  padding-bottom: 30px;
}

.command_input_container {
  padding: 10px;
  padding-top: 5px;
  padding-left: 16px;
}

.command_slider_input_container {
  padding: 10px;
  padding-left: 16px;
  display: grid;
  align-items: center;
  grid-template-columns: 50px auto;
}

.command_id_edit {
  border: none;
  width: 100%;
}

.command_id_edit_add {
  border: none;
  width: 100%;
  border-bottom: 1px solid #6668;
  padding-bottom: 4px;
}

.command_id_edit_add:hover {
  cursor: auto;
}

.command_id_edit_add:focus {
  outline: none;
  border-bottom: 1px solid #666;
}

.command_aliases_edit {
  border: none;
  width: 100%;
  border-bottom: 1px solid #6668;
  padding-bottom: 4px;
}

.command_aliases_edit:focus {
  outline: none;
  border-bottom: 1px solid #666;
}

.command_aliases_edit:hover {
  cursor: auto;
}

.command_edit_title {
  margin-top: 20px;
  margin-left: 10px;
  font-size: 12px;
  color: #ababab;
}

.command_msg_edit {
  border: none;
  width: 100%;
  word-break: break-word;
  border-bottom: 1px solid #6668;
  padding-bottom: 4px;
}

.command_msg_edit:focus {
  outline: none;
  border-bottom: 1px solid #666;
}

.command_msg_edit:hover {
  cursor: auto;
}

.ul_ml_command_edit_container {
  display: grid;
  grid-template-columns: 45% 10% 45%;
}

.ez_counter_command_edit_container {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}

.id_active_command_edit_container {
  display: grid;
  grid-template-columns: auto 125px;
}

.ez_mention_command_edit_container {
  display: grid;
  grid-template-columns: 45% auto 125px;
}

.command_ul_edit {}

.command_ml_edit {}

.command_ez_edit {}

.command_timer_edit {
  display: inline;
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #666;
  outline: none;
  opacity: 0.5;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.command_timer_edit:hover {
  opacity: 1;
}

.command_timer_edit_value {
  display: inline;
  text-align: left;
  font-size: 14px;
}

.command_timer_edit::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.command_timer_edit::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.command_active_edit {}

.command_counter_edit {}

.command_global_counter_edit {}

.command_delete_container {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 10px;
  padding-bottom: 0;
  margin-top: 30px;
  border-top: 1px solid #666;
}

.command_delete_edit {
  width: 100px;
  height: 25px;
  display: grid;
  align-items: center;
  justify-items: center;
  font-weight: 600;
  border-radius: 1000px;
  background-color: #d41930;
  color: #ccc;
  transition: 0.5s;
}

.command_delete_edit:hover {
  background-color: #ea2039;
  cursor: pointer;
}

input[type=checkbox] {
  display: contents;
  height: 0;
  width: 0;
  visibility: hidden;
}

.command_check_box_toggle_container {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: end;
  padding: 20px 10px 10px 0px;
}

.command_check_box_toggle {
  cursor: pointer;
  text-indent: -9999px;
  width: 30px;
  height: 16px;
  background: #333;
  display: block;
  border-radius: 10px;
  position: relative;
}

.command_check_box_toggle:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 13px;
  height: 14px;
  background: #fff;
  border-radius: 9px;
  transition: 0.3s;
}

input:checked+.command_check_box_toggle {
  background: #088400;
}

input:checked+.command_check_box_toggle:after {
  left: calc(100% - 1px);
  transform: translateX(-100%);
}

.command_check_box_toggle:active:after {
  width: 16px;
}

.command_checkbox_input_container {
  display: grid;
  justify-items: right;
}

/*__________________________________________________________*/
/*__________________ Commands Dashboard ____________________*/
/*__________________________________________________________*/
.commands_container {
  overflow-y: hidden;
  display: inline-grid;
  grid-template-columns: auto;
  width: 100%;
  padding: 10px 20px;
}

.commands_item {
  display: inline-grid;
  grid-template-columns: 8% 8% auto 5% 5% 5% 5% 5% 5% 5% 5% 5%;
  background-color: #444;
  color: #ccc;
  padding: 10px 10px;
  padding-left: 20px;
  font-size: 15px;
  text-align: center;
  align-items: center;
  transition: 0.5s;
  min-height: 50px;
}

.commands_item:hover, .commands_item div:hover {
  cursor: pointer;
}

.commands_item:hover {
  background-color: #dcdcdc44;
}

.commands_item_not_available:hover, .commands_item_not_available div:hover {
  cursor: not-allowed !important;
}

.commands_item:last-child, .commands_item:nth-last-child(2) {  
  border-radius: 0 0 4px 4px;
}

.commands_item_head {
  background-color: #444;
  border-radius: 4px 4px 0 0 !important;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: end;
}

.commands_item_head:hover, .commands_item_head div:hover {
  background-color: #444;
  cursor: default;
}

.command_table {
  display: inline-grid;
}

.commands_id {
  text-align: left;
  padding: 4px;
  overflow: hidden;
}

.commands_id {
  text-align: left;
  padding: 4px;
  overflow: hidden;
}

.commands_aliases {
  text-align: left;
  padding: 4px;
  overflow: hidden;
}

.commands_status {
  padding: 4px;
}

.commands_ul {
  padding: 4px;
}

.commands_ml {
  padding: 4px;
}

.commands_cd {
  padding: 4px;
}

.commands_counter {
  padding: 4px;
}

.commands_global_counter {
  padding: 4px;
}

.commands_mention {
  padding: 4px;
}

.commands_ez {
  padding: 4px;
}

.commands_timer {
  padding: 4px;
}

.commands_mention {
  padding: 4px;
}

.commands_msg {
  text-align: left;
  padding: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.commands_msg_head {
  text-align: left;
  padding: 4px;
}

.command_add_container {
  font-size: 12px;
  display: grid;
  color: #ccc;
  grid-template-columns: 120px 35% auto;
  align-items: center;
  font-weight: 600;
}

.command_add_button {
  margin-left: 10px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 4px;
  background-color: #088400;
  border-radius: 1000px;
  transition: 0.5s;
}

.command_add_button:hover {
  background-color: #0baf00;
  cursor: pointer;
}

.command_add_command_total_commands_text {
  text-align: right;
  padding-right: 10px;
}

.command_add_command_total_commands {}

@media screen and (min-width: 3000px) {
  .commands_item {
    grid-template-columns: 8% 8% auto 5% 5% 5% 5% 5% 5% 5% 5% 5%;
    font-size: 14px;
  }
}

@media screen and (min-width: 1600px) and (max-width: 2999px) {
  .commands_item {
    grid-template-columns: 11% 11% auto 7% 7% 7% 7% 7% 7%;
    font-size: 13px;
  }

  .commands_global_counter {
    display: none;
  }

  .commands_ez {
    display: none;
  }

  .commands_mention {
    display: none;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1599px) {
  .command_edit_alpha_container {
    width: 55vw;
  }

  .commands_item {
    grid-template-columns: 14% 14% auto 10% 10% 10% 10%;
    font-size: 12px;
  }

  .commands_global_counter {
    display: none;
  }

  .commands_ez {
    display: none;
  }

  .commands_mention {
    display: none;
  }

  .commands_counter {
    display: none;
  }

  .commands_cd {
    display: none;
  }
}

@media screen and (min-width: 850px) and (max-width: 1199px) {
  .command_edit_alpha_container {
    width: 75vw;
  }

  .commands_item {
    grid-template-columns: 18% auto 14% 14% 14%;
    font-size: 12px;
  }

  .commands_global_counter {
    display: none;
  }

  .commands_ez {
    display: none;
  }

  .commands_mention {
    display: none;
  }

  .commands_counter {
    display: none;
  }

  .commands_cd {
    display: none;
  }

  .commands_ml {
    display: none;
  }

  .commands_aliases {
    display: none;
  }
}

@media screen and (max-width: 849px) {
  .command_edit_alpha_container {
    width: 95vw;
  }

  .commands_item {
    grid-template-columns: 20% auto 15%;
    font-size: 12px;
  }

  .commands_global_counter {
    display: none;
  }

  .commands_ez {
    display: none;
  }

  .commands_mention {
    display: none;
  }

  .commands_counter {
    display: none;
  }

  .commands_cd {
    display: none;
  }

  .commands_ml {
    display: none;
  }

  .commands_aliases {
    display: none;
  }

  .commands_timer {
    display: none;
  }

  .commands_ul {
    display: none;
  }

  .command_add_container {
    grid-template-columns: 120px auto;
  }

  .command_add_command_total_commands_text {
    display: none;
  }

  .command_add_command_total_commands {
    display: none;
  }
}
