.tooltip-inner {
    background: #257adb;
    opacity: 1;
    text-align: center;
}

.tooltip.show {
    opacity: 1;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #257adb;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #257adb;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #257adb;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #257adb;
}

.form-label {
    margin-bottom: .5rem;
}

label {
    display: initial;
    cursor: pointer;
}

/*.container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.container::after, .container::before {
    content: '';
    display: table;
    clear: both;
}

.tooltip2 {
    position: relative;
}

.tooltip2 .tooltip-text {
    font-size: 0.95em;
    line-height: 1.4em;
    visibility: hidden;
    min-width: 400px;
    background-color: #257adb;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -20px;
    opacity: 0;
    transition: .3s;
    transform: translate3d(0px, 20px, 0px);
}

.tooltip2 .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 5%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #257adb transparent transparent transparent;
}
  
.tooltip2:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 480px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .tooltip2 .tooltip-text {
        min-width: 0;
        max-width: 200px;
        margin-left: -200px;
        left: 70%;
    }

    .tooltip2 .tooltip-text::after {
        left: 50%;
    }
}*/
