/* Tooltip container */
.tooltip2 {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip2 .tooltiptext2 {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    border-radius: 6px;
    bottom: 120%;
    left: 50%;
    margin-left: -60px; /* Use half of the width (100/2 = 50), to center the tooltip */
    font-size: 1em;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    /* Fade in */
    opacity: 0;
    transition: opacity .5s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2:hover .tooltiptext2 {
    visibility: visible;
    opacity: .9;
}

.tooltip2 .tooltiptext2::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

/*-----------------------------------------*/
/*-------------------right tooltip--------------------*/
/*-----------------------------------------*/

/* Tooltip container */
.tooltip2-r {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip2-r .tooltiptext2-r {
    visibility: hidden;
    width: 400px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    border-radius: 6px;
    top: -5px;
    left: 105%;
    font-size: 1em;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    /* Fade in */
    opacity: 0;
    transition: opacity .5s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2-r:hover .tooltiptext2-r {
    visibility: visible;
    opacity: .9;
}

.tooltip2-r .tooltiptext2-r::after {
    content: " ";
    position: absolute;
    top: 17px;
    right: 100%; /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

/*-----------------------------------------*/
/*-------------------left tooltip--------------------*/
/*-----------------------------------------*/

/* Tooltip container */
.tooltip2-l {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip2-l .tooltiptext2-l {
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    border-radius: 6px;
    top: -5px;
    right: 150%;
    font-size: 1em;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    /* Fade in */
    opacity: 0;
    transition: opacity .5s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2-l:hover .tooltiptext2-l {
    visibility: visible;
    opacity: .9;
}

.tooltip2-l .tooltiptext2-l::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}

/*-----------------------------------------*/
/*-------------------2x--------------------*/
/*-----------------------------------------*/


/* Tooltip container */
.tooltip2-2x {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip2-2x .tooltiptext2-2x {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    border-radius: 6px;
    bottom: 120%;
    left: 50%;
    margin-left: -100px; /* Use half of the width (100/2 = 50), to center the tooltip */
    font-size: 1em;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    /* Fade in */
    opacity: 0;
    transition: opacity .5s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2-2x:hover .tooltiptext2-2x {
    visibility: visible;
    opacity: .9;
}

.tooltip2-2x .tooltiptext2-2x::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

/*-----------------------------------------*/
/*-------------------3x--------------------*/
/*-----------------------------------------*/

/* Tooltip container */
.tooltip2-3x {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip2-3x .tooltiptext2-3x {
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0px;
    border-radius: 6px;
    top: -5px;
    left: 120%;
    font-size: 1em;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    /* Fade in */
    opacity: 0;
    transition: opacity .5s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2-3x:hover .tooltiptext2-3x {
    visibility: visible;
    opacity: .9;
}

.tooltip2-3x .tooltiptext2-3x::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}