/*==============================================================================

FILTER CSS STYLESHEET

Table Of Contents:
    -FILTER
*/

/*============================================================================*/
/*FILTER*/
/*============================================================================*/

.gpc-filter {
    background: #365373;
    color: #000000;
    text-align: left;
    /*overflow is clipped, and the rest of the content will be invisible*/
    overflow: hidden;
}

#pageFilter {
    position: absolute;
    display: inline-block;
    top: 0;
    /*right menu width + 10px*/
    right: 260px;
    z-index: 3000;
}

#pageFilter a {
    position: relative;
    font-size: 100%;
}

#pageFilter img {
    vertical-align: middle;
}

.ticketFilterDate {
    margin-top: 1em;
    font-size: 10pt;
}

.arrow-up {
    position: absolute;
    top: 39px;
    right: 17px;
    border-left: 6px solid rgba(255, 255, 255, 0);
    border-right: 6px solid rgba(255, 255, 255, 0);
    border-bottom: 6px solid rgb(207, 214, 222);
}

.pageFilterDate {
    color: #0d0335;
    cursor: pointer;
}

.pageFilterConfitem {
    margin-right: 10px;
}

.gpcFilter {
    display: none;
    background-color: #ffffff;
    height: auto;
    right: 250px;
    position: absolute;
    top: 45px;
    width: 600px;
    z-index: 1000;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.8em 0 0.8em 0.8em;
    text-align: left;
    border-top: none;
    padding-top: 5px;
    -webkit-box-shadow: -10px 10px 15px 0px rgba(0,0,0,0.25);
    -moz-border-radius: -10px 10px 15px 0px rgba(0,0,0,0.25);
    box-shadow: -10px 10px 15px 0px rgba(0,0,0,0.25);
}

.gpcFilter select[multiple="multiple"] {
    width: 100%;
}

.historicData .gpc-icon.icon-filter {
    color: #fb3446;
}

.historicData .pageFilterDate {
    color: #fb3446;
}

@media screen and (max-width: 850px) {
    .gpcFilter {
        width: 50%;
    }

    .filterForm span {
        -webkit-flex: 1;  /* Safari 6.1+ */
        -ms-flex: 1;  /* IE 10 */
        flex: 1;
        float: left;
        clear: left;
    }

    #filterDateToSpan {
        padding-left: 1.2em;
    }

    .gpcCalendar select {
        width:inherit;
    }

    .filterForm input[type="text"] {
        width: inherit;
    }
}
/*============================================================================*/
