/*
 This quick example demonstrates the potentially drastic effects of simply
 toggling a class on an element.
 */

.my-element.my-element-vertical h4.my-element-heading {

	display: inline-block;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}
.skill-col h5 {
	display: inline-block;
}
.skill-level {
	display: block;
}
.cts-tooltip {
	background: #0a3253;
	color: #fff;
	border-radius: 30px;
	font-size: 10px;
	line-height: 15px;
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    text-align: center;
    margin-left: 5px;
}
.cts-tooltip .cts-tooltiptext {
    visibility: hidden;
    font-size: 13px;
    width: 200px;
    background: #0a3253;
    background: rgba(10, 49, 82,0.9);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 1s;
}

.cts-tooltip .cts-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.cts-tooltip:hover .cts-tooltiptext {
    visibility: visible;
    opacity: 1;
}