﻿/* the wrapper div that is put around each popup element */
.trends_popup_wrapper {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

/* the div that blacks out the background screen and also makes it so it cannot be used while popup is shown */
.trends_popup_blackout {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #000;
    filter: Alpha(Opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
    z-index: 1;
}

/* the div that is wrapped around the content element and displays the content on top of the blackout div */
.trends_popup_box {
    display: none;
    position: fixed;
    top: 50px;
    background-color: #fcfcfc;
    color: #545454;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
    padding: 0px 0px 0px 0px;
    z-index: 2;
    overflow: auto;
    max-width: 96%;
}

/* the div that contains the title (if supplied) */
.trends_popup_title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 2rem;
    background-color: #fff;
    border-bottom: solid 1px #e8e8e8;
    padding: 1.5rem;
}

/* the div that contains the content body (not the title) */
.trends_popup_content {
    padding: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

    /* the buttons appearing in the content */
    .trends_popup_content input[type="button"],
    .trends_popup_content input[type="submit"] {
        /*font-size: 16px;
        padding: 8px 12px 8px 12px;*/
    }

    /* the textboxes/drop down lists appearing in the content */
    .trends_popup_content .tbFake,
    .trends_popup_content input[type="text"],
    .trends_popup_content input[type="password"],
    .trends_popup_content select {
        /*padding: 8px 10px 8px 10px;
        border: solid 1px #d3d3d3;
        width: 400px;
        font-size: 16px;
        line-height: 22px;
        border-radius: 4px 4px 4px 4px;
        -moz-border-radius: 4px 4px 4px 4px;
        -webkit-border-radius: 4px 4px 4px 4px;
        -khtml-border-radius: 4px 4px 4px 4px;
        text-align: center;
        height: 40px;
        background-color: #f0f0f0;*/
    }

    .trends_popup_content .tbFake {
        /*height: auto;*/
    }

    /* specific for drop down lists in the content */
    .trends_popup_content select {
        /*text-align: left;*/
    }


.trends_popup_buttons {
    margin-top: 1.5rem;
}

    .trends_popup_buttons .close-button,
    .trends_popup_buttons .close-button:focus {
        background-color: #f5f5f5 !important;
        border: solid 1px var(--light-gray) !important;
        color: var(--dark-gray) !important;
        font-size: 1.1rem;
        line-height: 1.4rem;
    }
    .trends_popup_buttons .close-button:hover{
        box-shadow: 0 0 0.5rem rgba(0,0,0,0.15);
    }

.trends_popup_confirm_buttons {
    margin-top: 1.5rem;
}

.trends_popup_corner_close {
    display: none;
    height: 20px;
    position: relative;
    z-index: 3;
    text-align: right;
    top: 25px;
}

    .trends_popup_corner_close input[type="button"] {
        background: none !important;
        padding: 0px 0px 0px 0px !important;
        margin: 0px 0px 0px 0px !important;
        border: 0px !important;
        color: #fff !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        font-weight: 600 !important;
    }


.divTooltip {
    position: absolute;
    background-color: #fff;
    border: solid 1px #e8e8e8;
    border-radius: 6px;
    box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.3);
    padding: 7px 15px;
    font-size: 13px;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;

    -webkit-transform: translate(0, -30%);
    transform: translate(0, -30%);
    max-width: 600px;
    max-height: 800px;
    overflow: auto;
}
.divTooltip .example{
    font-size: 12px;
}