:root{
    --blue-text: #1f63a6;
    --yellow-text: #fdb83c;
  }
  
  body{
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff!important;
  }
  
  *{
    box-sizing: border-box;
  }
  .wrapper 
  {
    background: #ffffff!important;
  }
  .wrapper .container
  {
    width: 520px;
    position: relative;
    margin: 0px auto;
    margin-top: 30px;
    background: url(../img/back.png);
    box-shadow: none;
    border-radius: 0px;
  
  }
  
  .header {
    padding: 31px;
    padding-bottom: 0px;
    text-align: center;
    position: relative;
  }
  .header img 
  {
    width: 120px;
    height: auto;
    margin: 0px auto;
  }
  
  .content__title 
  {
    text-align: center;
  }
  .arabic_title
  {
    color: var(--yellow-text);
    margin-bottom: 12px;
  }
  .english_title
  {
    color: var(--blue-text);
    margin-top: 0px;
    font-size: 13px;
  }
  
  .profile 
  {
    width: 120px;
    height: 150px;
    overflow: hidden;
    border: 1px solid rgb(186, 186, 186);
    border-radius: 12px;
    margin: 0px auto;
    margin-top: 12px;
  }
  .profile img
  {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .profile_id
  {
    text-align: center;
    font-size: 30px;
  }
  .profile_id h4 
  {
    margin-top: 10px;
    color: #c8c8c8
  }
  .table-wrap
  {
    width: 300px;
    text-align: center;
    margin: 0px auto;
    margin-top: 40px;
  }
  
  .row {
    display: flex;
    direction: rtl;
    background-color: #f2f2f2;
    margin-bottom: 3px;
  }
  
  .col:first-child
  {
    width: 100px;
    padding: 6px;
    font-weight: bold;
    text-align: right;
  }
  
  .col:nth-child(2)
  {
    width: calc(100% - 80px);
    border-right: 3px solid #fff;
    padding: 7px;
    text-align: right;
  }
  
  .red-date 
  {
    color: rgb(183, 23, 23)
  }
  .footer 
  {
    margin-bottom: 30px;
  }
  .arabic_footer
  {
    margin-top: 20px;
    text-align: right;
    font-size: 12px;
  }
  .english_footer 
  {
    font-size: 10px;
  }
  @media screen and (max-width: 525px)
  {
    .wrapper .container {
      width: 100%;
      padding: 20px;
    }
  }