@font-face {
  font-family: fontReg;
  src: url(fonts/IBMPlexSansArabic-Regular.ttf);
  }
  @font-face {
  font-family: cairoBold;
  src: url(fonts/IBMPlexSansArabic-SemiBold.ttf);
  }

  body{
    font-family: fontReg;
    font-size: 20px;
    margin: 0;
    padding: 0;
  }

.footer{
    height: auto;
    width: 100%;
    background-color: #2d3840;
    position: absolute;
    right: 0;
    left: 0;
    direction: rtl;
    text-align: center;
    padding: 24px;
    flex-direction: column;
    gap: 50px;

  }

.space{
    color: white;

  }

.container-sent {
    width: 30%;
    height: 200px;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    margin-top: 32px;
    box-shadow: black 5px;
    background-color: rgb(246, 246, 246);
    padding: 16px;
    border-radius: 20px;
    position: absolute;
    top:20%;
    bottom: 20%;
    right: 35%;
    border: #2d3840 2px solid;
}
  .container {
    width: 50%;
    text-align: center;
    margin-top: 32px;
    box-shadow: black 5px;
    background-color: white;
    padding: 16px;
    border-radius: 50px;
}

.container-search{
    width: 100%;
    text-align: center;
    margin-top: 32px;
}

.container-watch{
  width: 75%;
  text-align: center;
  margin-top: 32px;
}

.row-cont {
  display: flex;
}


.input-text{
    margin: 8px;
    
}

.labels{
  justify-content: right;
}


select {
    /* Reset Select */
    appearance: none;
    outline: 10px red;
    border: 0;
    box-shadow: black;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: black;
    background-color: rgb(228, 228, 228);
    background-image: none;
    cursor: pointer;
    
  }
  /* Custom Select wrapper */
  .select {
    position: relative;
    display: flex;
    width: 100%;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
  }
  /* Arrow */
  .select::after {
    content: '\25BC';
    color: black;
    padding: 1em;
    background-color: white;
    transition: .25s all ease;
  }
  /* Transition */
  .select:hover::after {
    color: #f39c12;
  }

  
  .img-center{
      display: block;
      margin-left: auto;
      margin-right: auto;
  }


  .table-con{
    width: 100%;
    overflow:auto;

  }


  .con-s-sea{
    width: 50%; 
    display: flex;
  }

  .coll-cont {
    margin-bottom: 24px;
  }

  .collapsible {
    background-color: #f8f9fa;
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 15px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .activate, .collapsible:hover {
    background-color: #e3e3e3;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 24px 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: left;
    margin-left: 5px;
  }
  
  .activate:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

  


/* size with Mobile Screen */
  @media(max-width: 1000px){
    .row-cont{
      display: contents;
      
    }
    .container{
      width: 80%;
    }
    .login-container{
      width: 90%;
    }
    .con-s-sea{
      width: 90%;
    }
    .container-watch{
      width: 95%;
    }
  }