
/* html {
    box-sizing: border-box;
    font-size: 62.5%;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }
  
  .glass{
    From https://css.glass

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.9px);
    -webkit-backdrop-filter: blur(2.9px);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
        }
  html,
  body {
    width: 100%;
    height: 100%;
  }
  
  body {
    font-size: 1.6rem;
    color: #002b5d;
    font-family: "Karla", arial, sans-serif;
  } */
  
  /* .container {
    max-width: 830px;
    margin: 6rem auto 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  } */
  
  /* .row {
    margin-left: -1rem;
    margin-right: -1rem;
  } */

  :root {
    --dark: #2D2B3A;
    --green: #2fb8b1;
    --blue: #63abdd;
    
  }
  .navbar{
    background: #f1f8ff;
}
  .list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .list-item {
    width: 46%;
    min-width: 350px;
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #e1e4ea;
    display: flex;
    align-items: center;
    position: relative;
    color: #002b5d;
    text-decoration: none;
  }
  .list-item:hover {
    border: 1px solid #cacfd9;
    color: #3384f3;
    background: #f6f7f9;
  }
  .list-item:hover .list-item__button {
    opacity: 1;
    transition: all 100ms ease;
  }
  .list-item__avatar {
    margin-right: 1rem;
  }
  .list-item__avatar img {
    border: 1px solid #cacfd9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #e1e4ea;
  }
  .list-item__name {
    display: block;
  }
  .list-item__info {
    font-size: 0.85em;
    color: #91a1bb;
  }
  .list-item__button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    font-family: inherit;
    position: absolute;
    top: 7px;
    right: 7px;
    width: 18px;
    height: 18px;
    font-weight: 700;
    background: #3384f3;
    color: #ffffff;
    line-height: 18px;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    opacity: 0.6;
    outline: none;
    opacity: 0.2;
  }
  .list-item__button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .search {
    width: 50%;
    margin-bottom: 4rem;
    font-size: 2.4rem;
    position: relative;
  }
  .search label,
  .search input {
    display: block;
  }
  .search label {
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .search input {
    width: 100%;
    font-size: 25px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #cacfd9;
    font-family: inherit;
    outline: none;
  }
  .search input:focus {
    box-shadow: 0px 0px 0px 3px rgba(51, 132, 243, 0.15);
    border-color: #3384f3;
  }
  .search__clear {
    position: absolute;
    top: 5.3rem;
    right: 1rem;
    cursor: pointer;
    background: #e1e4ea;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    color: #91a1bb;
    border: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 1.4rem;
  }
  .search__clear:focus, .search__clear:active {
    outline: 0;
  }
  .search__clear:hover {
    background: #cacfd9;
    color: #597191;
  }
  
  .recent-search {
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
  }
  
  .search-item {
    font-size: 1rem;
    display: inline-block;
    padding: 0.5rem;
    line-height: 1;
    color: #3384f3;
    border-radius: 5px;
    background: rgba(51, 132, 243, 0.15);
    cursor: pointer;
    margin: 0 0.5rem 0.5rem 0;
  }
  .search-item:hover, .search-item:focus {
    color: #0e69e6;
    background: rgba(51, 132, 243, 0.2);
  }
  .search-item__close {
    opacity: 0.5;
    display: inline-block;
    cursor: pointer;
    margin-left: 0.5rem;
  }
  .search-item__close:hover {
    color: #d63031;
  }
  .search-item:nth-of-type(5n + 2) {
    color: #00b894;
    background: rgba(0, 184, 148, 0.15);
  }
  .search-item:nth-of-type(5n + 2):hover, .search-item:nth-of-type(5n + 2):focus {
    color: #00856b;
    background: rgba(0, 184, 148, 0.2);
  }
  .search-item:nth-of-type(5n + 3) {
    color: #d980fa;
    background: rgba(217, 128, 250, 0.15);
  }
  .search-item:nth-of-type(5n + 3):hover, .search-item:nth-of-type(5n + 3):focus {
    color: #ca4ff8;
    background: rgba(217, 128, 250, 0.2);
  }
  .search-item:nth-of-type(5n + 4) {
    color: #d63031;
    background: rgba(214, 48, 49, 0.15);
  }
  .search-item:nth-of-type(5n + 4):hover, .search-item:nth-of-type(5n + 4):focus {
    color: #b02324;
    background: rgba(214, 48, 49, 0.2);
  }
  .search-item:nth-of-type(5n + 5) {
    color: #fca709;
    background: rgba(253, 203, 110, 0.2);
  }
  .search-item:nth-of-type(5n + 5):hover, .search-item:nth-of-type(5n + 5):focus {
    color: #e89803;
    background: rgba(253, 203, 110, 0.25);
  }
  
  .clear-btn {
    font-family: inherit;
    background: #91a1bb;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    margin-right: 1rem;
    border-radius: 5px;
    font-size: 1.4rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    line-height: 1;
  }
  .clear-btn:hover {
    background: #597191;
  }
  .clear-btn:focus, .clear-btn:active {
    outline: 0;
  }
  .clear-btn:disabled {
    background: #f6f7f9;
    color: #91a1bb;
    cursor: not-allowed;
  }



  .recode_tt{
    margin: 120px 0 50px 0;
  }
  .recode_table{
    text-align: center;
  }
  .recode_table th{
    padding: 5px 8px;
  }
  .recode_table thead th{
    min-width: 60px!important;
  }
  .dataTables_wrapper {
      width: 800px;
      margin: 0 auto;
  }

  .recode_history {
    margin: auto;
    width: 100%;
    min-width: 300px;
    /* max-width: 800px; */
  }
  
  .recode_history .wrapper {
    position: relative;
    overflow: auto;
    /* border: 1px solid #555; */
    white-space: nowrap;
  }

  .recode_tab{
    text-align: center;
    width: 100%;
    font-size: 12px;
    position: relative;
    z-index: 1;
  }
  .recode_tab h5{
    margin-bottom: 0;
    font-size: 10px;
  }
  .recode_tab p{
    margin-bottom: 0;
    margin: auto;
  }

  [data-title] {
    font-size: 12px;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }
  [data-title]:hover::before {
    content: attr(data-title);
    position: absolute;
    top: -50px;
    padding: 10px;
    background: #35646c;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    white-space: nowrap;
  }
  [data-title]:hover::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 16px;
    border: 8px solid transparent;	
    border-top: 8px solid #35646c;
  }
  /* .recode_tab th:hover, .recode_tab td:hover{
    text-overflow: clip;
    white-space: normal;
    word-break: break-all;
  } */
  .recode_tab th, .recode_tab td{
    padding: 10px;
    text-align: center;
    background-color: #fff;
    /* white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; */
    border: 1px solid #555;
  }
  .recode_tab thead th{
    background-color: var(--green)!important;
    color: #fff;
    width: 100px; 
    min-width: 100px;
    /* max-width: 100px; */
  }
  .recode_tab thead th a{
    color: #fff;
  }
  /* .recode_tab thead th:hover{
    background: #33eec9!important;
  } */
  .recode_tab tbody th {
    word-break: break-word;
   overflow: hidden;
   text-overflow: ellipsis;
   /* display: -webkit-box;
   max-height: 51px; 
   -webkit-line-clamp: 2; 
   -webkit-box-orient: vertical; */
   background-color: var(--green);
   color: #fff;
  }

  .recode_tab .second-col {
    width: 80px!important;
    min-width: 80px!important;
    max-width: 80px!important;
    left: 100px!important;
  }

    
  .recode_tab thead th:first-child, .recode_tab tbody tr th:first-child, 
  .recode_tab .second-col
  {
    position: -webkit-sticky;
    position: sticky;
    white-space: initial;
    z-index: 50;
  }
  .recode_tab thead th:first-child, .recode_tab tbody tr th:first-child
  {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    left: 0px;
  }

  .recode_tab tbody tr:nth-child(odd) .second-col{
    background-color: #fff;
    color: #000;
  }
  .recode_tab tbody tr:nth-child(even) td{
    background-color: rgba(138, 240, 245, 0.2);
  }

  .recode_tags_taimen{
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    background: #f2bd5b;
  }
  .recode_tags_online{
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    background: #367cf2a8;
  }
  .recode_tags_cir {
    width: 35px;
    height: 35px;
    text-align: center;
    padding-top: 8px;
    border: 1px solid #000;
    border-radius: 50%;
    color: #fff;
  }
  
  @media screen and (max-width: 768px) {
    .search{ 
      width: 100%;
    }
    .list-item{
      width: 100%;
    }
  }