.support_section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#create_ticket{
  display: none;
}

#view_ticket{
  display: none;
}

.view_ticket_content{
  overflow: auto;
}

.view_ticket_response{
  margin: 6px 12px;
  padding: 12px;
  text-align: justify;
  border-radius: 4px;
}

.ticket_admin{
  display: block;
  float: right;
  background-color: #445;
}

.ticket_user{
  display: block;
  float: left;
  background-color: #446;
}

.ticket_response_footer{
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  display: block;
  margin-top: 8px;
}

.ticket_response_text{
  display: block;
}

.view_ticket_reply{
  margin: 12px;
  text-align: center;
}

.support_container{
  font-family: 'Anybody', cursive;
  background-color: rgba(45, 45, 65, 0.7);
  border-radius: 4px;
  text-shadow: -1px -1px 1px #020202;
  box-shadow: rgba(5, 5, 5, 0.3) 0px 1px 2px 0px,
    rgba(5, 5, 5, 0.15) 0px 1px 3px 1px;
}

.support_tickets_header_section{
  text-align: center;
  margin-top: 18px;
}

.create_ticket_header_section{
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2%;
  padding-right: 2%;
  color: cadetblue;
}

.view_ticket_header_section{
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2%;
  padding-right: 2%;
  color: cadetblue;
}

.new_ticket_section{
  padding-left: 2%;
  padding-right: 2%;
}

.ticketInput{
  width: 100%;
  padding: 6px 10px;
  resize: none;
  color: white;
  background: transparent;
  border: 2px solid #667;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.ticketInput:focus {
  outline: none;
  border: 2px solid #bbc;
}

.ticketInput::placeholder {
  color: #eef;
}

.ticketInput:-ms-input-placeholder {
 color: #eef;
}

.ticketInput::-ms-input-placeholder {
 color: #eef;
}

#back_to_support_tickets{
  background-color: #eef;
}

#back_to_support_tickets:hover{
  background-color: white;
}

#ticketReplyText{
  margin: 0px;
  margin-bottom: 8px;
}

.ticket_status{
  color: white;
  border-radius: 4px;
}

.ticket_status_open{
  background-color: #0454cc;
}

.ticket_status_resolved{
  background-color: #04845c;
}

.ticket_list_status_open{
  background-color: #0454cc;
}

.ticket_list_status_resolved{
  background-color: #04845c;
}

.create_ticket_header_left{
  flex-grow: 1;
}

.view_ticket_header_left{
  flex-grow: 1;
}

.view_ticket_header_id{
  color: cadetblue;
}

.view_ticket_header_id_val{
  color: white;
}

.view_ticket_header_description{
  color: white;
}

.user_tickets{
  text-align: center;
}

.no_tickets{
  color: cadetblue;
  font-size: 16px;
}

.tickets_table{
  width: 100%;
}

.tickets_table th{
  color: cadetblue;
}

.tickets_table_row{
  background-color: #334;
  cursor: pointer;
  transition: 0.3s;
}

.tickets_table_row:hover{
  background-color: #445;
}

.support_button {
  border: none;
  background-color: rgb(255, 250, 175);
  color: #223;
  font-weight: bold;
  transition: 0.3s;
}

.support_button:hover {
  background-color: rgb(255, 250, 215);
}

.faq_categories{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.faq_category{
  max-width: 100%;
  background-color: rgba(45, 45, 65, 0.7);
  color: white;
  text-align: center;
  font-family: 'Anybody', cursive;
  text-shadow: -1px -1px 1px #020202;
  white-space: nowrap;
  flex: 1;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: rgba(5, 5, 5, 0.3) 0px 1px 2px 0px,
    rgba(5, 5, 5, 0.15) 0px 1px 3px 1px;
  transition: 0.3s;
}

.faq_category:hover{
  background-color:rgba(55, 55, 75, 1);
  color: white;
  cursor: pointer;
}

.faq_category_selected{
  background-color:rgba(55, 55, 75, 1);
  border: 1px solid #889;
  color: white;
}

.faq_item{
    font-family: 'Anybody', cursive;
    text-shadow: -1px -1px 1px #020202;
    margin: 4px;
    display: none;
}

.faq_question{
    background-color: rgba(45, 45, 65, 0.7);
    border-radius: 4px;
    box-shadow: rgba(5, 5, 5, 0.3) 0px 1px 2px 0px,
      rgba(5, 5, 5, 0.15) 0px 1px 3px 1px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.faq_question:hover, .faq_question_selected{
    background-color: rgba(55, 55, 75, 1);
    cursor: pointer;
}

.faq_answer{
    padding: 8px 18px;
    display: none;
}

.faq_answer img{
  margin-bottom: 12px;
  height: auto;
  margin-left: 15px;
  margin-right: auto;
}

.faq_answer p{
  text-align: justify !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 1px !important;
}

.faq_answer a{
  color: rgb(116, 181, 184);
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.faq_answer a:hover{
  color: rgb(142, 207, 211);
}

.faq_answer li{
  letter-spacing: 1px;
  text-align: justify;
  padding: 0;
  margin: 0;
}

.faq_section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq_section hr, .support_section hr{
    border: none;
    border-image: 
        linear-gradient(to right, 
        rgba(110, 110, 145, 0), 
        rgba(110, 110, 145, 0.2),
        rgb(110, 110, 145),
        rgba(110, 110, 145, 0.2),
        rgba(110, 110, 145, 0)) 1;
    border-width: 1px;
    border-style: solid;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: 12px;
    margin-bottom: 12px;
}

.page_section {
  padding: 0px;
}

.page_section h2 {
  text-align: center;
  font-family: 'Anybody', cursive;
  padding: 8px;
  margin: 0;
  color: rgb(255, 250, 175);
  transition: 0.2s;
}

#page_section_text p {
    text-align: justify;
    text-indent: 15px;
    width: 90%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Anybody', cursive;
    text-shadow: -1px -1px 1px #020202;
}

@media (min-width: 2200px) {
    .faq_section hr{
      width: 1200px;
    }

    .view_ticket_header_id{
      font-size: 18px;
    }

    .view_ticket_header_description{
      font-size: 14px;
    }

    .ticket_response_text{
      font-size: 14px;
    }
    
    .ticket_response_footer{
      font-size: 12px;
      letter-spacing: 1px;
    }

    .view_ticket_response{
      width: 60%;
    }

    .support_button{
      box-shadow: 2px 3px 3px rgba(20, 17, 6, 0.9);
      border-radius: 4px;
    }

    #ticketTitle {
      font-size: 16px;
    }

    #ticketText{
      font-size: 14px;
      height: 320px;
    }

    #ticketReplyText{
      font-size: 14px;
      height: 200px;
    }

    .tickets_table_column_status{
      min-width: 130px;
    }

    .support_container{
      font-size: 22px;
      letter-spacing: 1px;
      width: 1200px;
    }

    .tickets_table th{
      font-size: 18px;
      padding: 8px;
    }
    
    .tickets_table td{
      font-size: 16px;
      padding: 8px;
    }

    .ticket_status{
      font-size: 14px;
      padding: 4px 8px;
    }

    .user_tickets{
      padding: 8px 24px;
      font-size: 26px;
    }
    
    .faq_question{
      padding: 8px 18px;
      font-size: 20px;
    }

    .faq_answer p, .faq_answer li{
      font-size: 16px !important;
    }

    .faq_answer img{
      width: 600px;
    }
    
    .faq_item{
      width: 1200px;
    }
    
    .faq_categories{
      width: 1200px;
    }
    
    .faq_category{
      font-size: 16px;
      margin: 4px;
      padding: 8px;
    }

    #page_section_text p {
      font-size: 16px;
      letter-spacing: 1px;
    }

    .page_section h2 {
      font-size: 28px;
      letter-spacing: 3px;
    }

    .no_tickets{
      font-size: 16px;
    }
  }
  
  @media (min-width: 1850px) and (max-width: 2199px) {
    .faq_section hr{
      width: 1000px;
    }

    .view_ticket_header_id{
      font-size: 18px;
    }

    .view_ticket_header_description{
      font-size: 14px;
    }

    .ticket_response_text{
      font-size: 14px;
    }
    
    .ticket_response_footer{
      font-size: 12px;
      letter-spacing: 1px;
    }

    .view_ticket_response{
      width: 60%;
    }

    .support_button{
      box-shadow: 2px 3px 3px rgba(20, 17, 6, 0.9);
      border-radius: 4px;
    }

    #ticketTitle {
      font-size: 16px;
    }

    #ticketText{
      font-size: 14px;
      height: 320px;
    }

    #ticketReplyText{
      font-size: 14px;
      height: 200px;
    }

    .tickets_table_column_status{
      min-width: 130px;
    }

    .support_container{
      font-size: 20px;
      letter-spacing: 1px;
      width: 1000px;
    }

    .tickets_table th{
      font-size: 18px;
      padding: 8px;
    }
    
    .tickets_table td{
      font-size: 16px;
      padding: 8px;
    }

    .ticket_status{
      font-size: 14px;
      padding: 4px 8px;
    }

    .user_tickets{
      padding: 8px 24px;
      font-size: 24px;
    }
    
    .faq_question{
      padding: 8px 18px;
      font-size: 20px;
    }

    .faq_answer p, .faq_answer li{
      font-size: 16px !important;
    }

    .faq_answer img{
      width: 500px;
    }
    
    .faq_item{
      width: 1000px;
    }
    
    .faq_categories{
      width: 1000px;
    }
    
    .faq_category{
      font-size: 16px;
      margin: 4px;
      padding: 8px;
    }

    #page_section_text p {
      font-size: 16px;
      letter-spacing: 1px;
    }

    .page_section h2 {
      font-size: 28px;
      letter-spacing: 3px;
    }

    .no_tickets{
      font-size: 16px;
    }
  }
  
  @media (min-width: 1500px) and (max-width: 1849px) {
    .faq_section hr{
      width: 800px;
    }

    .view_ticket_header_id{
      font-size: 16px;
    }

    .view_ticket_header_description{
      font-size: 13px;
    }

    .ticket_response_text{
      font-size: 13px;
    }
    
    .ticket_response_footer{
      font-size: 11px;
      letter-spacing: 1px;
    }

    .view_ticket_response{
      width: 60%;
    }

    .support_button{
      box-shadow: 1px 2px 2px rgba(20, 17, 6, 0.7);
      border-radius: 4px;
    }

    #ticketTitle {
      font-size: 14px;
    }

    #ticketText{
      font-size: 12px;
      height: 260px;
    }

    #ticketReplyText{
      font-size: 12px;
      height: 180px;
    }

    .tickets_table_column_status{
      min-width: 110px;
    }

    .support_container{
      font-size: 18px;
      width: 800px;
    }

    .tickets_table th{
      font-size: 16px;
      padding: 6px;
    }
    
    .tickets_table td{
      font-size: 14px;
      padding: 6px;
    }

    .ticket_status{
      font-size: 12px;
      padding: 3px 6px;
    }

    .user_tickets{
      padding: 8px 24px;
      font-size: 24px;
    }
    
    .faq_question{
      padding: 8px 18px;
      font-size: 18px;
    }

    .faq_answer p, .faq_answer li{
      font-size: 15px !important;
    }

    .faq_answer img{
      width: 400px;
    }
    
    .faq_item{
      width: 800px;
    }
    
    .faq_categories{
      width: 800px;
    }
    
    .faq_category{
      font-size: 15px;
      margin: 4px;
      padding: 8px;
    }

    #page_section_text p {
      font-size: 16px;
      letter-spacing: 1px;
    }

    .page_section h2 {
      font-size: 24px;
      letter-spacing: 2px;
    }

    .no_tickets{
      font-size: 16px;
    }
  }

  @media (min-width: 1000px) and (max-width: 1499px) {
    .faq_section hr{
      width: 800px;
    }

    .view_ticket_header_id{
      font-size: 16px;
    }

    .view_ticket_header_description{
      font-size: 13px;
    }

    .ticket_response_text{
      font-size: 13px;
    }
    
    .ticket_response_footer{
      font-size: 11px;
      letter-spacing: 1px;
    }

    .view_ticket_response{
      width: 60%;
    }

    .support_button{
      box-shadow: 1px 2px 2px rgba(20, 17, 6, 0.7);
      border-radius: 4px;
    }

    #ticketTitle {
      font-size: 14px;
    }

    #ticketText{
      font-size: 12px;
      height: 260px;
    }

    #ticketReplyText{
      font-size: 12px;
      height: 180px;
    }

    .tickets_table_column_status{
      min-width: 110px;
    }

    .support_container{
      font-size: 16px;
      width: 800px;
    }

    .tickets_table th{
      font-size: 16px;
      padding: 6px;
    }
    
    .tickets_table td{
      font-size: 14px;
      padding: 6px;
    }

    .ticket_status{
      font-size: 12px;
      padding: 3px 6px;
    }

    .user_tickets{
      padding: 8px 16px;
      font-size: 22px;
    }
    
    .faq_question{
      padding: 8px 18px;
      font-size: 16px;
    }

    .faq_answer p, .faq_answer li{
      font-size: 14px !important;
    }

    .faq_answer img{
      width: 400px;
    }
    
    .faq_item{
      width: 800px;
    }
    
    .faq_categories{
      width: 800px;
    }
    
    .faq_category{
      font-size: 14px;
      margin: 4px;
      padding: 6px;
    }

    #page_section_text p {
      font-size: 14px;
      letter-spacing: 1px;
    }

    .page_section h2 {
      font-size: 24px;
      letter-spacing: 2px;
    }

    .no_tickets{
      font-size: 14px;
    }
  }
  
  @media (min-width: 800px) and (max-width: 999px) {
    .faq_section hr{
      width: 700px;
    }

    .view_ticket_header_id{
      font-size: 14px;
    }

    .view_ticket_header_description{
      font-size: 12px;
    }

    .ticket_response_text{
      font-size: 12px;
    }
    
    .ticket_response_footer{
      font-size: 11px;
    }

    .view_ticket_response{
      width: 65%;
    }

    .support_button{
      box-shadow: 1px 1px 1px rgba(20, 17, 6, 0.5);
      border-radius: 3px;
    }

    #ticketTitle {
      font-size: 14px;
    }

    #ticketText{
      font-size: 12px;
      height: 260px;
    }

    #ticketReplyText{
      font-size: 12px;
      height: 180px;
    }
    
    .tickets_table_column_status{
      min-width: 100px;
    }

    .support_container{
      font-size: 16px;
      width: 700px;
    }

    .tickets_table th{
      font-size: 14px;
      padding: 4px;
    }
    
    .tickets_table td{
      font-size: 12px;
      padding: 4px;
    }

    .ticket_status{
      font-size: 11px;
      padding: 2px 4px;
    }

    .user_tickets{
      padding: 8px 8px;
      font-size: 22px;
    }
    
    .faq_question{
      padding: 8px 18px;
      font-size: 16px;
    }

    .faq_answer p, .faq_answer li{
      font-size: 14px !important;
    }

    .faq_answer img{
      width: 350px;
    }
    
    .faq_item{
      width: 700px;
    }
    
    .faq_categories{
      width: 700px;
    }
    
    .faq_category{
      font-size: 14px;
      margin: 4px;
      padding: 6px;
    }

    #page_section_text p {
      font-size: 14px;
      letter-spacing: 1px;
    }

    .page_section h2 {
      font-size: 24px;
      letter-spacing: 2px;
    }

    .no_tickets{
      font-size: 14px;
    }
  }
  
  @media (min-width: 460px) and (max-width: 799px) {
    .faq_section hr{
      width: 90%;
    }

    .view_ticket_header_id{
      font-size: 13px;
    }

    .view_ticket_header_description{
      font-size: 11px;
      max-width: 320px;
    }

    .ticket_response_text{
      font-size: 11px;
    }
    
    .ticket_response_footer{
      font-size: 10px;
    }

    .view_ticket_response{
      width: 75%;
    }

    .support_button{
      box-shadow: 1px 1px 1px rgba(20, 17, 6, 0.3);
      border-radius: 2px;
    }

    #ticketTitle {
      font-size: 13px;
    }

    #ticketText{
      font-size: 11px;
      height: 200px;
    }

    #ticketReplyText{
      font-size: 11px;
      height: 140px;
    }

    .tickets_table_column_status{
      min-width: 100px;
    }

    .support_container{
      font-size: 14px;
      width: 90%;
    }

    .tickets_table th{
      font-size: 14px;
      padding: 4px;
    }
    
    .tickets_table td{
      font-size: 12px;
      padding: 4px;
    }

    .ticket_status{
      font-size: 11px;
      padding: 2px 4px;
    }

    .user_tickets{
      padding: 8px 8px;
      font-size: 20px;
    }
    
    .faq_question{
      padding: 6px 16px;
      font-size: 15px;
    }

    .faq_answer p, .faq_answer li{
      font-size: 13px !important;
    }

    .faq_answer img{
      max-width: 400px;
      width: -moz-calc(100% - 15px);
      width: -webkit-calc(100% - 15px);
      width: -o-calc(100% - 15px);
      width: calc(100% - 15px);
    }
    
    .faq_item{
      width: 90%;
    }
    
    .faq_categories{
      width: 90%;
    }
    
    .faq_category{
      min-width: 180px;
      font-size: 15px;
      margin: 4px;
      padding: 6px;
    }

    #page_section_text p {
      font-size: 12px;
      letter-spacing: 1px;
    }
  
    .page_section h2 {
      font-size: 18px;
      letter-spacing: 1px;
    }

    .no_tickets{
      font-size: 12px;
    }
  }
  
  @media (max-width: 459px) {
    .faq_section hr{
      width: 90%;
    }

    .view_ticket_header_id{
      font-size: 12px;
    }

    .view_ticket_header_description{
      font-size: 11px;
      max-width: 220px;
    }

    .ticket_response_text{
      font-size: 11px;
    }
    
    .ticket_response_footer{
      font-size: 10px;
    }

    .view_ticket_response{
      width: 75%;
    }

    .support_button{
      box-shadow: 1px 1px 1px rgba(20, 17, 6, 0.3);
      border-radius: 2px;
    }

    #ticketTitle {
      font-size: 12px;
    }

    #ticketText{
      font-size: 10px;
      height: 160px;
    }

    #ticketReplyText{
      font-size: 10px;
      height: 140px;
    }

    .tickets_table_container{
      overflow-x: scroll;
    }

    .tickets_table{
      width: 480px;
    }

    .tickets_table_column_status{
      min-width: 70px;
    }

    .support_container{
      font-size: 12px;
      width: 90%;
    }

    .tickets_table th{
      font-size: 12px;
      padding: 2px;
    }
    
    .tickets_table td{
      font-size: 11px;
      padding: 2px;
    }

    .ticket_status{
      font-size: 9px;
      padding: 2px 2px;
    }

    .user_tickets{
      padding: 8px 4px;
      font-size: 18px;
    }
    
    .faq_question{
      padding: 6px 16px;
      font-size: 13px;
    }

    .faq_answer p, .faq_answer li{
      font-size: 12px !important;
    }

    .faq_answer img{
      width: -moz-calc(100% - 15px);
      width: -webkit-calc(100% - 15px);
      width: -o-calc(100% - 15px);
      width: calc(100% - 15px);
    }
    
    .faq_item{
      width: 90%;
    }
    
    .faq_categories{
      width: 90%;
    }
    
    .faq_category{
      min-width: 160px;
      font-size: 13px;
      margin: 2px;
      padding: 6px;
    }

    #page_section_text p {
      font-size: 12px;
      letter-spacing: 1px;
    }
  
    .page_section h2 {
      font-size: 18px;
      letter-spacing: 1px;
    }

    .no_tickets{
      font-size: 12px;
    }
  }
  
  

  