.teskly-cursower{
    display: block;
    position: fixed;
    float: left;
    box-sizing: border-box;
    z-index: 100;
    
    font-family: sans-serif;
}
.teskly-cursower{
    background-color: transparent;
    
    transition: all 0.4s linear; 
    -webkit-transition: all 0.4s linear; 
    -moz-transition: all 0.4s linear;
}

.teskly-cursower{
    min-height: 50px;
    min-width: 50px;
    
    padding: 10px;
    border-radius: 25px;
    
    background-color: transparent;
}
.teskly-cursower:hover{
    border-radius: 25px 10px 10px 25px;
    
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 50px;
    
    background-color: white;
    box-shadow: 0px 5px 5px rgba(  0,  0,  0,  0.05);
    
    transition: all 0.6s linear; 
    -webkit-transition: all 0.6s linear; 
    -moz-transition: all 0.6s linear;
}



.teskly-cursower > .icon{
    display: inline-block;
    position: absolute;
    float: left;
    box-sizing: border-box;
    
    left: 10px;
    top: 10px;
    
    height: 20px;
    width: 20px;
    
    border-radius: 10px;
    
    background-color: black;
    
    transition: all 0.5s linear; 
    -webkit-transition: all 0.5s linear; 
    -moz-transition: all 0.5s linear;
    
    cursor: pointer;
}
.teskly-cursower > .icon{
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
    
    background-image: url('icon.svg');
}

.teskly-cursower:hover > .icon{
    position: absolute;
    left: 10px;
    top: 10px;
    
    
    width: 30px;
    height: 30px;
    
    border-radius: 15px;
    
    background-size: 14px 14px;
}

.teskly-cursower > .html{
    display: inline-block;
    position: relative;
    float: left;
    box-sizing: border-box;
    
    max-width: 0px;
    max-height: 0px;
    
    margin-top: 0px;
    
    overflow: hidden;
    opacity: 0;
    color: transparent;
    
    transition: all 0.3s ease; 
    -webkit-transition: all 0.3s ease; 
    -moz-transition: all 0.3s ease;
}
.teskly-cursower:hover > .html{
    min-height: 30px;
    min-width: 40px;
    line-height: 30px;
    font-size: 14px;
    
    max-width: 240px;
    max-height: 240px;
    
    opacity: 1;
    color: black;
}