html {
    width: 100%;
    overflow-x: hidden;
    height: auto;
    position: relative;
}

body{
    direction: rtl;
    margin: 0px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    font-family:'mitra';
    letter-spacing: 0;
    color: #898989;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0px;
    width: 100%;
    height: auto;
    background-color: #121212;

}
#tabs{
    margin-top: 85px;
    text-align: right;
}

ul.tabs{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

ul.tabs li{
    background: none;
    color:#f0b90b;
    display: inline-block;
    padding: 20px 10px;
    cursor: pointer;
    direction: ltr;
    font-size: 20px;
    font-weight: bold;
}

ul.tabs li.current{
    background: #f0b90b;
    color:black;
    border-radius: 4px;
}

.tab-content{
    display: none;
    background: black;
    padding: 15px;
}

.tab-content.current{
    display: inherit;
}


tr {
    transition: all ease-in 0.3s;
}


#button{
    display: none;
    color: #f0b90b;
    background: #000;
    border-color: rgb(238, 185, 11);
    cursor: pointer;
   padding: 10px;
}

.navbar-nav{
    padding-right: 8px;
}

.table-responsive{
    overflow-y: hidden;
}

#table1 , #table3{
    display: none;
}

#market_info{
    margin-top: 20px;
    margin-bottom: 0px;
}

#textmarket{
    color: #989ca1;
    display: inline;
    font-weight: bold;
    padding-left: 10px;
}

#select_markets{
    width: 200px;
    height: 30px;
    background-color: #121212;
    color: #f0b90b;
    box-shadow: 0px 0px 5px 1px #f0b90b;
    border: 1px solid #f0b90b;
}

th{
    width: 20% !important;
}

td{
    word-wrap: break-word;
    width: 20% !important;
    direction: ltr;
}

::-webkit-scrollbar {
    width: 10px !important;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: whitesmoke !important; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #f0b90b !important; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #f0b90b !important; 
    border: 1px solid #f0b90b52;
  }

  .dataTables_scrollBody{
      overflow-y: scroll !important;
      overflow-x: none !important;
  }

.dataTables_scrollBody::-webkit-scrollbar {
    display: block !important;
}

.dataTables_scrollBody thead{
    display: none !important;
}


.dataTables_scroll{
    width: 100%;
    color: white;
    border: 0.5px solid #f0b90b52;
    border-radius: 3px;
    box-shadow: rgb(240, 185, 11) 0px 0px 30px 0px !important;
    margin-bottom: 30px;
}

.dataTables_scrollHeadInner{
    width: 100% !important;
    margin-top: -5px;
}

table.dataTable{
    box-shadow: none !important;
    border: 0px !important;
}

table{
    width: 100% !important;
    margin: 0px !important;
    box-shadow: rgb(240, 185, 11) 0px 0px 30px 0px !important;
}

.dataTables_info{
    display: none;
}

/* /////////////////////////////////////////media/////////////////////////////////////////// */

@media (min-width : 800px) and (max-width : 1049px){
    th , tr{
        font-size: 13px;
    }
    
}
@media (min-width : 700px) and (max-width : 799px){
    th , tr{
        font-size: 13px;
    }
}
@media (min-width : 320px) and (max-width : 699px){
    #button{
        display: block;
    }
    #select_markets{
        width: 180px;
    }
    th{
        width: 33% !important;
    }
    td{
        width: 50% !important;
        font-size: 13px;
    }
}

