
#questionnaire .form-buttons button, #questionnaire .form-buttons input[type="submit"] {
    width: 90px;
}

#questionnaire .form-buttons .top-menu-link {
    background: #FFFFFF00;
    color: hsl(var(--theme-h), var(--theme-s), var(--theme-l));
    border: 1px solid #FFFFFF00;
    border-radius: 5px;
    font-size: 15px;
    line-height: 18px;
    cursor: pointer;
    padding: 0px 4px;
    margin: 0px;
    white-space: nowrap;
    overflow: hidden;
    width: auto;
    height:40px;
    box-shadow: none;
}

#questionnaire input[type=checkbox]:focus {
  outline: #cacaca solid 0px;
  outline-offset: 0px;
  transform: scale(1.4);
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(71, 157, 195, 1);
}

#questionnaire .top-menu-link:active {
    box-shadow: 0 0 5px rgba(71, 157, 195, 1);
}

#questionnaire .top-menu-link:focus    {
    outline: none;
    box-shadow: 0 0 5px rgba(71, 157, 195, 1);
}

#questionnaire #confidentiality-select {
    background: #FFFFFF00;
    color: hsl(var(--theme-h), var(--theme-s), var(--theme-l));
    border: 1px solid #FFFFFF00;
    border-radius: 5px;
    font-size: 15px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    padding: 0px;
    white-space: nowrap;
    overflow: hidden;
    width: 50px;
    height:40px;
}
#questionnaire #confidentiality-select .body {
    display: none;
}
#questionnaire #confidentiality-select img {
    height:22px;
    width:22px;
    position: relative;
    top: 5px;
}
#questionnaire #confidentiality-select {
    width: 48px;
}

.f4menu.priv-select-dlg .crow {
    padding: 8px 3px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.priv-select-dlg .crow img {
    height:22px;
    width:22px;
    margin: 0px 10px;
}
.priv-select-dlg .crow .body {
    display: flex;
    flex-direction: column;
}
.priv-select-dlg .crow .detail {
    font-size: 11px;
    line-height: 14px;
    color: rgb(155, 155, 155);
}
.priv-select-dlg .crow.checked .detail { 
    color: rgb(240, 240, 240);
}
/* .priv-select-dlg .crow.hover .detail { color:  rgb(220, 220, 220); } */
.priv-select-dlg .crow.hover img     { 
    filter: drop-shadow(0 0 3px white);
    /* background-color: #fff1;
    border-radius: 2px;
    outline: 3px solid #fff1; */
}



.status-item {
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.status-item.complete {
    color: #333;
}
.status-item.curpage {
    /* color: #444; */
    background-color: #eee;
}
.status-item .curpage-indicator {
    width: 17px;
    margin-right: 6px;
    height: 18px;
    line-height: 15px;
    opacity: 0;
}
.status-item.curpage .curpage-indicator {
    opacity: 1.0;
    font-size: 1.4em;
}
.status-item .page {
    width: 60px;
}
.status-item .pct  {
    flex: 1;
    text-align: right;
    margin-right: 7px;
    color: hsl(var(--theme-h), var(--theme-s), var(--theme-l));
    font-size: 0.9em;
}
.status-item.complete .pct {
    color: #333;
}
.status-item:hover .pct  {
    color: white;
}
.status-item .icon {
    background: transparent url(/static/research_core/status_icons/notstarted.png) no-repeat center/12px;
    width: 12px;
    margin: 0px;
    height: 12px;
    opacity: 0.5;
    margin-right: 10px;
}
.status-item.error .icon {
    background: transparent url(/static/research_core/status_icons/interrupted.png) no-repeat center/12px;
    opacity: 1.0;
}
.status-item.complete .icon {
    background: transparent url(/static/research_core/status_icons/complete.png) no-repeat center/12px;
    opacity: 1.0;
}
