.not-allowed {
  pointer-events: auto! important;
  cursor: not-allowed! important;
  disabled
}

.allowed {
  pointer-events: auto;
  cursor: pointer;
  abled
}

.divclick {
  pointer-events: auto;
  cursor: pointer;
}

.tdmsgclick {
  pointer-events: auto;
    cursor: pointer;
}

.winloss-loss, .error_msg{
  color: #f03833 !important;
}

.winloss-win {
  color: #2ac17c !important;
}

.login_error_msg{
  background: #ea433b;
  color: #fff;
  padding: .375rem 0 .375rem 1.075rem;
  border-radius: .625rem;
}

*[data-tooltip] {
    position: relative;
}

*[data-tooltip]::after {
    content: attr(data-tooltip);

    position: absolute;
    top: 10px;
    right: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    pointer-events: none;
    opacity: 0;
    display: block;
    z-index: 99;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    -ms-transition: opacity .15s ease-in-out;
    -o-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;

    line-height: 20px;
    padding: 2px 4px;
    border: 1px solid #c0c0c0;
    box-shadow:0 0 10px 0 rgba(0, 0, 0, 1);
    border-radius:5px;
    background-color: #11121b;
    color: white;
    font-family: "Microsoft YaHei";
    font-size: 14px;
}

*[data-tooltip]:hover::after {
    opacity: 1;
}