
.data-table-main{
  border:0;
}
.sorting-table .sorting:after{
  content: none;
}

#stockTable{
  width: 100% !important;
  border-radius: 5px;
  border: 1px solid #dddddd;
  border-collapse: collapse;
}
#stockTable thead th, #stockTable thead td {
    padding: 6px 9px;
}


#stockTable thead th{
      border-bottom: none;
}
#stockTable tr td{
      outline: 0;
}
 
#stockTable .sorting_desc,#stockTable .sorting_asc{
      color: #d00f24;
}

#stockTable tr th:last-child {
    position:static;
}

#stockTable tr td, #stockTable tr:not(:first-child) th:first-child{
    border-top-left-radius:0;
}

#stockTable tr td, #stockTable tr:not(:first-child) th:last-child{
    border-top-right-radius:0;
}

#stockTable tr:last-child td:first-child{
    border-bottom-left-radius:5px;
}

#stockTable tr:last-child td:last-child{
    border-bottom-right-radius:5px;
}

#stockTable .sortOrder{
  min-width: 40px;
}    

#stockTable .emptyData{
  height: 50px;
}

.twitter-typeahead {
  display:flex;
  flex:1;
}
.typeahead,
.tt-query,
.tt-hint,
.tt-menu{
	width: 99% !important;
}

.graphWarning{
  margin: 10px 0;
  line-height: 1.5;
}


.graphWarning .border-box{
  box-shadow:none;
  border-radius: 5px;
  border: 1px solid #dddddd;
  padding: 1em;
  background-color: #f5f5f5;
}
.dataTables_wrapper .dataTables_paginate{
      padding-top: 1em !important;
}
.sorting-table .sorting{
  display: table-cell !important;
  position:static;

}

@media (max-width: 768px){
  .us_stock_supplying{
    display: none;
  }

  .graphWarning .notice__toggle{
    display: none;
  }
  .graphWarning .border-box{
    display: block;
  }
  #stockTable{
    border: 0;
    border-bottom: 0;
  }
  #stockTable tbody th, #stockTable tbody td {
    padding: 5px 8px;
  }
} 

.tt-menu {
  text-align: left;
  width: 100%;
  padding: 6px 12px;
  background-color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 24px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.errorMsg{
    z-index: 2;
	text-align: center;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 88px;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
	display:none;
}

.loader,#loadingEl {
	position: absolute;
    z-index: 2;
    left: calc( 50% - 40px );
    /*top: 90px;*/
    transform: translateX(-50%);
	display:none;
   border: 12px solid #e1e0e0;
   border-radius: 50%;
   border-top: 12px solid #cd0c0c;
   width: 80px;
   height: 80px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}