﻿
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip button span {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip button span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover button span {
  visibility: visible;
  opacity: 1;
}

.ticketMsgTable
{
	border-collapse:collapse;
	border-width:1px;
	border-style:solid;
	border-color:#808080;
    border-radius: 3px;
}

.ticketMsgTableHeader
{
	padding: 5px;
    background-color: #F0F0F0;
    border-bottom: 1px solid #808080;
    border-radius: 3px 3px 0 0;
    font-size: 14px;
}

.ticketMsgTableText
{
	padding-left: 5px;
    padding-top: 5px;
    padding-right: 5px;
    background-color:#FFFFFF;
    text-align: left;
}

.ticketMsgTableTextStaff
{
	padding-left: 5px;
    padding-top: 5px;
    padding-right: 5px;
    background-color:#FFFFE0;
    text-align: left;
}

.ticketMsgTableAttachments
{
    padding: 5px;
    background-color:#FFFFFF;
    text-align: left;
    border-radius: 0 0 3px 3px;
}

.ticketMsgTableAttachmentsStaff
{
    padding: 5px;
    background-color:#FFFFFF;
    text-align: left;
    border-radius: 0 0 3px 3px;
    background-color:#FFFFE0;
}


.ticketReplyBoxInnerTitle
{
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px dashed #c0c0c0;
    text-decoration: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
}


div.ticketReplyBoxFormLine {
    padding: 5px;
    border-bottom: 1px dashed #e0e0e0;
}


div.ticketReplyBoxFormTopLine {
    padding: 5px;
    border-top: 1px dashed #e0e0e0;
}


.chkDomainWrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .chkDomainWrapper:hover {
        background-color: #e6f0ff;
    }

    .chkDomainWrapper input[type="checkbox"] {
        transform: scale(1.3);
        cursor: pointer;
    }

.chkCell:hover {
    background-color: #e6f0ff;
}

.chkCell input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}
