/*------------------------------------*\
    $TABLE OF CONTENTS
\*------------------------------------*/
/**
 * VARIABLES..............................Declarations of Sass variables
 * .....Colors
 * .....Typography
 * .....Layout
 * .....Defaults
 * .....Breakpoints
 * MIXINS.................................Sass mixins
 * RESET..................................Set reset defaults
 * GLOBAL CLASSES.........................Set reset defaults
 * GLOBAL ELEMENTS........................Establish global styles
 * .....Main
 * .....Headings
 * .....Text-related elements (p, blockquote, lists)
 * .....Defaults
 * .....Breakpoints
 * TYPOGRAPHY------------------------------
 * MEDIA------------------------------
 * LAYOUT------------------------------
 * NAVIGATION------------------------------
 * TOC To Be Continued
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/* CSS Transition
	Usage: @include transition(width,0.3s,ease-out);
 */
/* Rem Unit font sizes with relative fallback http:/seesparkbox.com/foundry/scss_rem_mixin_now_with_a_better_fallback
	Usage: @include font-size(1, large);
*/
/* Works out column percentage width around base gutter set above */
/* Transitions */
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
    margin: 0;
    padding: 0;
}

header, footer, nav, section, article, hgroup, figure {
    display: block;
}

/*------------------------------------*\
    $GLOBAL ELEMENTS
\*------------------------------------*/
/*------------------------------------*\
    $GLOBAL CLASSES
\*------------------------------------*/
/* Clearfix */
.cf, [role=main], .notification {
    *zoom: 1;
}

    .cf:before, [role=main]:before, .notification:before, .cf:after, [role=main]:after, .notification:after {
        content: " ";
        /* 1 */
        display: table;
        /* 2 */
    }

    .cf:after, [role=main]:after, .notification:after {
        clear: both;
    }

/* Completely remove from the flow and screen readers. */
.is-hidden {
    display: none !important;
    visibility: hidden !important;
}

/* Completely remove from the flow but leave available to screen readers. */
.is-vishidden {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
}

/* Floats */
.right {
    float: right;
    padding: 0 0 1rem 1rem;
}

.right-search {
    float: right;
    padding: 0 0 1rem 0;
}

.left {
    float: left;
    padding: 0 1rem 1rem 0;
}

/* Text-Align */
.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

/* Display Classes */
@media screen and (max-width: 46.8em) {
    .hide-small {
        display: none;
    }
}

@media screen and (min-width: 46.8em) and (max-width: 50em) {
    .hide-med {
        display: none;
    }
}

@media screen and (min-width: 50em) {
    .hide-large {
        display: none;
    }
}

.valid {
    color: #089e00;
}

.error {
    color: red;
}

body {
    background: white url(../base/img/background-triangles.png) repeat 0 0;
    font: 93.8%/1.5 "HelveticaNeue", "Helvetica", "Arial", sans-serif;
    -webkit-text-size-adjust: 100%;
    color: #333333;
}

.content-width {
    margin: 0 auto;
    width: 100%;
    max-width: 82rem;
}

.font-secondary {
    font-family: Georgia, Times, "Times New Roman", serif;
}

.colour-primary-colour {
    color: #781d7e;
}

.colour-dark-brown {
    color: #bfb6ab;
}

.colour-light-brown {
    color: #eee9e4;
}

.colour-anzca-red {
    color: #93002c;
}

.background-colour-primary-colour {
    background-color: #781d7e;
}

.background-colour-dark-brown {
    background-color: #bfb6ab;
}

.background-colour-light-brown {
    background-color: #eee9e4;
}

.background-colour-anzca-red {
    background-color: #93002c;
}

.colour-red {
    color: #c73c3c;
}

.colour-green {
    color: #8dc25e;
}

.colour-blue {
    color: #2f9ec7;
}

.colour-yellow {
    color: #e5f20e;
}

.colour-gray {
    color: gray;
}

.background-colour-red {
    background-color: #c73c3c;
}

.background-colour-green {
    background-color: #8dc25e;
}

.background-colour-blue {
    background-color: #2f9ec7;
}

.background-colour-yellow {
    background-color: #e5f20e;
}

.background-colour-gray {
    background-color: gray;
}

/* Links */
a {
    color: #781d7e;
    text-decoration: none;
    outline: 0;
}

    a:hover, a:focus {
        color: #000;
    }

.page-action-container a, .page-navigation-container a {
    color: #000;
}

    .page-action-container a:hover, .page-navigation-container a:hover, .page-action-container a:focus, .page-navigation-container a:focus {
        color: #781d7e;
    }

    .page-action-container a.btn, .page-navigation-container a.btn {
        color: #fff;
    }

/* Headings */
/*Further Reading: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */
h1, .alpha {
    font-size: 25px;
    line-height: 1.2;
}

h2, .beta {
    line-height: 1.2;
}

h3, .gamma {
    line-height: 1.2;
}

/* Subheadings */
.subheading {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
}

small, .small-text {
    display: block;
    font-weight: normal;
    font-size: 12px;
    color: gray;
    text-transform: uppercase;
}

    small.show-inline, .show-inline.small-text {
        display: inline-block;
        vertical-align: middle;
    }

.small-text {
    padding-top: 10px;
    text-transform: none;
}

/* Text-Related Elements */
p {
    margin-bottom: 1rem;
}

/* Blockquote */
blockquote {
    font-style: italic;
    border-left: 1px solid gray;
    color: gray;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

/* Horizontal Rule */
hr {
    border: 0;
    height: 2px;
    background: #eeeeee;
    margin: 2rem 0;
}

abbr {
    border-bottom: 1px dotted gray;
    cursor: help;
}

ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Definition Lists */
dl {
    overflow: hidden;
    margin: 0 0 1rem;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

.stacked-list li, .resources-container ul li {
    margin-top: 5px;
}

    .stacked-list li:first-child, .resources-container ul li:first-child {
        margin-top: 0;
    }

    .stacked-list li a, .resources-container ul li a {
        display: block;
        padding: 5px 10px;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        background: #eee9e4;
        background: -moz-linear-gradient(top, #bfb6ab 0%, #eee9e4 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bfb6ab), color-stop(100%, #eee9e4));
        background: -webkit-linear-gradient(top, #bfb6ab 0%, #eee9e4 100%);
        background: -o-linear-gradient(top, #bfb6ab 0%, #eee9e4 100%);
        background: -ms-linear-gradient(top, #bfb6ab 0%, #eee9e4 100%);
        background: linear-gradient(to bottom, #bfb6ab 0%, #eee9e4 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#bfb6ab, endColorstr=#eee9e4,gradientType=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#bfb6ab, endColorstr=#eee9e4, gradientType='0')";
    }

html.is-ie9 .stacked-list li a, html.is-ie9 .resources-container ul li a, .resources-container html.is-ie9 ul li a {
    filter: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc1MDciIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiNCRkI2QUIiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNFRUU5RTQiIG9mZnNldD0iMSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2c1MDcpIiAvPgo8L3N2Zz4=);
}

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
form > div {
    margin-bottom: 1rem;
}

form ol, form ul {
    list-style: none;
    margin-left: 0;
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

label {
    display: block;
    padding-bottom: 0.25rem;
    font-weight: bold;
}

.checkbox-container label {
    display: inline-block;
    margin-right: 10px;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    margin-bottom: 1rem;
}

    input[type=text],
    input[type=password],
    input[type=email],
    input[type=number],
    textarea,
    select {
        width: 100%;
        border: 1px solid gray;
        padding: 0.5rem 0.65rem;
    }

    input[type=text], input[type=search], input[type=url], input[type=number], textarea {
        -webkit-appearance: none;
    }

textarea {
    min-height: 105px;
}

button, input[type="submit"], input[type="button"] {
    padding: 0.5rem;
    border: 0;
    cursor: pointer;
    width: auto;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    margin-right: 0.3em;
}

input[type="search"] {
    -webkit-appearance: none;
    border-radius: 0;
}

    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

.field-container {
    margin-bottom: 1rem;
}

.inline-form fieldset, .inline-form .inline-container {
    position: relative;
}

.inline-form input[type=submit], .inline-form button, .inline-form .btn {
    font-size: 0.875em;
    padding: 0.65rem 1.3rem;
    background: #333333;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: auto;
}

    .inline-form input[type=submit]:hover, .inline-form button:hover, .inline-form .btn:hover {
        background: gray;
        color: white;
    }

.inline-search-results-form {
    width: 100%;
}

@media screen and (min-width: 46.8em) {
    .inline-search-results-form {
        width: 82%;
    }
}

.inline-search-results-form fieldset, .inline-search-results-form .inline-container {
    position: relative;
}

.inline-search-results-form input[type=submit], .inline-search-results-form button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: auto;
}

.date-range-container input {
    width: 47%;
}

.date-range-container .Zebra_DatePicker_Icon_Wrapper {
    width: 47%;
}

    .date-range-container .Zebra_DatePicker_Icon_Wrapper input {
        width: 100%;
    }

.date-range-container.two-columns .date-input-container {
    width: 45%;
}

    .date-range-container.two-columns .date-input-container span {
        width: 100%;
    }

    .date-range-container.two-columns .date-input-container input {
        width: 100%;
    }

.date-range-container.two-columns .date-separator-container {
    width: 4%;
    padding-top: 30px;
}

@media screen and (max-width: 768px) {
    .filter-search .cf > .half, .filter-search [role=main] > .half, .filter-search .notification > .half {
        width: 100%;
        margin: 0;
    }
}

.filter-search select {
    width: 100%;
}

/* Validation */
.has-error {
    border-color: red;
}

.is-valid {
    border-color: #089e00;
}

table button, table input, table select, table textarea {
    margin-bottom: 0;
}

/* Validation */
.field-validation-error {
    display: block;
    border: 1px solid #93002c;
    color: #93002c;
    padding: 5px;
    background-color: #fff9fb;
    border-radius: 5px;
    margin-bottom: 20px;
}

.validation-summary-errors {
    display: block;
    border: 1px solid #93002c;
    color: #93002c;
    padding: 5px;
    background-color: #fff9fb;
    border-radius: 5px;
    margin-bottom: 20px;
}

    .validation-summary-errors ul {
        border-top: 1px solid #93002c;
        margin-top: 5px;
        padding-top: 5px;
    }

label.hasCounter {
    padding-right: 45px;
}

.char-counter-container {
    position: relative;
    vertical-align: middle;
    margin-top: -19px;
    float: right;
    width: 40px;
    overflow: hidden;
    height: 20px;
}

    .char-counter-container strong {
        display: block;
        text-align: center;
        width: 40px;
        line-height: 20px;
        background-color: gray;
        color: #fff;
        border-top-left-radius: 5px;
    }

input.valid,
textarea.valid,
select.valid {
    color: #333333;
}

.file-wrap {
    position: relative;
}

    .file-wrap input[type="file"] {
        cursor: pointer;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        width: 200px;
    }

#specialConsiderationsForm .file-wrap input[type="file"] {
    width: 95px;
}

.asterisk {
    color: #f00;
}

.help-panel {
    position: absolute;
    width: 200px;
    display: block;
    margin: -20px 0 0 175px;
    background: #eee9e4;
    padding: 5px;
    font-size: 11px;
    border: 1px solid #c7b6a5;
}

@media screen and (max-width: 720px) {
    .help-panel {
        width: 100%;
        display: block;
        margin: 10px;
        margin: 10px 0 10px 0;
        position: static;
    }
}

/*------------------------------------*\
    $SPECIFIC FORMS
\*------------------------------------*/
/* Search Form */
.search-field {
    padding-right: 3em;
}

.inline-form .search-submit {
    background: none;
    padding: 0.78em 1em;
    border: 0;
    border-left: 1px solid #dddddd;
    color: gray;
}

#endYear {
    line-height: 35px;
}

#recognitionCode-container input {
    text-transform: uppercase;
}

.sc-item {
    margin-bttom: 10px;
}

    .sc-item input {
        margin-bttom: 0;
    }

    .sc-item span {
        display: inline-block;
        width: 85%;
        vertical-align: top;
    }

/*------------------------------------*\
    $Table
\*------------------------------------*/
table,
table.dataTable {
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid gray;
    width: 100%;
    margin: 1rem 0;
}

tr:nth-child(2n+2) {
    background-color: #eeeeee;
}

th {
    text-align: left;
    border: 1px solid gray;
    padding: 0.2em;
    white-space: nowrap;
}

    th i {
        padding: 0 3px;
        color: gray;
    }

        th i.active-sort {
            color: #000;
        }

        th i.icon-large {
            color: #000;
        }

td {
    border: 1px solid gray;
    padding: 0.2em;
}

    td label {
        display: inline-block;
        font-weight: normal;
    }

    td.table-button-container {
        white-space: nowrap;
    }

        td.table-button-container .btn {
            margin-top: 0.5rem;
        }

table.dataTable tr.odd td.sorting_1,
table.dataTable tr.even td.sorting_1 {
    background-color: transparent;
}

/* Overwrites jaquery data tables default styling */
.dataTables_processing {
    margin-top: 30px;
    line-height: 30px;
    padding: 0;
    color: #fff;
    background-color: #781d7e;
    border: 0;
}

@media screen and (max-width: 1024px) {
    html.lt-ie10 .dataTables_wrapper {
        max-width: 1000px;
        width: 100%;
        overflow-x: scroll;
    }

    html.lt-ie10 table {
        width: 1000px;
    }

    html.gt-ie9 {
        /* Force table to not be like tables anymore */
        /* Hide table headers (but not display: none;, for accessibility) */
        /*
    Label the data
    */
    }

        html.gt-ie9 table.dataTable,
        html.gt-ie9 table.dataTable thead,
        html.gt-ie9 table.dataTable tbody,
        html.gt-ie9 table.dataTable th,
        html.gt-ie9 table.dataTable td,
        html.gt-ie9 table.dataTable tr {
            display: block;
        }

            html.gt-ie9 table.dataTable th {
                position: absolute;
                top: -9999px;
                left: -9999px;
                border-top: 0;
                border-left: 0;
                border-right: 0;
            }

                html.gt-ie9 table.dataTable th [class^="icon-"],
                html.gt-ie9 table.dataTable th [class*=" icon-"] {
                    display: none;
                }

            html.gt-ie9 table.dataTable td {
                /* Behave  like a "row" */
                border-top: 0;
                border-left: 0;
                border-right: 0;
                position: relative;
                white-space: normal;
                text-align: left;
                padding-left: 35%;
                min-height: 29px;
            }

                html.gt-ie9 table.dataTable td.dataTables_empty {
                    padding-left: 10px;
                }

                html.gt-ie9 table.dataTable td:before {
                    /* Now like a table header */
                    position: absolute;
                    /* Top/left values mimic padding */
                    top: 2px;
                    left: 6px;
                    width: 35%;
                    white-space: nowrap;
                    text-align: left;
                    font-weight: bold;
                }

                html.gt-ie9 table.dataTable td.table-button-container {
                    text-align: left;
                    border-bottom-width: 3px;
                }

                    html.gt-ie9 table.dataTable td.table-button-container .btn {
                        margin: 0.5rem 0;
                    }

                html.gt-ie9 table.dataTable td:before {
                    content: attr(data-title);
                }
}
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
.col {
    display: block;
    float: left;
    margin-left: 2.5%;
    word-wrap: break-word;
}

    .col:first-child {
        margin-left: 0;
    }

.col-no-margin {
    margin: 0 !important;
}

.half {
    width: 48.75%;
}

.third, #dNumberOfForms select {
    width: 31.66667%;
}

.twothirds {
    width: 65.33333%;
}

.quarter {
    width: 23.125%;
}

.threequarters {
    width: 74.325%;
}

.fifth {
    width: 18%;
}

.twofifths {
    width: 38.4%;
}

.threefifths {
    width: 57.6%;
}

@media screen and (max-width: 768px) {
    .mobile-fullwidth {
        width: 100%;
        margin-left: 0;
    }

    .mobile-half {
        width: 50%;
        margin-left: 0;
    }
}

.pad-top {
    padding-top: 25px;
}

.page-action-container, .page-navigation-container {
    float: right;
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: 30px;
}

    .page-action-container li, .page-navigation-container li {
        display: inline-block;
        margin-left: 10px;
    }

        .page-action-container li:first-child, .page-navigation-container li:first-child {
            margin-left: 0;
        }

@media screen and (max-width: 720px) {
    .page-action-container li span, .page-navigation-container li span {
        display: none;
    }
}

.page-navigation-container button {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .page-navigation-container {
        margin-bottom: 1rem;
        float: none;
    }
}

@media screen and (max-width: 720px) {
    .page-navigation-container li {
        margin-left: 0;
        margin-top: 10px;
    }

        .page-navigation-container li:first-child {
            margin-top: 0;
        }
}

.box-wrapper, .filter-search fieldset {
    display: block;
    background: #eee9e4;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 720px) {
    .contact-details-container .quarter {
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 720px) {
    .login-container .third, .login-container #dNumberOfForms select, #dNumberOfForms .login-container select, .login-container .twothirds {
        width: 100%;
    }
}

#participantDetails {
    font-weight: bold;
}

a#helpLinkHeadingAnchor {
    color: #000;
}

/*------------------------------------*\
    $PAGE STRUCTURE
\*------------------------------------*/
.header {
    background: #781d7e;
    color: #fff;
    position: relative;
    /* keeping the H1 on 1 line where possible */
}

    .header a {
        color: #fff;
    }

    .header .logo-container {
        margin: 1rem 0;
        margin-right: 1rem;
        border-right: 1px solid #fff;
        display: inline-block;
    }

    .header h1 {
        font-size: 30px;
        display: inline-block;
        vertical-align: middle;
        width: 60%;
        margin-top: 1rem;
    }

    .header #logindisplay {
        position: absolute;
        right: 0px;
        top: 10px;
    }

@media screen and (max-width: 990px) {
    .header h1 {
        width: 50%;
        font-size: 25px;
    }
}

@media screen and (max-width: 945px) {
    .header h1 {
        width: 50%;
        font-size: 20px;
    }
}

@media screen and (max-width: 870px) {
    .header h1 {
        width: 50%;
        font-size: 20px;
    }
}

@media screen and (max-width: 770px) {
    .header h1 {
        width: 50%;
        font-size: 16px;
    }
}

@media screen and (max-width: 680px) {
    .header h1 {
        width: 55%;
        font-size: 16px;
    }
}

@media screen and (max-width: 720px) {
    .header {
        text-align: left;
        border-bottom: 1px solid gray;
    }

        .header .nav, .header .primary-admin-nav,
        .header .secondary-admin-nav {
            padding-top: 0;
            border-top: 0;
        }

        .header h1 {
            margin: 0;
            margin-bottom: 10px;
            width: 100%;
            padding: 0 20px;
            font-size: 20px;
        }

        .header .logo-container {
            border: none;
            margin: 0;
        }

        .header #logindisplay {
            position: relative;
            margin-top: 0;
            border-top: 1px solid #fff;
            display: block;
            top: auto;
            left: auto;
        }
}

.logo {
    display: inline-block;
    max-width: 300px;
    margin: 1rem;
    vertical-align: middle;
    border: 0;
    outline: none;
}

@media screen and (max-width: 870px) {
    .logo {
        max-width: 250px;
    }
}

@media screen and (min-width: 720px) {
    .logo {
        margin: 0.5 1rem;
    }
}

.search-form {
    overflow: hidden;
    max-height: 0;
}

@media screen and (min-width: 46.8em) {
    .search-form {
        float: right;
        max-height: none;
        margin: 0.65em 0.5em 0 0;
    }
}

.userdetails {
    margin: 0;
    display: block;
    padding: 0.5rem;
    float: right;
}

@media screen and (max-width: 720px) {
    .userdetails {
        width: 100%;
        text-align: left;
        font-size: 13px;
        padding-left: 10px;
    }
}

.action-logout {
    display: inline-block;
    border-left: 1px solid #fff;
    padding-left: 10px;
    margin-left: 5px;
}

@media screen and (max-width: 720px) {
    .action-logout {
        float: right;
        border-left: 0;
    }
}
/*------------------------------------*\
    $NAVIGATION
\*------------------------------------*/
.nav, .primary-admin-nav,
.secondary-admin-nav {
    clear: both;
    width: 100%;
    background: #781d7e;
    text-align: left;
    border-top: 2px solid #fff;
}

    .nav a, .primary-admin-nav a,
    .secondary-admin-nav a {
        display: block;
        padding: 0.5rem;
        border-top: 1px solid #eeeeee;
        color: #fff;
        font-size: 16px;
    }

@media screen and (max-width: 915px) {
    .nav a, .primary-admin-nav a,
    .secondary-admin-nav a {
        font-size: 15px;
    }
}

@media screen and (max-width: 870px) {
    .nav a, .primary-admin-nav a,
    .secondary-admin-nav a {
        font-size: 14px;
    }
}

@media screen and (max-width: 820px) {
    .nav a, .primary-admin-nav a,
    .secondary-admin-nav a {
        font-size: 14px;
        padding: 5px !important;
    }
}

@media screen and (max-width: 770px) {
    .nav a, .primary-admin-nav a,
    .secondary-admin-nav a {
        font-size: 13px;
        padding: 5px !important;
    }
}

.nav .nav-toggle, .primary-admin-nav .nav-toggle,
.secondary-admin-nav .nav-toggle {
    position: absolute;
    top: 40px;
    right: 10px;
    z-index: 9999;
    border: 0;
    padding: 5px;
    font-size: 0.8rem;
    line-height: 1;
    background-color: #000;
    border-radius: 5px;
    text-transform: uppercase;
}

    .nav .nav-toggle a, .primary-admin-nav .nav-toggle a,
    .secondary-admin-nav .nav-toggle a {
        color: #fff;
        border: 0;
    }

@media screen and (min-width: 720px) {
    .nav, .primary-admin-nav,
    .secondary-admin-nav {
        max-height: none;
        clear: both;
    }

        .nav li, .primary-admin-nav li,
        .secondary-admin-nav li {
            display: inline-block;
        }

        .nav a, .primary-admin-nav a,
        .secondary-admin-nav a {
            border: 0;
        }

        .nav .nav-toggle, .primary-admin-nav .nav-toggle,
        .secondary-admin-nav .nav-toggle {
            display: none;
        }
}

@media screen and (max-width: 768px) {
    .nav, .primary-admin-nav,
    .secondary-admin-nav {
        clear: both;
        margin: 0 auto;
        text-align: center;
    }
}

@media screen and (max-width: 720px) {
    .nav, .primary-admin-nav,
    .secondary-admin-nav {
        text-align: center;
    }

        .nav ul, .primary-admin-nav ul,
        .secondary-admin-nav ul {
            display: none;
        }
}

@media screen and (min-width: 768px) {
    .nav li.logout-button, .primary-admin-nav li.logout-button,
    .secondary-admin-nav li.logout-button {
        float: right;
    }
}

header .nav, header .primary-admin-nav,
header .secondary-admin-nav {
    font-size: 1.05em;
    padding-top: 5px;
}

    header .nav a, header .primary-admin-nav a,
    header .secondary-admin-nav a {
        padding: 0.25rem 0.5rem;
    }

    header .nav .active, header .primary-admin-nav .active,
    header .secondary-admin-nav .active {
        background: #fff;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

        header .nav .active a, header .primary-admin-nav .active a,
        header .secondary-admin-nav .active a {
            color: #000;
        }

ul#menuParticipantPrimary {
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 719px) {
    ul#menuParticipantPrimary {
        text-align: left;
    }

        ul#menuParticipantPrimary li.active {
            border-radius: 0 !important;
        }

        ul#menuParticipantPrimary a {
            font-size: 15px;
        }
}

.primary-admin-nav,
.secondary-admin-nav {
    border: 0;
    background: #93002c;
}

    .primary-admin-nav li a:hover,
    .secondary-admin-nav li a:hover {
        color: #eeeeee;
    }

    .primary-admin-nav h3,
    .secondary-admin-nav h3 {
        padding: 0 10px;
        color: #000;
        margin: 0;
        padding-top: 5px;
    }

        .primary-admin-nav h3 em,
        .secondary-admin-nav h3 em {
            color: #fff;
            font-weight: normal;
            padding-left: 5px;
        }

.secondary-admin-nav {
    color: #fff;
    font-size: 0.85em;
    border-top: 2px solid #fff;
    margin-bottom: 1rem;
}

    .secondary-admin-nav li a:hover {
        color: #000;
    }

    .secondary-admin-nav h3 {
        color: #fff;
    }

.pagination {
    overflow: hidden;
    text-align: center;
    margin: 1rem 0;
}

    .pagination li {
        display: inline-block;
        border-left: 1px solid #eeeeee;
    }

        .pagination li:first-child {
            border: 0;
        }

    .pagination a {
        padding: 1rem;
    }

.paging_full_numbers {
    height: auto !important;
}

    .paging_full_numbers a.paginate_button_disabled {
        visibility: hidden;
    }

    .paging_full_numbers a.paginate_button,
    .paging_full_numbers a.paginate_active {
        background-color: #781d7e;
        color: #fff !important;
        border: 0;
        padding: 2px 0;
        text-align: center;
        display: inline-block;
        width: 30px;
    }

    .paging_full_numbers a.paginate_active {
        background-color: #333;
    }

    .paging_full_numbers a.paginate_button:hover {
        background-color: #9f27a7;
        color: #fff !important;
    }

    .paging_full_numbers a.paginate_button.first,
    .paging_full_numbers a.paginate_button.previous,
    .paging_full_numbers a.paginate_button.next,
    .paging_full_numbers a.paginate_button.last {
        border: 0;
        background-color: #fff;
        color: #781d7e !important;
        padding-left: 0;
        padding-right: 0;
        width: auto;
    }

/*------------------------------------*\
    $MAIN CONTENT AREA
\*------------------------------------*/
[role=main] {
    padding: 0.5rem 0.5rem 2rem;
    overflow: hidden;
}

#content {
    background-color: #fff;
}

/*------------------------------------*\
    $FOOTER
\*------------------------------------*/
.footer {
    clear: both;
    overflow: hidden;
    color: black;
    line-height: 1.2;
    background-color: transparent;
    font-size: 0.85em;
    padding-top: 10px;
}

    .footer a {
        color: #f9f9f9;
    }

/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
.notification {
    display: block;
    background: #eee9e4;
    border-radius: 5px;
    padding: 0 1rem;
    margin: 1rem 0;
    color: #333;
}

    .notification p {
        margin-top: 1rem;
    }

.off {
    display: none;
}

.verification-list-details {
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%;
}

    .verification-list-details ul {
        text-align: left;
    }

        .verification-list-details ul strong {
            display: inline-block;
            width: 50%;
            text-align: right;
        }

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/
.btn,
button,
input[type="submit"],
input[type="button"] {
    display: inline-block;
    background-color: #781d7e;
    color: white;
    line-height: 1;
    font-weight: bold;
    padding: 0.5rem;
    border: 0;
    text-align: center;
    border: 0;
    border-radius: 5px;
    white-space: nowrap;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

    .btn:hover,
    button:hover,
    input[type="submit"]:hover,
    input[type="button"]:hover {
        background-color: #333333;
        color: white;
    }

    .btn.button.Zebra_DatePicker_Icon:hover, .btn.button.Zebra_DatePicker_Icon:focus,
    button.button.Zebra_DatePicker_Icon:hover,
    button.button.Zebra_DatePicker_Icon:focus,
    input[type="submit"].button.Zebra_DatePicker_Icon:hover,
    input[type="submit"].button.Zebra_DatePicker_Icon:focus,
    input[type="button"].button.Zebra_DatePicker_Icon:hover,
    input[type="button"].button.Zebra_DatePicker_Icon:focus {
        background-color: #fff;
    }

    .btn.disabled,
    button.disabled,
    input[type="submit"].disabled,
    input[type="button"].disabled {
        background-color: #eeeeee;
        color: #bbbbbb;
    }

h1 .btn {
    font-size: 15px;
    float: right;
}

@media screen and (max-width: 400px) {
    h1 .btn {
        float: none;
        clear: both;
    }
}

.btn-large {
    padding: 0.5rem;
    text-transform: uppercase;
    background-color: gray;
    font-size: 1.4rem;
    font-weight: normal;
}

.text-btn {
    font-style: italic;
}

.empty-plan-text {
    border: 2px solid #EE2A31;
    background-color: #FFE8EE;
}

    .empty-plan-text:focus {
        outline-width:0;
        background-color: #FFE8EE;
    }

.empty-plan-header {
    color: #EE2A31;
}

/* Styled mainly for the file upload, but may come in handy elsewhere */
.btn-success {
    background-color: #8dc25e;
}

.btn-start {
    background-color: #2f9ec7;
}

.btn-warning {
    background-color: #93002c;
}

.btn-danger {
    background-color: #93002c;
}

button.Zebra_DatePicker_Icon_Inside:hover {
    background-color: #fff;
}

body.opera button.Zebra_DatePicker_Icon_Inside.Zebra_DatePicker_Icon {
    margin-top: -9px !important;
}

@media (max-width: 690px) {
    .uploadNotification .btn {
        display: inline-block;
        margin-bottom: 5px;
    }
}

ol.text-list, ul.text-list {
    padding-left: 40px;
    margin-bottom: 20px;
}

ol.text-list {
    list-style: decimal;
}

ul.text-list {
    list-style: disc;
}

.progress-data-container small, .progress-data-container .small-text {
    color: #666666;
}

.triennium-progress-bar-wrapper {
    padding: 0 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid gray;
}

@media all and (max-width: 720px) {
    .triennium-progress-bar-wrapper {
        border-bottom: 0;
        padding: 0;
    }
}

.triennium-progress-bar {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 1.5rem;
    border-radius: 5px;
    position: relative;
    background-color: #dad5cf;
}

    .triennium-progress-bar .program-progress-segment {
        display: inline-block;
        width: 32%;
        position: relative;
        z-index: 999;
        padding-left: 10px;
        color: #fff;
    }

    .triennium-progress-bar .progress-bar-indicator {
        display: block;
        position: absolute;
        border-radius: 5px;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0%;
        background-color: #781d7e;
        z-index: 99;
        padding-left: 0.5rem;
    }

.summary-item {
    position: relative;
}

    .summary-item h1 {
        font-size: 18px;
        margin-bottom: 10px;
        vertical-align: top;
    }

    .summary-item .dashboard-graph {
        position: relative;
    }

        .summary-item .dashboard-graph span {
            display: block;
            margin: 0 auto;
            vertical-align: middle;
            font-size: 40px;
            text-transform: uppercase;
            position: absolute;
            width: 100px;
            height: 100px;
            top: 25px;
            bottom: 25px;
            left: 25px;
            right: 25px;
            line-height: 100px;
            background: #fff;
            border-radius: 100px;
            font-weight: bold;
            padding-left: 15px;
            z-index: 2;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }

            .summary-item .dashboard-graph span small, .summary-item .dashboard-graph span .small-text {
                font-size: 15px;
                display: inline-block;
                vertical-align: top;
                margin-top: -10px;
            }

            .summary-item .dashboard-graph span.progress-number {
                padding: 0;
                padding-top: 15px;
            }

                .summary-item .dashboard-graph span.progress-number span {
                    background: none;
                    width: auto;
                    height: auto;
                    font-size: 30px;
                    line-height: 35px;
                    box-shadow: none;
                    position: relative;
                    left: auto;
                    top: auto;
                    right: auto;
                    bottom: auto;
                    border-radius: 0;
                    padding: 0;
                }

                .summary-item .dashboard-graph span.progress-number .progress-number-bottom {
                    margin: 0 auto;
                    width: 60%;
                    border-top: 2px solid gray;
                }

        .summary-item .dashboard-graph canvas {
            margin: 0 auto;
            z-index: 1;
        }

@media all and (max-width: 720px) {
    .summary-item {
        width: 100%;
        text-align: left;
        margin: 0;
        border-top: 1px solid gray;
        padding-top: 1rem;
    }

        .summary-item:last-child {
            margin-bottom: 1rem;
            border-bottom: 1px solid gray;
        }

        .summary-item:first-of-type:last-of-type {
            margin-bottom: 0 !important;
            border-bottom: none !important;
        }

        .summary-item h1 {
            display: inline-block;
            font-size: 17px;
        }

        .summary-item .dashboard-graph {
            width: 50px;
            height: 50px;
            float: right;
            margin-top: -10px;
            margin-bottom: 10px;
            background-color: #fff;
            border-radius: 100px;
        }

            .summary-item .dashboard-graph canvas {
                display: none;
            }

            .summary-item .dashboard-graph span.progress-number {
                padding: 0;
                padding-top: 9px;
                box-shadow: 0;
                width: 50px;
                height: 50px;
                background: transparent;
                left: auto;
                top: auto;
                right: auto;
                bottom: auto;
            }

                .summary-item .dashboard-graph span.progress-number span {
                    text-align: center;
                    background: none;
                    width: auto;
                    height: auto;
                    font-size: 15px;
                    line-height: 15px;
                    box-shadow: 0;
                    position: relative;
                    left: auto;
                    top: auto;
                    right: auto;
                    bottom: auto;
                    border-radius: 0;
                    padding: 0;
                }

                .summary-item .dashboard-graph span.progress-number .progress-number-bottom {
                    text-align: center;
                    width: 75%;
                    border-top: 2px solid gray;
                }
}

.dashboard-activity-list {
    text-align: left;
    margin-bottom: 20px;
    display: inline-block;
}

    .dashboard-activity-list li {
        display: block;
        clear: both;
        font-size: 16px;
        padding-top: 10px;
    }

        .dashboard-activity-list li:first-child {
            padding-top: 0;
        }

        .dashboard-activity-list li i, .dashboard-activity-list li span {
            display: inline-block;
            vertical-align: middle;
            width: 70%;
            line-height: 1em;
        }

        .dashboard-activity-list li i {
            width: 30px;
            text-align: center;
        }

        .dashboard-activity-list li a {
            color: #333;
        }

        .dashboard-activity-list li i.icon-remove {
            color: #666666;
        }

        .dashboard-activity-list li i.icon-ok {
            color: #781d7e;
        }

.milestone-list {
    text-align: center;
}

    .milestone-list li {
        display: inline-block;
        vertical-align: top;
        text-align: left;
        width: 100%;
    }

        .milestone-list li a {
            display: block;
        }

        .milestone-list li span {
            display: inline-block;
            width: 79.68%;
            vertical-align: middle;
        }

        .milestone-list li i {
            margin: 0;
            font-size: 20px;
            width: 25px;
            display: inline-block;
            float: left;
            vertical-align: middle;
        }

        .milestone-list li.disabled a {
            color: #bbbbbb;
        }

        .milestone-list li a {
            color: #333;
        }

        .milestone-list li i.icon-remove {
            color: #666666;
        }

        .milestone-list li i.icon-ok {
            color: #781d7e;
        }

@media all and (max-width: 768px) {
    .milestone-list.half {
        width: 100%;
        margin: 0;
    }

        .milestone-list.half a {
            font-size: 13px;
        }
}

@media all and (max-width: 720px) {
    .progress-data-container .threequarters,
    .progress-data-container .quarter {
        width: 100%;
        margin: 0 0 1rem 0;
        text-align: left;
    }

    .status-container .half,
    .status-container .quarter,
    .status-container .third,
    .status-container #dNumberOfForms select,
    #dNumberOfForms .status-container select {
        width: 100%;
        margin: 0 0 1rem 0;
    }

    .status-container .milestone-list li {
        width: 100%;
    }
}

.filter-search fieldset {
    margin-top: 1rem;
}

@media screen and (max-width: 720px) {
    .filter-search .third, .filter-search #dNumberOfForms select, #dNumberOfForms .filter-search select,
    .filter-search .quarter,
    .filter-search .fifth,
    .filter-search .twofifths {
        width: 100%;
        margin-left: 0;
    }

        .filter-search .twofifths .twofifths {
            width: 45%;
            margin-right: 2.5%;
        }

    .filter-search .align-right {
        text-align: left;
    }
}

@media screen and (max-width: 400px) {
    .filter-search .half,
    .filter-search .quarter {
        width: 100%;
        margin-left: 0;
    }
}

.activity-list-action-container input, .activity-list-action-container label, .activity-list-action-container select {
    display: inline-block;
    margin-right: 10px;
}

.add-activity-category-list h1 {
    font-size: 18px;
}

    .add-activity-category-list h1 strong {
        display: block;
    }

.add-activity-category-list ul li {
    border-top: 1px solid #eeeeee;
}

    .add-activity-category-list ul li:first-child {
        border-top: 0;
    }

    .add-activity-category-list ul li a {
        display: block;
        padding: 5px 0;
        color: #333333;
    }

        .add-activity-category-list ul li a span {
            display: none;
        }

            .add-activity-category-list ul li a span.showName {
                display: inline-block;
                width: 90%;
                vertical-align: middle;
            }

        .add-activity-category-list ul li a i {
            display: inline-block;
            width: 5%;
            text-align: right;
            padding-right: 5px;
        }

        .add-activity-category-list ul li a:hover i {
            padding-right: 0;
        }

@media screen and (max-width: 720px) {
    .add-activity-category-list {
        width: 100%;
        margin-left: 0;
    }

        .add-activity-category-list h1 {
            cursor: pointer;
        }

        .add-activity-category-list ul {
            display: none;
        }

            .add-activity-category-list ul.showList {
                display: block;
            }
}

@media screen and (max-width: 720px) {
    .add-activity-container .half {
        width: 100%;
        margin: 0;
    }
}

.credits-data strong {
    display: inline-block;
    width: 85px;
}

.credits-data span {
    display: inline-block;
    width: 80%;
}

.question-container h1 {
    font-size: 20px;
}

.question-container textarea {
    min-height: 150px;
}

.question-container .guide-text ul, .question-container .guide-text ol, .question-container .guide-text p {
    margin-bottom: 15px;
}

.question-container .guide-text ul, .question-container .guide-text ol {
    padding: 0 0 0 20px;
}

    .question-container .guide-text ul li, .question-container .guide-text ol li {
        margin-bottom: 5px;
    }

.question-container .guide-text ul {
    list-style-type: disc;
}

.question-container .guide-text ol {
    list-style-type: decimal;
}

@media all and (max-width: 768px) {
    .question-container .twothirds,
    .question-container .third,
    .question-container #dNumberOfForms select,
    #dNumberOfForms .question-container select {
        width: 100%;
    }
}

.single-icon-container {
    display: inline-block;
    width: 20%;
}

    .single-icon-container i {
        display: inline-block;
        width: 30px;
        text-align: center;
    }

.colour-box {
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
    position: relative;
}

    .colour-box small, .colour-box .small-text {
        position: absolute;
        z-index: 9999;
        top: 0;
        width: 120px;
        text-align: center;
        padding-top: 20px;
        color: #fff;
    }

.icon-sample {
    display: block;
    float: left;
    width: 20%;
    text-align: left;
    margin-bottom: 5px;
}

@media (max-width: 880px) {
    .icon-sample {
        width: 25%;
    }
}

@media (max-width: 770px) {
    .icon-sample {
        width: 30%;
    }
}

@media (max-width: 500px) {
    .icon-sample {
        width: 50%;
    }
}

.column-sample {
    min-height: 50px;
    line-height: 50px;
    text-align: center;
}

/*------------------------------------*\
    $PRINT
\*------------------------------------*/
body.print-pdf {
    /* COUNTER RESPOSNIVE TABLES */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*
  Label the data
  */
}

    body.print-pdf .primary-admin-nav,
    body.print-pdf .secondary-admin-nav,
    body.print-pdf header.header,
    body.print-pdf .page-action-container,
    body.print-pdf .page-navigation-container,
    body.print-pdf .btn,
    body.print-pdf button,
    body.print-pdf input[type=button],
    body.print-pdf .filter-search,
    body.print-pdf .dataTables_paginate {
        display: none !important;
        visibility: hidden !important;
        height: 0px !important;
        width: 0 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        overflow: hidden !important;
    }

    body.print-pdf table.dataTable {
        font-size: 12px;
        line-height: 14px;
    }

        body.print-pdf table.dataTable th {
            padding: 2px;
        }

        body.print-pdf table.dataTable td {
            padding: 2px;
        }

    body.print-pdf table.dataTable {
        display: table;
    }

        body.print-pdf table.dataTable thead {
            display: table-header-group;
        }

        body.print-pdf table.dataTable tbody {
            display: table-row-group;
        }

        body.print-pdf table.dataTable tr {
            display: table-row;
        }

        body.print-pdf table.dataTable th,
        body.print-pdf table.dataTable td {
            display: table-cell;
        }

        body.print-pdf table.dataTable th {
            position: relative;
            top: auto;
            left: auto;
            border-top: 0;
            border-left: 0;
            border-right: 0;
        }

            body.print-pdf table.dataTable th [class^="icon-"],
            body.print-pdf table.dataTable th [class*=" icon-"] {
                display: none;
            }

        body.print-pdf table.dataTable td {
            /* Behave  like a "row" */
            border-top: 0;
            border-left: 0;
            border-right: 0;
            position: relative;
            white-space: normal;
            text-align: left;
            padding-left: 2px;
            min-height: 0px;
        }

            body.print-pdf table.dataTable td.table-button-container {
                text-align: left;
                border-bottom-width: 1px;
            }

                body.print-pdf table.dataTable td.table-button-container .btn {
                    margin: 0.5rem 0;
                }

            body.print-pdf table.dataTable td:before {
                content: "";
            }

@media print {
    .primary-admin-nav,
    .secondary-admin-nav,
    header.header,
    .page-action-container,
    .page-navigation-container,
    .btn,
    button,
    input[type=button],
    .filter-search,
    .dataTables_paginate {
        display: none !important;
        visibility: hidden !important;
        height: 0px !important;
        width: 0 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        overflow: hidden !important;
    }

    table.dataTable {
        zoom: 1;
        border-collapse: separate;
        font-size: 12px;
        line-height: 14px;
    }

        table.dataTable th {
            padding: 2px;
        }

        table.dataTable td {
            padding: 2px;
        }
}


/* April 2016 Changes - AK (Revium) */

.read-more a,
.read-less a {
    display: block;
    margin: 10px 0;
}

.two-col-summary .quarter {
    width: 47.5%;
}

.two-col-summary > h1 {
    margin-bottom: 0;
}

@media screen and (max-width: 720px) {
    .two-col-summary {
        width: 100%;
        border-top: 1px solid gray;
        padding-top: 10px;
    }

        .two-col-summary h1 {
            text-align: left;
        }

        .two-col-summary .quarter {
            width: 100%;
        }

        .two-col-summary .summary-item {
            border: 0;
            margin: 0;
            padding-top: 0;
        }

            .two-col-summary .summary-item:last-child {
                border-bottom: 0;
            }

    .summary-item h1 {
        min-width: 100%;
    }

    .summary-item .dashboard-graph {
        display: inline-block;
    }
}

@media screen and (max-width: 520px) {
    .summary-item h1 {
        width: 100%;
    }
}

.summary-item h1,
.two-col-summary h1 {
    font-size: 16px;
}

    .summary-item h1 i,
    .two-col-summary h1 i {
        color: #781d7e;
    }

.summary-item .dashboard-graph {
    margin-top: 10px;
}

.milestone-legend {
    font-size: 12px;
}

    .milestone-legend li {
        display: inline-block;
    }

    .milestone-legend li {
        margin-right: 10px;
    }

        .milestone-legend li i {
            display: inline-block;
            width: 15px;
        }

body.touch-device .btn:hover,
body.touch-device button:hover,
body.touch-device input[type="submit"]:hover,
body.touch-device input[type="button"]:hover {
    background: #781d7e;
    outline: none;
}

select.disabled {
    background-color: #EBEBE4 !important;
    color: #545454 !important;
}

#divNotes p {
    background-color: #EBEBE4 !important;
    color: #545454 !important;
    border: 1px solid gray;
    padding: 0.5rem 0.65rem;
}

/*------------------------------------*\
    July 2016 Changes - CV (Revium)
    - Make Dashboard graphs responsive
\*------------------------------------*/

.dashboard-graph canvas {
    max-width: 150px;
    max-height: 150px;
}


.summary-item .dashboard-graph span {
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

@media screen and (min-width: 721px) and (max-width: 899px) {
    .summary-item .dashboard-graph span.progress-number span {
        font-size: 20px;
        line-height: 25px;
    }
    .summary-item .dashboard-graph span {
        width: 80px;
        height: 80px;
    }
}

#annualGraph-3 {
    margin-bottom: 20px;
}

@media (max-width: 720px) {

    .summary-item .dashboard-graph span.progress-number {
        background: #fff;
    }

    .two-col-summary h1 {
        float: left;
    }

    .two-col-summary .summary-item {
        padding-right: 60px;
        float: left;
    }

    .summary-item .dashboard-graph.graph-1 {
        float: right;
        margin-top: -15px !important;
        margin-right: -60px;
        margin-bottom: 0 !important;
    }

    .dashboard-graph.graph-2 {
        margin-top: 0 !important;
    }

    .summary-item h1 {
        float: left;
        width: auto;
    }

    .summary-item .dashboard-graph {
        margin-top: 0 !important;
    }

}

/* Add bullets points styles */
td ul,
ul.add-bullets,
.add-bullets ul {
    margin: 20px;
    list-style: disc;
}

td ol,
ol.add-bullets,
.add-bullets ol {
    margin: 20px;
    list-style: decimal;
}


.summary-item {
    position: relative;
}
@media screen and (max-width: 720px) {
    .summary-item .dashboard-graph {
        display: inline-block;
        position: absolute;
        right: 0;
        margin: 0 !important;
        top: 15px;
    }
}

#fileupload table tbody.files .name * {
    width: 100%;
}

@media screen and (max-width: 768px) {
    #fileupload table tbody.files tr ~ tr {
        border-top: 1px solid gray;
    }
    #fileupload table tbody.files tr td,
    #fileupload table tbody.files tr td.name,
    #fileupload table tbody.files tr td.evidenceName,
    #fileupload table tbody.files tr td.start,
    #fileupload table tbody.files tr td.size,
    #fileupload table tbody.files tr td.delete,
    #fileupload table tbody.files tr td.cancel {
        display: block;
        width: 100%;
        padding: 5px;
        border: 0;
    }
    #fileupload table tbody.files tr td:empty {
        padding: 0;
    }
    #fileupload table tbody.files td.name * {
        display: block;
        width: 100%;
    }
    #fileupload table tbody.files tr td.delete .btn span,
    #fileupload table tbody.files tr td.cancel .btn span {
        display: inline-block;
    }

    .start .progress {
        background: rgba(0,0,0,0.05); /* Adds light grey background color to bar to show something is there */
    }
}

/* Added by Revium - AK 17.06.22 */
.progress-item {
    text-align: left;
}
.progress-item .dashboard-activity-list li i {
    text-align: left;
    width: 25px;
}
.summary-item .dashboard-graph span.progress-number span {
    text-align: center;
}
.progress-item-double.half {

}
.dashboard-activity-list li i, .dashboard-activity-list li span {
    width: calc(100% - 25px);
}

@media screen and (min-width: 721px) {
    .col-no-margins-wrapper .cf > .col-no-margins.col.half {
        width: 50%;
        margin-left: 0;
    }

    .col-no-margins-wrapper .cf > .col-no-margins.col.quarter {
        width: 25%;
        margin-left: 0;
    }
}

.col-no-margins .dashboard-graph {
    margin: 0;
    margin-right: 10px;
    max-width: 165px;
}

.dashboard-graph, .progress-item {
    margin-bottom: 20px;
}

.dashboard-graph canvas {
    max-width: 165px;
    max-height: 165px;
}

.button i {
    margin-right: 3px;
}

.manageParticipantsDivider {
    height: 2px;
    width: 100%;
    background: gray;
    display: inline-block;
    margin: 2em 0;
    position: relative;
}


/* Added by Revium - AK 17.09.18 */
table#participantTable.dataTable tr td {
	word-break: break-word;
}
table#participantTable.dataTable tr td:first-child, /* College ID */
table#participantTable.dataTable tr td:nth-last-child(3), /* Start date */
table#participantTable.dataTable tr td:nth-last-child(2), /* End date */
table#participantTable.dataTable tr td:nth-last-child /* Submit button */ {
	word-break: normal;
}