.drop-element, .drop-element:after, .drop-element:before, .drop-element *, .drop-element *:after, .drop-element *:before {
    box-sizing: border-box;
}

.drop-element {
    position: absolute;
    display: none;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
}

.drop-element.drop-open {
    display: block;
}

.drop-element .drop-content {
    position: relative;
    background: #cecece;
    color: #444;
    line-height: 1.5em;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    padding: 3px;
    font-family: sans-serif;
    font-size: 13px;
}

.drop-element .drop-content:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.drop-element.drop-element-attached-left.drop-element-attached-middle .drop-content {
    margin-left: 10px;
}

.drop-element.drop-element-attached-left.drop-element-attached-middle .drop-content:before {
    right: 100%;
    top: 50%;
    margin-top: -10px;
    border-right-color: #cecece;
}

.drop-element.drop-element-attached-right.drop-element-attached-middle .drop-content {
    margin-right: 10px;
}

.drop-element.drop-element-attached-right.drop-element-attached-middle .drop-content:before {
    left: 100%;
    top: 50%;
    margin-top: -10px;
    border-left-color: #cecece;
}

.drop-content-inner {
    /*border: 1px solid #cecece;*/
    padding: 14px;
    background: #fff;
    overflow: hidden;
    min-width: 400px;
    max-width: 650px;
}

.drop-small .drop-content-inner {
    width: 200px;
}

.drop-content-inner h4 {
    font-size: 1em;
    font-weight: bold;
    color: inherit;
    font-family: sans-serif;
    margin: 0;
}

.drop-content-inner a, .drop-content-inner a:visited {
    color: #0061aa !important;
    text-decoration: none;
}

.drop-content-inner a:hover {
    text-decoration: underline;
}

.drop-content-inner .drop-footer {
    font-size: 0.8em;
}

.app-upsell {
    text-align: center;
    padding: 10px;
    border: solid 1px #9a9a9a;
    border-radius: 10px;
}

.upsell-logo img {
    height: 40px;
}

.add-comment-form {
    padding: 5px;
}

.add-comment-heading {
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input.form-control, textarea.form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: initial;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

textarea.form-control {
    height: auto;
}

textarea.form-control:focus, input.form-control:focus {
    border-color: #66afe9 !important;
    outline: 0 !important;
}

button.btn {
    border: 1px solid #ccc;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    height: initial;
    margin-top: 8px;
}

button.btn:hover {
    background-color: #e6e6e6;
    border-color: #adadad;
}

.log-in-notice {
    display: block;
    text-align: center;
    height: 100%;
    float: inherit;
}

.li-header-account-tab {
    float: right !important;
}

.excerpt {
    white-space: pre-wrap;
}

.overflow {
    max-height: 60vh;
    overflow-y: auto;
}