.left-tooltip:after {
  left: 8px !important;
  text-align: left;
  border-top: 8px solid #FF716B !important;
  border-left: 8px solid transparent !important;
  border-right: 0px solid transparent !important; }

.tooltip-class {
  position: relative; }
  .tooltip-class:before {
    content: attr(tooltip);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: none;
    background: #FF716B;
    color: white;
    left: 0px;
    padding: 3px 10px;
    text-align: center;
    line-height: 30px;
    position: absolute;
    bottom: calc(100% - 99px);
    width: 100%;
    height: 36px;
    border-radius: 5px;
    opacity: 0;
    transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    text-transform: capitalize;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px; }
  .tooltip-class:after {
    content: '';
    display: none;
    position: absolute;
    bottom: calc(100% - 63px);
    left: calc(50% - 8px);
    transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    opacity: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #FF716B transparent; }
  .tooltip-class:hover:before, .tooltip-class:hover:after {
    opacity: 1;
    display: block;
    z-index: 9999; }
