/* ISSUE REPORT FORM */
#issue-form-holder {
    z-index:100002;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #ffffff66;
}

#issue-report-panel {
    width: 434px;
    min-height: 60%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--evc-large-shadow);
    background-color: #F6F8FA;
    border-radius: 14px;
}

.issue-report-form-step
{
    padding:0 24px;
    position:relative;
    flex: 1;
    padding-bottom: 14px;
}

.issue-report-form-step.open
{
    display:flex;
}

.issue-report-form-step.close
{
    display:none;
}

#issue-report-form-header
{
    display: flex;
    height: 58px;
    color: var(--evc-blue-dark);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--evc-gray-lines);
    padding:0 24px;
    background-color: white;
    border-radius: 14px 14px 0 0;
}

#issue-report-form-header a {
    color: var(--evc-blue-dark) !important;
    font-size:0.9em;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.issue-report-form-step-header
{
    color: var(--evc-blue-gray);
    padding:28px 0;
    text-align: center;
}

.issue-report-form-step, .reason-btns ul
{
    display: flex;
    flex-direction: column;
}

.reason-btn
{
    min-height:74px;
    box-sizing: border-box;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}

.issue-report-form-btn
{
    display:flex;
    box-shadow: var(--evc-small-shadow);
    background-color: white;
    border-radius: 40px;
    text-align: center;
    padding: 5px;
    color: var(--evc-blue-dark) !important;
    min-height:60px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.issue-report-form-btn.active
{
    background-color: var(--evc-blue-dark);
    color: white  !important;
}

.issue-report-form-step .charge-location-ports
{
    margin-top:0;
    width:100%;
}

.issue-report-form-section
{
    flex: 1;
}

.issue-report-form-step .charge-location-ports li
{
    cursor: pointer;
}

.issue-report-form-step .charge-location-ports ul li.charge-point-item.active > span
{
    background-color: var(--evc-blue-dark);
}

input[type=text],
input[type=tel],
input[type=number],
textarea
{
    border: 1px solid var(--evc-gray-lines);
    border-radius: 14px;
    padding: 10px; 
    width: 100%;
    min-height:60px;
    box-sizing: border-box;
    margin-bottom: 12px;
    font-family: Univia, sans-serif;
}

textarea
{
    min-height:250px;
}

::placeholder
{
    color:var(--evc-blue-gray);
    font-style: italic;
    opacity: 0.5;
}

#issue-report-form-back-btn
{
    visibility:hidden;
}

#issue-report-form-successful-content
{
    display: none;
    color: var(--evc-blue-gray);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.success-heading
{
    color: var(--evc-blue-dark);
    margin-bottom:10px;
    font-size: 2.0em;
}

.success-message
{
    width: 340px;
}

#issue-report-form-successful-content img
{
    width:164px;
    height:164px;
    margin:60px 0 40px 0;
}

#issue-report-form-error-message,
#issue-report-form-validation-message
{
    color: var(--evc-red);
    padding:28px 0;
    text-align: center;
    display:none;
}

#issue-report-toggle-wrapper
{
    position: fixed;
    right: 0;
    bottom: 40px;
    height: 158px;
    width: 45px;
    border-radius: 12px 0 0 12px;
    box-shadow: var(--evc-small-shadow);
    background-color: white;
    cursor:pointer;
}

#issue-report-toggle
{
    transform: rotate(-90deg);
    color: black !important;
    padding: 10px;
    width: 158px;
    height: 158px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: start;
    justify-content: center;
}

#issue-report-toggle a {
    color: var(--evc-blue-dark) !important;
}

#issue-report-toggle img
{
    transform: rotate(90deg);
    margin-right:10px;
}