﻿.tandc {
    height: 300px;
    overflow-y: scroll;
}

    .tandc p {
        text-align: justify;
        margin: 2px 35px 2px 35px;
    }

.customtooltip {
    position: relative;
    display: inline-block;
}

.customtooltip .customtooltiptext {
    visibility: hidden;
    width: 295px;
    background-color: skyblue;
    text-align:left;
    font-size:14px;
    padding:4px;
    color: black;
    border-radius: 6px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    left: 0
}

.configboxhover:hover {
    border: solid 1px;
    border-color: blue;
    border-radius: 4px
}
.customtooltip:hover .customtooltiptext {
    visibility: visible;
}

.info-ico {
    padding: 0px 9px;
    color: blue;
    font-size: 20px;
    cursor: pointer;
    margin-right: 8px;
    border: 1px solid blue;
}