﻿
/* RM seems like the only css in the html is popover-link */

/*------------------------------------*\
    $POPOVER
\*------------------------------------*/

.popover {
    border: 0;
    font-size: 16px;
    padding: 20px;
    width: 400px;
    max-width: 400px;
    background-color: #406e92;
    color: #fff;
    border-radius: 0;
    box-shadow: none;
    z-index: 999;
}

    .popover p {
        font-size: 16px;
        margin-bottom: 0;
    }

        .popover p + p {
            margin-top: 18px;
        }

.popover-header {
    font-family: 'Futura PT', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
    border-bottom: 0;
    border-radius: 0;
    background-color: transparent;
    padding: 0 0 8px 0;
    color: #fff;
}

.popover-body {
    padding: 0;
    color: #fff;
}

.popover.right > .arrow::after {
    border-right-color: #406e92;
}

.popover.top > .arrow::after,
.popover.top > .arrow {
    border-top-color: #406e92;
}

.bs-popover-top .popover-arrow:after {
    border-top-color: #406e92;
}

.bs-popover-bottom .popover-arrow:after {
    border-bottom-color: #406e92;
}

.bs-popover-start .popover-arrow:after {
    border-left-color: #406e92;
}

.bs-popover-end .popover-arrow:after {
    border-right-color: #406e92;
}

.popover-header .close {
    color: #fff;
    opacity: 1;
    position: relative;
    top: 4px;
    font-size: 24px;
    float: right;
    font-weight: bold;
    cursor: pointer;
}

    .popover-header .close:hover,
    .popover-header .close:focus {
        color: #eee;
    }

.popover-link,
.popover-link:hover,
.popover-link:focus {
    text-decoration: none;
}

@media only screen and (max-width: 767px) {

    .popover {
        width: 100%;
        max-width: 100%;
    }

    .popover-header {
        font-size: 18px;
    }
}