/***** CLOUDYTHMS CREDIT 
do not remove or copy *****/

#credit {
     position: fixed;
     bottom: 0;
     right: 0;
     width: 20px;
     height: 20px;
     padding: 5px;
     font-size: 13px;
     font-family: sans-serif;
     z-index: 999999999999999;
}
 #credit a {
     text-decoration: none;
     opacity: 0.7;
     color:black;
     transition: 0.5s linear 0.3s;
}
 #credit a:before {
     content: 'cloudythms';
     font-family:'karla',sans-serif;
     font-size: 13px;
     letter-spacing: 0.5px;
     top: 5px;
     line-height:100%;
     position: absolute;
     margin-left: -80px;
     opacity: 0;
     color:black;
     transition: 0.5s linear 0.3s;
}
 #credit a:hover:before {
     opacity: 1;
     color:black;
     transition: 0.5s linear 0s;
}
 #credit a:hover {
     color:black;
     transition: 0.5s linear 0s;
}