﻿.avartar-preview {
    min-width: 0px !important;
    min-height: 0px !important;
    /*max-width: none !important;*/
    max-height: none !important;
    margin-left: 0px;
    margin-top: 0px;
    height: 100%;
    width: auto;
    max-width: 100%;
}

.img-pre {
    height: 220px;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.tbody-row {
    color: black;
}

.thead-row {
    color: green;
}

.checkbox-size {
    transform: scale(0.5);
}

.loading-bar {
    position: absolute;
    right: 20px;
    margin-top: 85px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    z-index: 10000;
    display: none;
}

.contact-name {
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.contact-address {
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 5px;
}

.required {
    color: #8f0000;
}

.tab-light {
    color: #8f0000 !important;
}

a.tab-light:hover {
    color: #8f0000 !important;
}

.contact-department {
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 5px;
}

.contact-position {
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 5px;
}

.validation-summary-errors ul {
    list-style-type: none;
}

.cell-comment {
    /*display:none;
  position:absolute; 
  z-index:100;
  border:1px;
  background-color:white;
  border-style:solid;
  border-width:1px;
  border-color:red;
  color:red;
      max-width: 276px;
  */
    position: absolute;
    z-index: 1060;
    display: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    line-break: auto;
    padding: 9px 14px;
    border-left-color: rgba(0,0,0,.25);
    top:20%;
    left:40%;
    max-height:400px;
    max-width:400px;
    overflow:auto;
}

/*.cell-with-comment:hover span.cell-comment {
    display: block;
}*/


.cell-with-comment {
    position: absolute;
    z-index: 1000000;
    display: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    line-break: auto;
    padding: 9px 14px;
    border-left-color: rgba(0,0,0,.25);
    overflow: auto;
    /*width:300px;*/
    /*height:60px;*/
    text-align:left;
}

@media (min-width: 992px) {
  .modal-lg {
    width: 1100px !important;
  }
}

.modal {
  overflow: auto !important;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1000000;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.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;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}