.popover__wrapper {
    position: relative;
    display: inline-block;
}

.information-tooltip {
    font-size: 16px;
    color: #0271e0;
}
.information-tooltip a i {
    color: #0271e0 !important;
}

.maintenance__dates {
    font-size: 14px;
}

.well-plain .btn-link {
    font-weight: 600;
}

.maintenance__content {
    background-color: #f4f8fd;
    padding: 8px 16px;
    border-radius: 4px;
    color: #5a616b;
    display: inline-block;
}

.maintenance__content i {
    padding-right: 6px;
}

.popover__box {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -150px;
    transform: translate(0, 10px);
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    width: auto;
    top: 50px;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
}
.popover__box:before {
    position: absolute;
    z-index: -1;
    content: "";
    right: calc(50% - 10px);
    top: -8px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #bfbfbf transparent;
    transition-duration: 0.1s;
    transition-property: transform;
}
.popover__wrapper:hover .popover__box {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.1s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.popover__header {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
}
.popover__content {
    font-size: 14px;
    padding: 8px 8px;
}
.popover__content hr {
    margin-left: -8px;
    margin-right: -8px;
}
.popover__message {
    text-align: center;
}
