.update.content{
    width: 470px

}.update.update{
     width: 470px
}

.update form input {
    width: 260px;
    margin-bottom: 10px;
}
.update form label {
    width: 180px;
    padding: 10px 0px 10px 0px;
    margin-right: 5px;
}
.update form input[type='radio'] {
    width: 15px;
    padding: 10px 0px 10px 0px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 25px;
}
.update form span {
    display: inline-block;
    padding-top: 10px;
    margin-left: -60px;
}
.update form textarea {
    width: 260px;
    height: 60px;
    margin-bottom: 10px;
}

.dot_orange, .dot_green, .dot_grey, .dot_red, .dot_blue, .dot_silver{
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    padding-top: 2px
}

.dot_orange {
    background-color: orange;
}

.dot_green {
    background-color: #86F162FF;
}
.dot_grey {
    background-color: grey;
}
.dot_silver {
    background-color: silver;
}
.dot_red{
    background-color: red;
}
.dot_blue {
    background-color: #71d9ff;
}
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: none;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::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 .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.read table tbody tr td.actions .edit {
     width: 18px;
    padding: 13px 3px;
    color: silver;
    background-color: inherit;
}
.userlist {
    position: absolute;
    background-color: cornsilk;
    left: 215px;
    top: 147px
}

.tooltip_table {
    background-color: teal;
}
.tooltip_table tr:nth-child(even) {
    background-color: teal;
}

a.myButtonBlue {
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    padding: 9px;
    float: right;
    margin-top: -9px;
    margin-right: -8px;
}


a.myButtonRed {
    background-color: #f44336;
    color: white;
    text-decoration: none;
    padding: 9px;
    float: right;
    margin-top: -9px;
    margin-right: -8px;
}

.red-bg{
    padding: 0;
    background-color: #f44336;
    height: 7px;
    color: #fff;
}

.blink-bg{
    animation: blinkingBackground 4s infinite;
}
@keyframes blinkingBackground{
    0%		{ background-color: #f44336;}
    25%		{ background-color: #2196F3;}
    50%		{ background-color: #f44336;}
    75%		{ background-color: #2196F3;}
    100%	{ background-color: #f44336;}
}
