#Ttooltip {
    cursor: help;
    position: relative;
}

#Ttooltip:hover {
    color: transparent;
}

#Ttooltipdesc {
    display: none;
    min-width: 125px;
    padding: 5px;
    background: #000;
    border-radius: 10px;
    border: 1px solid brown;
    color: white;
    text-align: center;
    font-size: 13px;
}

#Ttooltip:hover #Ttooltipdesc {
    display: inline-block;
    opacity: 0.9;
    z-index: 1000;
    position: absolute;
    top: -150%;
    left: 50%;
    right: 50%;
    transform: translateX(-50%) translateY(-100%);
}

.Tborder {
    width: auto;
    box-shadow: 0 2px 5px #ffffff3d inset, 0 1px 2px #0005;
    border-radius: 7px;
    border-width: 4px 4px;
    border-style: solid;
    border-image: url(images/warning_border.png) 7 repeat;
    border-image-width: 7px;
    background-color: #D4C0A1;
}

.Mborder {
    width: auto;
    background: rgba(155, 155, 155, 0.53);
    border-radius: 10px;
    border: 1.5px solid #434040;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}