
.tooltim {
    box-sizing: border-box;
    z-index: 100;
    padding: 10px;
    min-width: 200px;
    width: 300px;
    box-shadow: 1px 1px 20px -10px #000;

    transition-duration: 200ms;
}

.tooltim {
    position: relative;
    background: #ffffff;
    border: 1px solid silver;
}


/****************************
  left
 ***************************/
.tooltim.left:after, .tooltim.left:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.tooltim.left:after {
    border-color: transparent;
    border-right-color: white;
    border-width: 10px;
    margin-top: -10px;
}
.tooltim.left:before {
    border-color: transparent;
    border-right-color: silver;
    border-width: 11px;
    margin-top: -11px;
}

/****************************
  right
 ***************************/
