.well {
    /* drop-shadow is better than box-shadow as it add a shadow to tooltip arrows arrow as well,
    however drop-shadow dramatically affects the performance of transition animation on Android. */
    /* filter: drop-shadow(0 0 10px rgba(0,0,0,0.3)); */
    display:none;
    margin:1em;
    /*max-width: 840px;*/
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}
.well .popup_close {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 2px;
    background: none;
    border: 0;
    font-size: 2.5rem;
    padding: 0 10px;
    min-width: auto;
    display: block;
}
.popup_content {
    color: #fff;
    background-color: #093c7d;
}
.btn-to-survey {
    color: #000;
    background-color: #fff;
}
@media (min-width: 800px) {
    .popup_content {
        max-width: 60%;
    }
}
.fulltable {
    max-width: 100%;
    overflow: auto;
}
.lineheight {
    line-height: 3em;
}
.initialism {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

/**
 * Styles for the `tooltip` option
 */
.well--tooltip {
    min-width: 300px;
    max-width: 300px;
    margin: 0;
}

@media (min-width: 500px) {
    .well--tooltip {
        max-width: 380px;
    }
}

/* Tooltip Arrow */
.well--tooltip::before,
.well--tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -14px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #cccccc;
}
.well--tooltip::after {
    border-top-color: #f5f5f5;
    margin-top:  -1px;
}