
/* Tooltip - 1
==================================*/

#next {
    width: 300px;
    font-size: 1.0em;
    text-align: center;
    line-height: 22px;
    background: #ffffff;
    position: absolute;
    z-index: 100;
    padding: 14px 15px 14px 15px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2); 
}


 
#next:after /* triangle decoration */{
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
    
    
}
 
#next.top:after  {
    border-top-color: transparent;
    border-bottom: 10px solid #111;
    top: -20px;
    bottom: auto;
}
 
#next.left:after {
    left: 10px;
    margin: 0;
}
 
#next.right:after {
    right: 10px;
    left: auto;
    margin: 0;
}


/* Tooltip - 2
==================================*/


#tooltip-2 {
    width: 260px;
    font-family: 'proxima';
    font-size: 17px;
    color: #000000;
    text-align: center;
    line-height: 19px;
    background: #fd8a03;
    position: absolute;
    z-index: 100;
    padding: 14px 15px 14px 15px;
    border-radius: 5px;
}
 
#tooltip-2:after /* triangle decoration */{
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fd8a03;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
    
}
 
#tooltip-2.top:after  {
    border-top-color: transparent;
    border-bottom: 10px solid #111;
    top: -20px;
    bottom: auto;
}
 
#tooltip-2.left:after {
    left: 10px;
    margin: 0;
}
 
#tooltip-2.right:after {
    right: 10px;
    left: auto;
    margin: 0;
}