.tooltips {float:none;}
.tooltips ul{margin: 0 -1.5%;}
.tooltips li{float: right; width: 18%; margin: 10px 1%; list-style: none;}
.enable {
    background-color: #00a8eb;
    border: 12px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 10px 10px 20px #ccc;
    height: 80px;
    margin: auto;
    width: 190px; 
    -moz-box-shadow: 10px 10px 20px #ccc; 
    -webkit-box-shadow: 10px 10px 20px #ccc; 
    -o-box-shadow: 10px 10px 20px #ccc;
    display: flex;
    align-items: center; 
}
.enable a {
    margin: auto; 
    font-size: 15px;
    color: #fff;
    text-align: center;
    cursor:pointer;
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    width: 166px;
    text-decoration: none;
}
.disable {
    height: 300px;
    margin: auto;
    width: 300px; 
}
.tooltips_img {
    border: 2px solid #00a8eb;
    border-radius: 13px;
    box-shadow: 10px 5px 20px #ccc;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tooltip2 {
    display: inline;
    position: relative;
    z-index: 999;
}

/* Trigger text */

.tooltip-item {
    color: #2fa0ec;
    cursor: pointer;
    z-index: 100;
    position: relative;
    display: inline-block;
    font-weight: 700;
    -webkit-transition: background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.tooltip2:hover .tooltip-item {
    color: #fff;
    -webkit-transform: translate3d(0,-0.5em,0);
    transform: translate3d(0,-0.5em,0);
}

/* Tooltip */

.tooltip-content {
    position: absolute;
    z-index: 99;
    width: 190px;
    left: -12px;
    text-align: right;
    margin-top: 15px;
    border: 12px solid rgba(255, 255, 255, 0.5);
    background: #00a8eb;
    opacity: 0;
    font-size: 0.75em;
    line-height: 1.5;
    padding: 1.5em;
    color: #fff;
    cursor: default;
    box-shadow: 10px 20px 20px #ccc;
    border-top:none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    pointer-events: none;
    font-size: 14px;
    font-family: Yekan, Tahoma, Arial , sans-serif;
    -webkit-transform: translate3d(0,-0.5em,0);
    transform: translate3d(0,-0.5em,0);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}

.tooltip-content a {
    color: #fff;
    line-height: 2;
    text-decoration: none;
    font-family: Yekan,Tahoma,Arial,sans-serif;
}
.tooltip-content a:hover {
    color: #ccc;
    text-decoration: none;
}

.tooltip-text {
    opacity: 0;
    -webkit-transform: translate3d(0,1.5em,0);
    transform: translate3d(0,1.5em,0);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}

.tooltip2:hover .tooltip-content,
.tooltip2:hover .tooltip-text {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.module-header {
    border-bottom: 1px solid #00a8eb;
    padding-bottom: 25px;
    margin-top: 35px;
}