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

/* Tooltip text */
.has-tooltip .tooltip--custom {
    padding: 7px 15px;
    width: 120px;
    visibility: hidden;
    background-color: #fff;
    color: #666;
    font-size: 12px;
    font-style: normal;
    text-align: left;
    border-radius: 6px;
    text-transform: none;
    box-shadow: 0px 1px 4px #999;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    top: 90px;
    left: 1px;
    margin-left: 0;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.has-tooltip .tooltip--custom::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 15%;
    margin-left: -10px;
    width: 0; height: 0;
    border-bottom: 10px solid #E0E0E0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.has-tooltip .tooltip--custom::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 15%;
    margin-left: -8px;
    width: 0; height: 0;
    border-bottom: 8px solid #fff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.has-tooltip .tooltip--custom.bl{
    left: auto;
    right: 0;
}

.has-tooltip .tooltip--custom.bl::before,
.has-tooltip .tooltip--custom.bl::after{
    left: 80%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.has-tooltip:hover .tooltip--custom {
    visibility: visible;
    opacity: 1;
}

.seal-embed span {
    display: inline-block;
    width: 35%;
    height: 35px;
}

.seal-embed span label {
    padding: 0 10px;
    cursor: pointer;
}
