
#report-form h3:last-of-type {
    margin-top: 3vh;
    margin-bottom: 0;
}

#report-form h4 {
    margin-top: 3vh;
    margin-bottom: 0.5vh;
}

#report-form section:first-of-type h4 {
    margin-top: 1.5vh;
}

#dropzone-container {
    box-sizing: content-box;
    position: relative;
    display: flex;
    width: 100%;
    height: 20vh;
    padding: 2vh;
    margin-bottom: 1vh;
    border: 2px solid #fe4479;
    border-radius: 1vh;
    background-color: rgba(254, 68, 121, 0.2);
}

#dropzone {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: inherit;
    z-index: 99;
    cursor: pointer;
}

#dropzone .dz-preview.dz-image-preview {
    position: relative;
    width: 100px;
    height: 100px;
}

#dropzone .dz-image {
    width: inherit;
    height: inherit;
}

#dropzone .dz-image img {
    width: 100%;
    height: 100%;
}

#dropzone .dz-details,
#dropzone .dz-progress,
#dropzone .dz-error-message,
#dropzone .dz-success-mark,
#dropzone .dz-error-mark {
    display: none;
}

#dropzone a.dz-remove {
    position: absolute;
    width: 3vh;
    height: 3vh;
    top: -0.7vh;
    right: -0.7vh;
}

#dropzone a.dz-remove img {
    width: 100%;
    height: 100%;
}

#droptitle {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    text-align: center;
    font-size: 2vh;
    color: white;
}

#droptitle.show {
    display: block;
}

.dropzone-notice {
    color: black;
    font-style: italic;
}

.form-section input.error {
    border: 1px solid red;
}

.form-section label {
    color: black;
}

.form-section #npc-risk-yes.error + label {
    color: red;
}

#npc-username {
    display: block;
    margin-top: 1vh;
}

#report-form .description {
    color: black;
    font-style: italic;
}

#agenotice {
    display: none;
    margin-top: 1vh;
    color: black;
    font-style: italic;
}

#agenotice.show {
    display: block;
}

#risks {
    margin-top: 3vh;
    color: black;
}

.risk-block {
    margin-bottom: 2vh;
}

.risk-title {
    display: block;
    color: #00b6a4;
}

#riskfinal {
    color: #FE4479;
}

#createpdf {
    margin-top: 2vh;
    width: min-content;
    white-space: nowrap;
    padding: 1vh 2vh;
    background-color: #00b6a4;
    border-radius: 1vh;
    color: white;
    cursor: pointer;
}

#donetext {
    display: none;
    margin-top: 2vh;
    color: black;
}

#donetext.show {
    display: block;
}

#donetext a {
    color: #00b6a4;
}

#donetext .cognito:not(.c-forms-actionBar) {
    margin: 0 0 0 5%;
    width: 50%;
}

#donetext .cognito #c-submit-button {
    color: white;
    float: left;
    width: min-content;
    height: 40px;
    font-size: 80%;
}

