progress,          /* All HTML5 progress enabled browsers */
progress[role]     /* polyfill */
{

    /* Turns off styling - not usually needed, but good to know. */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;

    /* gets rid of default border in Firefox and Opera. */
    border: none;

    /* Needs to be in here for Safari polyfill so background images work as expected. */
    background-size: auto;

    /* Dimensions */
    width: 400px;
    height: 10px;

}

/* Polyfill */
progress[role]:after {
    background-image: none; /* removes default background from polyfill */
}

/* Ensure fallback text doesn't appear in polyfill */
progress[role] strong {
    display: none;
}
progress,                          /* Firefox  */
progress[role][aria-valuenow] {    /* Polyfill */
    background: #eeeeee; !important; /* !important is needed by the polyfill */
}

/* Chrome */
progress::-webkit-progress-bar {
    background: #eeeeee;
}
/* IE10 */
progress {
    color: #1ba383;
    border-radius: 20%;
}

/* Firefox */
progress::-moz-progress-bar {
    background: #1ba383;
}

/* Chrome */
progress::-webkit-progress-value {
    background: #1ba383;
    border-radius: 10px;
}

/* Polyfill */
progress[aria-valuenow]:before  {
    background: #1ba383;
}

.ui-panel-inner {
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    bottom: 0px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

#popup{
    position:fixed;
    top:40px;
    left: 20px;
}
.ui-panel .ui-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e9e9e9;
}