.top h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.top p {
	max-width: 50%;
  margin: auto;
  color: #A3A3A3;
}

.top {
	text-align: center;
	margin-top: 125px !important;
}

.top h1 svg {
	stroke: #F6B83E;
}

.module_middle {
  padding: 2em 0 2em 0;
  background: #262626;
  font-size: 14px;
  color: #A3A3A3;
  margin-top: 60px;
  position: relative;
}

.details_flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
}

.detail {
	display: flex;
	align-items: center;
	gap: 12px;
}

.detail_circle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #56482B;
	border-radius: 999px;
}

.detail_circle svg {
	stroke: #F6B83E;
}

.detail h2 {
  margin: initial !important;
  color: #FAFAFA;
  font-size: 25px;
}
.detail p {
  margin: initial !important;
  font-size: 12px;
}

.support_grid {
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.p_20 {
	padding: 1rem !important;
}

.p_20 h2 {
	color: #FAFAFA;
	font-size: 18px;
	margin-top: 0;
}

.p_20 p {
	color: #A3A3A3;
	font-size: 14px;
	margin: 0;
}

.input_title {
	color: #FAFAFA;
	font-size: 14px;
	margin-top: 25px;
	margin-bottom: 4px;
	font-weight: 501;
}

.i_text {
	border: 1px solid #363636;
  background: #1818188c;
  width: 100%;
  color: #FAFAFA;
  border-radius: 4px;
  padding: 6px;
  box-sizing: border-box;
}

.select {
	border: 1px solid #363636;
  background: #1818188c;
  color: #A3A3A3;
  border-radius: 4px;
  padding: 6px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.select svg {
	width: 15px;
	color: #A3A3A399;
	height: 15px;
}

.select {
  position: relative;
}
.select svg {
  margin-left: auto;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.select_menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: fit-content;
  background: #1e1e1e;
  border: 1px solid #363636;
  border-radius: 4px;
  z-index: 100;
  box-sizing: border-box;
  overflow: hidden;
}

.select_menu.open {
  display: block;
}

.select_option {
  padding: 8px 12px;
  font-size: 14px;
  color: #A3A3A3;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.15s;
}

.select_option:hover {
  background: #2a2a2a7d;
  color: #FAFAFA;
}

.select_option.selected {
  color: #FAFAFA;
  background: #2a2a2a7d;
}

.select_wrapper {
  position: relative;
}

.select_option svg {
	width: 16px;
	height: 16px;
	margin-right: 5px;
}

.order_selected_left {
	display: flex;
	gap: 16px;
  align-items: center;
}

.order_ref_c {
	text-align: initial;
}

.order_ref {
	color: #F6B83E;
}

.order_meta {
	font-size: 11px;
}

.order_clear {
	font-size: 22px;
	width: 24px;
	transition: .2s;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
}

.order_clear:hover {
	background: #453C2A;
	color: #FAFAFA;
}

#select_order.has_order {
  border-color: #F6B83E44;
  background: #56482B22;
  padding: 12px;
  padding-left: 15px;
  padding-right: 15px;
}

#select_order.has_order svg {
	width: 20px;
  height: 20px;
}

.select_option span {
	color: #FAFAFA;
	margin-right: 5px;
}

.cards_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.card_check {
  cursor: pointer;
}

.card_check input[type="checkbox"] {
  display: none;
}

.card_check_inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #363636;
  border-radius: 6px;
  background: #18181888;
  transition: border-color 0.15s, background 0.15s;
}

.card_check_inner svg {
  stroke: #A3A3A3;
  flex-shrink: 0;
}

.card_name {
  font-size: 13px;
  font-weight: 500;
  color: #FAFAFA;
}

.card_meta {
  font-size: 11px;
  color: #A3A3A3;
  margin-top: 2px;
}

.card_check input:checked + .card_check_inner {
  border-color: #F6B83E44;
  background: #56482B22;
}

.card_check input:checked + .card_check_inner svg {
  stroke: #F6B83E;
}

.card_check input:checked + .card_check_inner .card_name {
  color: #F6B83E;
}

textarea {
  border: 1px solid #363636;
  background: #1818188c;
  width: 100%;
  color: #FAFAFA;
  border-radius: 4px;
  padding: 6px;
  box-sizing: border-box;
  resize: vertical;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  max-height: 450px;
  min-height: 60px;
}

textarea::placeholder {
  color: #A3A3A3;
}

textarea:focus {
  border-color: #565656;
  border: 1px solid #363636;
}

.file_upload {
	padding: 4px;
	border-radius: 4px;
	border: 1px solid #363636;
  background: #1818188c;
  display: flex;
  align-items: center;
  color: #A3A3A3;
  font-size: 13px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  gap: 8px;
  min-width: 0;
  max-width: 170px;
}

.file_upload svg {
	width: 12px;
}

.import_container {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
	font-size: 10px;
	color: #A3A3A3;
	justify-content: space-between;
}

.btn_submit {
	padding: 8px;
	background: #7F5A14;
  color: #121212;
  border-radius: 4px;
  font-weight: 601;
  font-size: 11px;
  padding-left: 14px;
  padding-right: 14px;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit_active {
	background: #F6B83E;
	transition: .2s;
	cursor: pointer;
}

.submit_active:hover {
	background: #FDC557;
}

.file_upload svg {
  flex-shrink: 0;
}

.file_upload .file_clear {
  flex-shrink: 0;
}

.file_name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.btn_submit svg {
	width: 16px;
}

.file_clear {
  color: #FAFAFA;
  font-size: 20px;
}

.top20 {
	margin-top: 30px;
}

.other-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  background-color: #262626;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/include/images/svg/background-profile.svg");
  margin-top: 30px;
}

.other-container .title-help {
  margin-top: initial !important;
  font-size: 20px !important;
}
.title-help {
  margin-top: 10rem;
  font-weight: 501;
  font-size: 28px;
  line-height: 29px;
  color: #FAFAFA;
  text-align: center;
}

.faq_tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.faq_tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #363636;
  font-size: 12px;
  color: #A3A3A3;
  cursor: pointer;
  transition: all 0.15s;
}

.faq_tag:hover {
  border-color: #565656;
  color: #FAFAFA;
}

.faq_tag.active {
  border-color: #F6B83E44;
  background: #56482B33;
  color: #F6B83E;
}

.faq_tag svg {
  flex-shrink: 0;
}

.faq_item {
  border-radius: 5px;
  overflow: hidden;
}

.faq_item:last-child {
  border-bottom: none;
}

.faq_question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  cursor: pointer;
  color: #FAFAFA;
  font-size: 14px;
  background: #262626;
  padding-left: 14px;
  padding-right: 14px;
}

.faq_question span {
  flex: 1;
}

.faq_chevron {
  stroke: #A3A3A3;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq_item.open .faq_chevron {
  transform: rotate(180deg);
}

.faq_icon_wrap {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 40px;
  font-size: 13px;
  color: #A3A3A3;
  background: #191919;
  line-height: 1.6;
}

.faq_item.open .faq_answer {
  max-height: 2000px;
  padding: 10px 0 14px 40px;
  border-top: 5px SOLID #121212;
}

.faq_list .faq_item:not(:first-child) {
	margin-top: 20px;
}

.container_faq {
	margin-top: 30px;
}

.container_faq h2 {
	color: #FAFAFA;
}

.faq_answer p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #A3A3A3;
  line-height: 1.6;
}

.faq_answer ul {
  margin: 0 0 12px 0;
  padding-left: 18px;
}

.faq_answer ul li {
  font-size: 13px;
  color: #A3A3A3;
  line-height: 1.7;
}

.faq_answer strong {
  color: #FAFAFA;
  font-weight: 500;
}

.faq_section {
  border-top: 1px solid #262626;
  margin-top: 14px;
  padding-top: 14px;
}

.faq_section_title {
  font-size: 14px;
  font-weight: 500;
  color: #FAFAFA;
  margin-bottom: 10px;
}

.container_faq a {
	text-decoration: underline;
}

.title_tickets {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.active_tickets {
	padding: 4px;
	padding-left: 8px;
	padding-right: 8px;
	color: #F6B83E;
	background: #56482B;
	font-size: 11px;
  border-radius: 5px;
}

.title_tickets h2 {
	margin: initial;
}

.ticket {
	width: 100%;
	border: 1px solid #363636;
  background: #1818188c;
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  transition: .2s;
  cursor: pointer;
  display: block;
}

.ticket_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #A3A3A3;
	margin-bottom: 10px;
	font-size: 12px;
	min-width: 0
}

.ticket_step {
	padding: 3px;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 4px;	
	font-size: 11px;
	display: flex;
  align-items: center;
  gap: 4px;
}

.green {
	border: 1px solid #0C4B27;
	background: #16211C;
	color: #0AA458;
}

.yellow {
	border: 1px solid #4E3510;
	background: #231E17;
	color: #C08C06;
}

.blue {
	border: 1px solid #193256;
	background: #191E24;
	color: #407CBF;
}

.ticket_step svg {
	height: 15px;
	width: 15px;
}

.show svg {
	width: 15px;
	height: 15px;
}

.title_ticket {
	display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 501;
}

.ticket_footer {
	display: flex;
	gap: 14px;
	font-size: 11px;
  color: #A3A3A3;
  align-items: center;
  margin-top: 2px;
}

.ticket_order {
	color: #F6B83E;
}

.comment svg {
	width: 10px;
}

.comment {
	display: flex;
	align-items: center;
	gap: 4px;
}

.ticket:hover {
  background: #1c1c1c8c;
  border: 1px solid #3d3d3d;
}

.tickets .ticket:not(:first-child) {
	margin-top: 10px;
}

.href_profile {
  color: #A3A3A3;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  margin-top: 15px;
  margin-bottom: 10px;
  cursor: pointer;
}

.href_profile svg {
  width: 13px;
  margin-left: 2px;
}

.href_profile:hover {
	color: #FAFAFA;
}

.no_tickets {
	color: #A3A3A3;
  padding: 20px;
  text-align: center;
  font-size: 13px;
}

.mw40rem {max-width: 40rem !important;}

.login_-btn {
  padding: 9px;
  background: #FAFAFA;
  color: #121212;
  font-weight: 601;
  border-radius: 5px;
  cursor: pointer;
  padding-left: 17px;
  padding-right: 17px;
  border: 1px SOLID #FAFAFA;
  transition: .2s;
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 30px;
}

.login_-btn:hover {
  background-color: #D3D3D3;
  border: 1px SOLID #D3D3D3;
}

.other-container p {
	margin: initial;
	color: #A3A3A3;
	margin-top: 5px;
}

.email {
  color: #F6B83E;
  display: block;
  margin: auto;
  width: fit-content;
  margin-top: 25px;
}

.email:hover {
	text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .support_grid {
    display: block;
  }
  .support_grid > div:nth-child(2) {
    margin-top: 30px;
  }
}