﻿.checked {
    color: orange;
}

.far {
    color: orange;
}
.fa-reply {
    color: #696969;
}
.clear {
    clear: both;
}

.selected {
    font-weight:bold;
}

.warning {
    color: red;
}

.socialMediaIconRounded {
    border-radius: 5px;
}
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #00A69C;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #00A69C;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 15px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -100px;
    width: 300px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 30%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #055D53 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}