:root {
  --custom-text-color: #6e6e6e;
  --span-color-low: rgba(96, 128, 255, 0.1);
  --green-color: #85f479;
  --orange-color: #f6b949;
  --red-color: #eb645d;
  --bottom-line-table: rgb(26 26 26);
  --t-color: #ffc107;
  --ct-color: #2196f3;
  --card-color: #161616;
  --bottom-line-table: rgb(255 255 255 / 2%);
  --button-color-hover: #161d27;
  --navbar-first-color: hsla(0, 0%, 100%, 0.02);
  --input-form: #222222;
}

.card h1 {
  display: flex;
  color: var(--span-color);
  text-transform: uppercase;
  font-size: 14px;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
  background-color: var(--bottom-line-table);
  border-radius: 6px 6px 0 0;
  align-items: center;
  border-bottom: 1px solid var(--bottom-line-table);
}

.card h1 svg {
  width: 12px;
  height: auto;
  fill: var(--span-color);
}

.row__requestform_formblock {
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.row__requestform_buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn_request {
  width: 100%;
}

.input-container {
  position: relative;
  margin: 5px 0;
}

.input-wrapper {
  display: flex;
  position: relative;
}

.input-wrapper span {
  cursor: help;
  display: flex;
  gap: 10px;
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 14px;
  height: 100%;
  color: var(--span-color);
  padding: 15px 14px;
  background-color: var(--navbar-first-color);
  border-radius: 4px 0px 0px 4px;
  z-index: 2;
}

.input-wrapper span svg {
  width: 14px;
  height: auto;
  fill: var(--span-color);
  opacity: 0.3;
  transition: 0.3s;
}

.input-wrapper span:hover svg {
  opacity: 1;
  transition: 0.3s;
}

.input-wrapper input {
  flex: 1;
  padding: 15px 14px 15px 10px;
  border-radius: 0px 4px 4px 0px;
  box-sizing: border-box;
  background-color: var(--color-dark);
  outline: none;
  color: var(--span-color);
  transition: 0.3s;
  z-index: 1;
}

.input-wrapper input:focus {
  background-color: var(--button-color-hover);
  transition: 0.3s;
}

.input-wrapper input::placeholder {
  font-size: 14px;
  font-weight: 700;
  color: var(--custom-text-color);
}

.input-wrapper input:-webkit-autofill,
.input-wrapper input:-webkit-autofill:hover,
.input-wrapper input:-webkit-autofill:focus,
.input-wrapper input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0.3s;
  -webkit-outline: 1px solid var(--span-color) !important;
}

.input-wrapper input:-webkit-autofill {
  -webkit-text-fill-color: var(--span-color) !important;
}

.input-form .input_text {
  gap: 5px;
  display: flex;
  color: var(--custom-text-color);
  background-color: var(--navbar-first-color);
  padding: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  border-radius: 4px;
  margin: 0 0 5px 0;
  align-items: center;
}

.input-form select {
  cursor: pointer;
  white-space: nowrap;
  text-align: left;
  outline: none;
  color: var(--span-color);
  background-color: var(--span-color-low);
  height: 40px;
  width: 100%;
  font-size: 12px;
  padding-left: 14px;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 8px;
  border: none;
  font-weight: 800;
}

.input-form select:focus:not([readonly]) {
  border-bottom: none;
}

/* Radio */

.radio {
  display: flex;
  /* width: max-content; */
  position: relative;
  margin: 0;
  padding: 10px 20px;
  align-items: center;
  background-color: var(--color-dark);
  border-radius: 4px;
  transition: 0.3s;
  white-space: nowrap;
}

.radio:hover {
  background-color: var(--button-color-hover);
  transition: 0.3s;
}

.radio__input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.radio__label {
  display: flex;
  color: var(--color-default);
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  border: solid 2px var(--navbar-first-color);
  background: var(--tablcolor);
  position: relative;
  height: 40px;
  font-size: 12px;
  border-radius: 6px;
  transition: 0.5s;
  align-items: center;
  padding: 5px 40px 5px 70px;
  cursor: pointer;
  user-select: none;
}

.radio__label:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--fon);
  border-radius: 2px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.radio__label:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #1effae;
  border-radius: 2px;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.radio__input:checked + .radio__label:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-color: rgba(30, 255, 174, 0.32);
  border-radius: 2px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.radio__input:checked + .radio__label:after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .input_radio_buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (min-width: 768px) {
  .input_radio_buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.border-checkbox:checked + .border-checkbox-label:after {
  -webkit-animation: check linear 0.5s;
  animation: check linear 0.5s;
  background-color: var(--span-color);
  opacity: 1;
}

.input-form .border-checkbox-label {
  position: relative;
  width: 100%;
  cursor: pointer;
  line-height: 22px;
  margin-top: 4px;
  padding-left: 30px;
  color: var(--custom-text-color);
  font-size: 12px;
  font-weight: 700;
}

.input-form .border-checkbox-label:after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background-color: var(--custom-text-color);
  opacity: 0.35;
  position: absolute;
  left: 6px;
  top: 2px;
}

.input-form .border-checkbox-label:before {
  content: "";
  display: block;
  background-color: var(--input-form);
  border-radius: 5px;
  width: 23px;
  height: 23px;
  position: absolute;
  left: 0;
}

.border-checkbox {
  display: none;
}

.border-checkbox:disabled ~ .border-checkbox-label {
  cursor: no-drop;
  color: var(--custom-text-color);
}

@-webkit-keyframes check {
  0% {
    transform: scale(0.5);
  }

  25% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }
}

@keyframes check {
  0% {
    transform: scale(0.5);
  }

  25% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }
}

.in_f {
  margin: 0 !important;
}

picture {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.text_recommend {
  display: flex;
  justify-content: center;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--custom-text-color);
  user-select: none;
}

.requests_rec_block {
  max-height: 451px;
  padding: 0 7px 0 0;
  overflow: hidden;
  overflow-y: scroll;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: pre-line;
}

.requests_rec_block > div {
  display: flex;
  padding: 10px;
  font-size: 12px;
  border-radius: 4px;
}

.requests_rec_block > div:nth-child(odd) {
  background-color: var(--bottom-line-table);
}

.requests_rec_block > div:nth-child(even) {
  background-color: var(--color-dark);
}

@media (max-width: 767px) {
  .requesrt_left_infochoose {
    display: flex;
    gap: 10px;
    background-color: var(--card-color);
    padding: 10px 0;
    border-radius: 6px;
    align-items: center;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .requesrt_left_infochoose {
    display: flex;
    background-color: var(--card-color);
    padding: 10px 20px;
    border-radius: 6px;
    align-items: center;
  }
}

.requesrt_left_infochoose span {
  display: flex;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--custom-text-color);
  user-select: none;
  opacity: 0.5;
  align-items: center;
  gap: 5px;
}

.requesrt_left_infochoose svg {
  width: 12px;
  height: auto;
  fill: var(--custom-text-color);
  opacity: 0.5;
}

.request_choose_buttons {
  display: flex;
  margin-left: 10px;
  gap: 3px;
  align-items: center;
  flex-wrap: wrap;
}

.request_buttonchoose {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  background-color: var(--color-dark);
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: 0.15s;
  white-space: nowrap;
}

.request_buttonchoose:hover {
  background-color: var(--button-color-hover);
  transition: 0.15s;
  color: var(--span-color);
}

.active_req {
  background-color: var(--span-color);
  color: var(--bg-color);
}

.tab-content:not(.active1) {
  display: none;
}

.module_setting {
  float: right;
  right: 7px;
}

.close {
  position: relative;
  cursor: pointer;
}

.close svg {
  width: 20px;
  height: 20px;
  fill: var(--span-color);
}

.req_btn {
  display: flex;
  background-color: var(--color-dark);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  padding: 13px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  float: right;
}

.req_btn:hover {
  background-color: var(--button-color-hover);
  color: var(--span-color);
  transition: 0.3s;
}

.req_btn svg {
  width: 12px;
  height: auto;
  fill: var(--custom-text-color);
  transition: 0.3s;
}

.req_btn:hover svg {
  fill: var(--default-text-color);
  transition: 0.3s;
}

.request_rev_del {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.req_btn_del {
  display: flex;
  background-color: var(--color-dark);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  padding: 13px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.req_btn_del:hover {
  background-color: var(--button-color-hover);
  color: var(--span-color);
  transition: 0.3s;
}

.req_btn_del svg {
  width: 12px;
  height: auto;
  fill: var(--custom-text-color);
  transition: 0.3s;
}

.req_btn_del:hover svg {
  fill: var(--red-color);
  transition: 0.3s;
}

.req_flex {
  display: flex;
  gap: 5px;
  padding-right: 0 !important;
  justify-content: flex-end;
}

.close_req {
  background-color: var(--color-dark);
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.case-buttons_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.request_list_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

.request_list_info > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--bottom-line-table);
  justify-content: center;
  padding: 5px 10px;
  border-radius: 4px;
  align-items: center;
  text-align: center;
}

.request_other {
  font-size: 12px;
  opacity: 0.5;
}

.request_other_value {
  font-weight: 700;
  color: var(--span-color);
}

.request_list_info_text {
  padding: 10px;
  background-color: var(--bottom-line-table);
  margin-top: 10px;
  border-radius: 4px;
}

.req_text_title {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  background-color: var(--bottom-line-table);
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--custom-text-color);
  border-radius: 4px;
}

.request_answers {
  width: 100%;
  white-space: pre-line;
  max-height: 500px;
  overflow: hidden;
  overflow-y: scroll;
  font-weight: 700;
  font-size: 14px;
}

.request_verdict_buttons {
  display: flex;
  justify-content: flex-start;
  margin: 10px 0;
  gap: 5px;
  flex-wrap: nowrap;
}

.verdict_btn {
  display: flex;
  flex-direction: row;
  background-color: var(--color-dark);
  color: var(--default-text-color);
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  white-space: nowrap;
  transition: 0.3s;
}

.verdict_btn:hover {
  background: var(--button-color-hover);
  transition: 0.3s;
}

.verdict_btn svg {
  width: 12px;
  height: auto;
  fill: var(--default-text-color);
  transition: 0.3s;
}

.reviewed {
  background: var(--green-color);
  color: black;
  transition: 0.3s;
}

.under {
  background: var(--orange-color);
  color: black;
  transition: 0.3s;
}

.rejected {
  background: var(--red-color);
  color: black;
  transition: 0.3s;
}

.reviewed:hover {
  filter: brightness(115%);
  transition: 0.3s;
  background: var(--green-color);
}

.under:hover {
  filter: brightness(115%);
  transition: 0.3s;
  background: var(--orange-color);
}

.rejected:hover {
  filter: brightness(115%);
  transition: 0.3s;
  background: var(--red-color);
}

.reviewed svg,
.under svg,
.rejected svg {
  width: 12px;
  height: auto;
  fill: var(--bottom-line-table);
  transition: 0.3s;
}

.request_status-1 {
  color: var(--orange-color) !important;
  opacity: 1 !important;
  font-size: 12px;
}

.request_status-2 {
  color: var(--green-color) !important;
  opacity: 1 !important;
  font-size: 12px;
}

.request_status-3 {
  color: var(--red-color) !important;
  opacity: 1 !important;
  font-size: 12px;
}

.request_status-4 {
  color: var(--red-color) !important;
  opacity: 1 !important;
  font-size: 12px;
}

.btn_delete:hover svg {
  fill: var(--bottom-line-table);
  transition: 0.3s;
}

.req_answer_but {
  display: flex;
  gap: 5px;
}

.message_block {
  display: flex;
  justify-content: space-between;
  margin: 0px 7px 5px 5px;
  background-color: var(--bottom-line-table);
  padding: 10px;
  border-radius: 4px;
  position: relative;
}

.message_date {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 5px;
  top: 2px;
  font-size: 9px;
  padding: 5px;
  color: var(--custom-text-color);
  align-items: center;
}

.message_nickname {
  color: var(--span-color);
  font-weight: 700;
  font-size: 13px;
}

.message_text {
  font-size: 12px;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
  width: 100%;
  position: relative;
  background-color: var(--button-color-hover);
}

.message_text:after {
  content: "";
  position: absolute;
  display: block;
  top: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 7px 6.5px;
  border-color: transparent transparent var(--button-color-hover) transparent;
}

.message_block_player {
  display: flex;
  justify-content: flex-end;
  margin: 0px 7px 5px 5px;
  background-color: var(--bottom-line-table);
  padding: 10px;
  border-radius: 6px;
  position: relative;
}

.message_date_player {
  display: flex;
  gap: 10px;
  position: absolute;
  left: 5px;
  top: 2px;
  font-size: 9px;
  padding: 5px;
  color: var(--custom-text-color);
  flex-direction: row-reverse;
  align-items: center;
}

.message_nickname_player {
  color: var(--span-color);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  justify-content: flex-end;
}

.message_text_player {
  font-size: 12px;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
  width: 100%;
  position: relative;
  background-color: var(--button-color-hover);
}

.message_text_player:after {
  content: "";
  position: absolute;
  display: block;
  top: -6px;
  right: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 7px 6.5px;
  border-color: transparent transparent var(--button-color-hover) transparent;
}

.message_block_of {
  max-height: 697px;
  overflow: hidden;
  overflow: auto;
  margin-right: 7px;
  margin-bottom: 5px;
}

.my_requesrt_btn {
  height: 58px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: var(--span-color);
  color: var(--bg-color);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.my_requesrt_btn svg {
  width: auto;
  height: 14px;
  fill: var(--bg-color);
  transition: 0.3s;
}

.my_requesrt_btn:hover {
  background-color: var(--button-color-hover);
  transition: 0.3s;
  color: var(--span-color);
}

.my_requesrt_btn:hover svg {
  fill: var(--span-color);
  transition: 0.3s;
}

.my_requesrt_btn_disabled {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 6px;
  background-color: var(--color-dark);
  cursor: default;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.2;
  user-select: none;
}

.my_requesrt_btn_disabled svg {
  width: auto;
  height: 14px;
  fill: var(--default-text-color);
  transition: 0.3s;
}

@media (max-width: 1440px) {
  .request_verdict_buttons {
    display: flex;
    justify-content: flex-start;
    margin: 10px 0;
    gap: 5px;
    flex-wrap: wrap;
  }
}

.table td svg {
  display: flex;
  width: 16px;
  height: auto;
}

.xmark {
  fill: var(--red-color);
  width: 10px !important;
}

.check {
  fill: var(--green-color);
  width: 10px !important;
}

.center_svg {
  display: flex;
  justify-content: center;
}

.empty_request {
  display: flex;
  gap: 20px;
  height: 200px;
  flex-direction: column;
  align-items: center;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.3;
  text-transform: uppercase;
  color: var(--custom-text-color);
  justify-content: center;
}

.empty_request svg {
  width: 100px;
  height: auto;
  fill: var(--custom-text-color);
}

.request_help {
  font-size: 8px;
  font-weight: 600;
  color: var(--default-text-color);
  opacity: 0.5;
  line-height: 0 !important;
}

.request_avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.delete_message {
  color: var(--red-color);
  font-weight: 700;
  background-color: var(--bottom-line-table);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.request_answers span {
  color: var(--span-color);
}

.profile_friends_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

/* Stats */

.block-info-users {
  display: grid;
  border-radius: 6px;
  gap: 15px;
  padding: 15px;
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  background-color: var(--navbar-first-color);
  position: relative;
  margin-bottom: 30px;
  justify-items: center;
}

.block-info-users > svg {
  margin-top: 15px;
  height: 60px;
  fill: var(--span-color);
}

.block-info-users-type {
  text-align: center;
  color: var(--span-color);
}

.block-info-users-text {
  text-align: center;
  color: var(--color-dark);
  font-size: 10px;
}

.block-info-users-button {
  display: flex;
  height: 40px;
  width: 100%;
  padding: 0px 30px;
  color: var(--span-color);
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
  background: var(--tablcolor);
  border: solid 2px var(--navbar-first-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  margin-left: auto;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}

.block-info-users-button:hover {
  border-color: var(--span-color);
}

@media (min-width: 1130px) {
  .stats-grid-2 {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 30px;
  }

  .stats-grid-2 .stats-grid-2-sticky {
    height: min-content;
    top: 75px;
    position: sticky;
  }

  .stats-grid-22 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stats-grid-22 .stats-grid-22-sticky {
    height: min-content;
    top: 75px;
    position: sticky;
  }
}

.card-container {
  margin: 25px 0px;
}

/* Chat */
.chat_main_content_req {
  display: flex;
  width: 100%;
  gap: 15px;
  padding: 10px 5px 10px 10px;
  margin: 15px 0px;
  flex-direction: column;
  overflow-y: scroll;
  height: 600px;
  background-color: var(--bottom-line-table);
}

.chat_send_message_req > textarea {
  outline: 0;
  resize: vertical;
  float: left;
  min-height: 40px;
  max-height: 100px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 6px;
  line-height: 1.5;
  padding: 9px 50px 9px 15px;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  background-color: var(--fon);
  border: solid 2px var(--navbar-first-color);
  box-sizing: border-box;
  color: var(--link-second-navbar-color);
  overflow-wrap: break-word;
}

.chat_smile_btn {
  right: 100px !important;
}

.chat_footer_send {
  padding: 20px;
  background: var(--sidebar-color);
}

/* 28.01.24 */

/* @media (min-width: 788px) {
  .request-container {
    margin: 0 30px;
  }
} */

.container_text_access {
  display: flex;
  padding: 25px 20px;
  position: relative;
  line-height: normal;
  background: var(--fon);
  border: solid 2px var(--navbar-first-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  border-radius: 6px 6px 0px 0px;
  justify-content: space-between;
}

.container_text_access > svg {
  width: 50px;
  fill: var(--default-text-color);
  position: relative;
  left: 93px;
  height: 50px;
}

.container_text_settings_text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.settings_header_text_top {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.card_settings {
  background: var(--navbar-first-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  border-radius: 0 0 6px 6px;
  padding: 10px;
  display: grid;
  gap: 5px;
  align-content: space-between;
}

.request-table {
  width: 100%;
  white-space: normal;
}

.chat_message_date > .del_request {
  color: var(--span-color);
  cursor: pointer;
  transition: .5s;
}
.chat_message_date > .del_request:hover {
  color: red;
}