html,
body {
    margin: 0px;
    padding: 0px;
    font-family: 'Source Sans Pro', sans-serif;
    width: 100%;
    background-color: #ececec;
    min-height: 100%;
    min-width: 100%;
    height: 10px;
}



a.brand-link,
.brand-link {
    font-size: 18px;
    color: #FFF;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color:#00adbb;
    border: none;
    width: auto;
    padding: 10px 30px;
    padding-right: 37px;
    border-radius: 40px;
    text-decoration: none;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    position: relative;
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
}

a.brand-link:before,
.brand-link:before {
    content: '\0221F';
    background-color: #333333;
    width: 33px;
    height: 33px;
    position: absolute;
    border-radius: 20px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
    right: -10px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    padding-left: 2px;
    padding-top: 2px;
    -webkit-transition: background-color 0.4s ease, right 0.4s ease;
    transition: background-color 0.4s ease, right 0.4s ease;
}

a.brand-link:after,
.brand-link:after {
    content: '';
    background-color: #333333;
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 20px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    top: -0px;
    right: -18px;
    -webkit-transition: background-color 0.4s ease, right 0.4s ease;
    transition: background-color 0.4s ease, right 0.4s ease;
}

a.brand-link:hover,
.brand-link:hover {
    background-color: #333333;
}

a.brand-link:hover:before,
.brand-link:hover:before {
    right: -15px;
    background-color:#00adbb;
}

a.brand-link:hover:after,
.brand-link:hover:after {
    background-color:#00adbb;
    right: -26px;
}

a.brand-link.disabled,
.brand-link.disabled {
    pointer-events: none;
    background-color: #cbcbcb;
}

a.brand-link.disabled:after,
.brand-link.disabled:after {
    pointer-events: none;
    background-color: #999;
}

a.brand-link.disabled:before,
.brand-link.disabled:before {
    pointer-events: none;
    background-color: #999;
}

.text_right {
    text-align: right !important;
}

.s.text_right {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.app_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 175px;
    min-height: calc(100% - 175px);
    position: relative;
    overflow: hidden;
}

.app_wrapper .top {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 155px;
    background-color: #333333;
    font-size: 16px;
    color: #fff;
}

.app_wrapper .top .left {
    display: inline-block;
    padding: 30px;
    width: calc(50% - 60px);
    height: calc(100% - 60px);
    text-align: left;
    vertical-align: middle;
}

.app_wrapper .top .right {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 30px;
    width: calc(50% - 60px);
    height: calc(100% - 60px);
    text-align: right;
    vertical-align: middle;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.app_wrapper a.logo {
    display: inline-block;
    background-image: url(/images/B2S_logo_reversed_white.png);
    width: 93px;
    height: 100%;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.app_wrapper .nav {
    display: inline-block;
    vertical-align: middle;
    padding-left: 40px;
}

.app_wrapper .nav a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    margin-left: 10px;
    margin-right: 10px;
}

.app_wrapper .nav a:hover,
.app_wrapper .nav a.active {
    color:#00adbb;
}

.app_wrapper .highlight_links {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
}

.app_wrapper .searchbar {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: inline-block;
    vertical-align: middle;
    padding-right: 30px;
    position: relative;
}

.app_wrapper .searchbar .searchbox {
    display: inline-block;
    width: calc(100% - 32px - 4px);
    padding: 10px 16px;
    border-radius: 30px;
    background-color: #1e4e66;
    color: #adb2b7;
    font-size: 14px;
    border: 2px solid #adb2b7;
    position: relative;
}

.app_wrapper .searchbar .searchicon {
    display: inline-block;
    position: absolute;
    background-image: url(/images/search_icon.png);
    border: none;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 11px;
    right: 45px;
    background-color: transparent;
    cursor: pointer;
}

.app_wrapper .box .searchbar {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: inline-block;
    vertical-align: middle;
    padding-right: 30px;
    position: relative;
    width: 100%;
}

.app_wrapper .box .searchbar .searchbox {
    display: inline-block;
    width: calc(100% - 32px - 4px);
    padding: 10px 16px;
    border-radius: 4px;
    background-color: #fff;
    color: #333333;
    font-size: 14px;
    border: 2px solid #adb2b7;
    position: relative;
}

.app_wrapper .box .searchbar .searchicon {
    display: inline-block;
    position: absolute;
    background-image: url(/images/search_icon.png);
    border: none;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 11px;
    right: 45px;
    background-color: transparent;
    cursor: pointer;
}

.app_wrapper .highlight_links a {
    background-color:#00adbb;
    color: #333333;
    padding: 6px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    margin-left: 20px;
    font-weight: 500;
    -webkit-transition: 0.4s ease background-color;
    transition: 0.4s ease background-color;
}

.app_wrapper .highlight_links a.bold {
    font-weight: 700;
}

.app_wrapper .highlight_links a:hover,
.app_wrapper .highlight_links a.active {
    background-color: #fff;
}

.app_wrapper .subbar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 44px;
    background-color: #ececec;
    opacity: 1;
    -webkit-transition: 0.4s ease opacity;
    transition: 0.4s ease opacity;
}

.app_wrapper .subbar .left {
    display: inline-block;
    padding: 13px 30px;
    width: calc(50% - 60px);
    height: calc(100% - 26px);
    text-align: left;
    vertical-align: middle;
    background-color:#00adbb;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.app_wrapper .subbar .right {
    display: inline-block;
    padding: 13px 30px;
    width: calc(50% - 60px);
    height: calc(100% - 26px);
    text-align: right;
    vertical-align: middle;
    background-color: #fff;
    font-size: 14px;
    color: #333333;
}

.app_wrapper .subbar .right a {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
}

.app_wrapper .subbar .right a.bold {
    font-weight: 700;
}

.app_wrapper .subbar .right a:hover,
.app_wrapper .subbar .right a.active {
    color:#00adbb;
}

.app_wrapper .workspace {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    opacity: 1;
    -webkit-transition: 0.4s ease opacity;
    transition: 0.4s ease opacity;
}

.app_wrapper .workspace .section_wrapper {
    width: calc(100% - 60px);
    max-width: 1560px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.app_wrapper .workspace .toggled_content {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    position: relative;
}

.app_wrapper .workspace .toggled_content .section_wrapper {
    pointer-events: none;
    position: absolute;
    z-index: 3;
    opacity: 0;
}

.app_wrapper .workspace .toggled_content .section_wrapper.active {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    z-index: 6;
    pointer-events: all;
    position: relative;
    opacity: 1;
}

.app_wrapper .workspace .section_wrapper.work_top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 20px;
}

.app_wrapper .workspace .section_wrapper .left {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.app_wrapper .workspace .section_wrapper .right {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}

.app_wrapper .workspace .section_wrapper.work_top .left {
    padding-right: 30px;
    display: inline-block;
    vertical-align: middle;
}

.app_wrapper .workspace .section_wrapper.work_top .section_icon {
    display: inline-block;
    width: 61px;
    height: 61px;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #333333;
    border-radius: 61px;
    vertical-align: middle;
}

.app_wrapper .workspace .section_wrapper.work_top .section_heading {
    display: inline-block;
    padding-left: 18px;
    font-size: 16px;
    vertical-align: middle;
}

.app_wrapper .workspace .section_wrapper.work_top .section_heading h1 {
    font-size: 30px;
    padding: 0px;
    margin: 0px;

    font-weight: 600;
}

.app_wrapper .workspace .section_wrapper.work_top .right {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: inline-block;
}

.app_wrapper .workspace a.linkbox {
    font-size: 14px;
    font-weight: 500;
    color: #778085;
    text-decoration: none;
    padding: 8px 22px;
    background-color: #fff;
    border-radius: 25px;
    margin-left: 10px;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(39, 70, 71, 0.25);
    box-shadow: 0px 2px 6px 0px rgba(39, 70, 71, 0.25);
    -webkit-transition: 0.4s ease color, 0.4s ease background-color;
    transition: 0.4s ease color, 0.4s ease background-color;
    display: inline-block;
    vertical-align: middle;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    cursor: pointer;
}

.app_wrapper .workspace a.linkbox.green {
    background-color:#00adbb;
    color: #fff;
}

.app_wrapper .workspace a.linkbox.red {
    background-color: #e55050;
    color: #fff;
}

.app_wrapper .workspace a.newprescription {
    position: relative;
    padding-left: 40px !important;
}

.app_wrapper .workspace a.newprescription:before {
    content: '';
    background-image: url(/images/icon_prescription_new.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.app_wrapper .workspace a.questionnaire {
    position: relative;
    padding-left: 40px !important;
}

.app_wrapper .workspace a.questionnaire:before {
    content: '';
    background-image: url(/images/icon_questionnaire.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.app_wrapper .workspace a.questionnaire_request {
    position: relative;
    padding-left: 40px !important;
}

.app_wrapper .workspace a.questionnaire_request:before {
    content: '';
    background-image: url(/images/icon_questionnaire_request.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.app_wrapper .workspace a.repeatprescription {
    position: relative;
    padding-left: 40px !important;
}

.app_wrapper .workspace a.repeatprescription:before {
    content: '';
    background-image: url(/images/icon_prescription_repeat.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.app_wrapper .workspace a.edit {
    position: relative;
    padding-left: 40px !important;
}

.app_wrapper .workspace a.edit:before {
    content: '';
    background-image: url(/images/icon_edit.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.app_wrapper .workspace a.add {
    position: relative;
    padding-left: 40px !important;
}

.app_wrapper .workspace a.add:before {
    content: '';
    background-image: url(/images/icon_add.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.app_wrapper .workspace a.view {
    position: relative;
    padding-left: 40px !important;
}

.app_wrapper .workspace a.view:before {
    content: '';
    background-image: url(/images/icon_view.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.app_wrapper .workspace a.linkbox:hover,
.app_wrapper .workspace a.linkbox.active {
    background-color: #333333;
    color: #fff;
}

.app_wrapper .workspace .dark a.linkbox {
    border: solid 1px #fff;
}

.app_wrapper .workspace .dark a.linkbox.green {
    border: solid 1px#00adbb;
}

.app_wrapper .workspace a.interact {
    text-decoration: none;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.app_wrapper .workspace a.interact:after {
    content: '\2807';
    font-size: 20px;
    text-transform: none;
    color: #dcdcdc;
    text-decoration: none;
    -webkit-transform: rotate(90deg) translateY(-50%);
    transform: rotate(90deg) translateY(-50%);
    display: inline-block;
    position: absolute;
    top: -8px;
    left: -2px;
    -webkit-transform-origin: left;
    transform-origin: left;

}

.app_wrapper .workspace a.interact:hover:after {
    color: #cbcbcb;
}


.app_wrapper .workspace .section_wrapper .box {
    background-color: #fff;
    color: #333333;
    font-size: 14px;
    text-align: left;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 27px 0px rgba(1, 1, 1, 0.15);
    box-shadow: 0px 0px 27px 0px rgba(1, 1, 1, 0.15);
    margin-top: 30px;
}

.app_wrapper .workspace .section_wrapper .s .box + .box {
    margin-top: 30px;
}

.app_wrapper .workspace .section_wrapper .box .box + .box {
    margin-top: 10px;
}

.app_wrapper .workspace .progress {
    width: calc(100% + 60px);
    left: -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: relative;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 50px;
    overflow: hidden;
}

.app_wrapper .workspace .progress:after {
    content: '';
    z-index: 1;
    position: absolute;
    left: 0px;
    top: 26px;
    height: 7px;
    background-color: #dcdcdc;
    display: inline-block;
    width: 100%;
}

.app_wrapper .workspace .progress .milestone {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #dcdcdc;
    position: relative;
}

.app_wrapper .workspace .progress .milestone.complete {
    color:#00adbb;
}

.app_wrapper .workspace .progress .milestone .icon {
    width: 56px;
    height: 56px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #dcdcdc;
    border-radius: 100px;
    margin-bottom: 10px;
    z-index: 10;
}

.app_wrapper .workspace .progress .milestone.complete .icon {
    background-color:#00adbb;
}

.app_wrapper .workspace .progress .milestone.complete:after {
    content: '';
    width: 100vw;
    height: 7px;
    position: absolute;
    right: 55px;
    top: 26px;
    display: inline-block;
    z-index: 2;
    background-color:#00adbb;
}

.app_wrapper .s {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 25px;
    vertical-align: top;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.app_wrapper .box .s {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.app_wrapper .right_edging {
    padding-right: 12px;
    margin-right: 12px;
    border-right: solid 1px #dcdcdc;
}


.app_wrapper .s.s10 {
    width: calc(10% - 25px);
}
.app_wrapper .s.s15 {
    width: calc(15% - 25px);
}

.app_wrapper .s.s25 {
    width: calc(25% - 25px);
}

.app_wrapper .s.s33 {
    width: calc(33% - 25px);
}

.app_wrapper .s.s50 {
    width: calc(50% - 14px);
}
.app_wrapper .s.s85 {
    width: calc(85% - 25px);
}
.app_wrapper .s.s100 {
    width: calc(100%);
    margin-right: 0px;
    display: block;
}

.app_wrapper .s.s75 {
    width: calc(75% - 25px);
}

.app_wrapper .s.s66 {
    width: calc(66%);
}

.app_wrapper .s > .s:last-child {
    margin-right: 0px;
    margin-bottom: 0px;
}

.app_wrapper .section_wrapper .s:last-child {
    margin-left: 0px;
    margin-right: 0px;
}

.app_wrapper .section_wrapper .s .s {
    margin-bottom: 10px;
}

.app_wrapper .section_wrapper .s .s:last-child {
    margin-bottom: 0px;
}

.app_wrapper .workspace .section_wrapper .main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.app_wrapper .workspace .section_wrapper .content_area {
    padding: 30px;
    text-align: left;
    border-top: solid 2px #dbdbdb;
    position: relative;
    width: calc(100% - 60px);
}

.app_wrapper .workspace .section_wrapper .content_area h1 {
    font-size: 24px;
    padding: 0px;
    margin: 0px;
    font-weight: 700;
    padding-bottom: 10px;
    width: 100%;
}

.app_wrapper .workspace .section_wrapper .content_area .interaction {
    position: absolute;
    top: 20px;
    right: 20px;
}

.app_wrapper .workspace .section_wrapper .content_area .interaction a {
    text-decoration: none;
    color: #778085;
}

.app_wrapper .workspace .section_wrapper .content_area .interaction a.interact:after {
    content: '\2807';
    font-size: 26px;
    text-transform: none;
    color: #dcdcdc;
    text-decoration: none;
    -webkit-transform: none;
    transform: none;
    position: relative;
    left: 10px;
    top: -10px;
}

.app_wrapper .workspace .section_wrapper .content_area .interaction a:hover:after {
    color: #cbcbcb;
}

.app_wrapper .workspace .section_wrapper .content_area form select {
    border: none;
    width: calc(100% + 12px);
    left: -6px;
    position: relative;
    margin-top: 4px;
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    color: #333333;
    font-weight: 700;
    padding: 0px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 2px;
    padding-right: 2px;
    cursor: pointer;
    background-color: #fff;
    -webkit-transition: 0.4s ease background-color;
    transition: 0.4s ease background-color;
    border-radius: 3px;
}

.app_wrapper .workspace .section_wrapper .content_area form select:hover {
    background-color: #ececec;
    cursor: pointer;
}

.app_wrapper .workspace .section_wrapper .content_area form select option {
    cursor: pointer;
    font-size: 14px;
}

.app_wrapper .workspace .section_wrapper table.form_table {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
    table-layout: fixed;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td {
    padding-right: 10px;
    position: relative;
    padding-bottom: 5px;
    padding-top: 5px;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td:last-child {
    padding-right: 0px;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type=text],
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type=email],
.app_wrapper .workspace .section_wrapper table.form_table tr td textarea,
.app_wrapper .workspace .section_wrapper table.form_table tr td select,
.app_wrapper .workspace .section_wrapper input[type=text],
.app_wrapper .workspace .section_wrapper input[type=password],
.app_wrapper .workspace .section_wrapper input[type=date],
.app_wrapper .workspace .section_wrapper input[type=number],
.app_wrapper .workspace .section_wrapper input[type=email] {
    width: calc(100% - 20px - 4px);
    border: 2px solid #adb2b7;
    color: #333333;
    font-size: 14px;
    text-align: left;
    padding: 10px;
    border-radius: 3px;
    font-weight: 400;
    vertical-align: middle;
    display: inline-block;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td label span {
    display: block;
    font-size: 12px;
}

/* Base for label styling */
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:not(:checked),
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:checked {
    position: absolute;
    left: -9999px;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:not(:checked),
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:checked {
    position: absolute;
    left: -9999px;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:not(:checked) + label,
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: #333333;
    font-size: 14px;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:not(:checked) + label,
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: #333333;
    font-size: 14px;
}

/* checkbox aspect */
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:not(:checked) + label:before,
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.5em;
    height: 1.5em;
    border: 2px solid #adb2b7;
    background: #fff;
    border-radius: 4px;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:not(:checked) + label:before,
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.5em;
    height: 1.5em;
    border: 2px solid #adb2b7;
    background: #fff;
    border-radius: 90px;
}

/* checked mark aspect */
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:not(:checked) + label:after,
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:checked + label:after {
    content: '\2713\0020';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: .30em;
    font-size: 1.3em;
    line-height: 0.8;
    color: #333333;
    font-weight: 600;
    -webkit-transition: all .2s;
    transition: all .2s;
    font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:not(:checked) + label:after,
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:checked + label:after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 5px;
    background-color: #333333;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    -webkit-transition: all .2s;
    transition: all .2s;
}

/* checked mark aspect changes */
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:not(:checked) + label:after {
    opacity: 0;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:not(:checked) + label:after {
    opacity: 0;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:checked + label:after {
    opacity: 1;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:checked + label:after {
    opacity: 1;
}

/* disabled checkbox */
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:disabled:not(:checked) + label:before,
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:disabled:checked + label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:disabled:not(:checked) + label:before,
.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:disabled:checked + label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:disabled:checked + label:after {
    color: #999;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="checkbox"].styled:disabled + label {
    color: #aaa;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:disabled:checked + label:after {
    color: #999;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td input[type="radio"].styled:disabled + label {
    color: #aaa;
}


.app_wrapper .workspace .section_wrapper table.form_table tr td label {
    display: inline-block;
    padding-left: 4px;
    vertical-align: middle;
    font-size: 14px;
    padding-bottom: 2px;
}

.app_wrapper .workspace .section_wrapper label {
    display: inline-block;
    padding-left: 0px;
    vertical-align: middle;
    font-size: 14px;
    padding-bottom: 2px;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td select {
    left: 0px;
    position: relative;
    width: 100%;
}

.app_wrapper .workspace .section_wrapper table.form_table tr td select:hover {
    background-color: transparent;
}


.app_wrapper .workspace .section_wrapper table.large_table {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    border-spacing: 0px;
    border-collapse: collapse;
}

.app_wrapper .workspace .section_wrapper table.large_table thead tr th {
    color: #9ea3a7;
    font-size: 12px
}

.app_wrapper .workspace .section_wrapper table.large_table tr th,
.app_wrapper .workspace .section_wrapper table.large_table tr td {
    font-size: 12px;
    border-bottom: 1px solid #e4e4e4;
    padding: 6px;
    color: #333333;
}

.app_wrapper .workspace .section_wrapper table.large_table tr th.bold,
.app_wrapper .workspace .section_wrapper table.large_table tr td.bold {
    font-weight: 700;
}

.app_wrapper .workspace .section_wrapper table.info_table {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.app_wrapper .workspace .section_wrapper h1 ~ table.info_table {
    margin-top: 0px;
}

.app_wrapper .workspace .section_wrapper h1 ~ table.large_table {
    margin-top: 0px;
}

.app_wrapper .workspace .section_wrapper table.info_table tbody {
    width: 100%;

    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.app_wrapper .workspace .section_wrapper table.info_table tr {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.app_wrapper .workspace .section_wrapper table.info_table tr td {
    color: #9ea3a7;
    font-size: 12px;
    border-bottom: 1px solid #e4e4e4;
    padding: 15px;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;

    width: 100%;

    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.app_wrapper .workspace .section_wrapper .content_area:first-child {
    border: none;
}

.app_wrapper .workspace .section_wrapper table.info_table tr td:first-child {
    margin-left: 0px;
}

.app_wrapper .workspace .section_wrapper table.info_table tr td:last-child {
    margin-right: 0px;
}

.app_wrapper .workspace .section_wrapper table.info_table tr:last-child td {
    border-bottom: 0px;
}

.app_wrapper .workspace .section_wrapper .content_area h2 {
    font-size: 15px;
    padding: 0px;
    margin: 0px;
    color: #333333;
    width: 100%;
}

.app_wrapper .workspace .section_wrapper .box.dark {
    color: #fff;
    background-color: #333333;
}

.app_wrapper .workspace .section_wrapper .box.dark h1 {
    color:#00adbb;
}

.app_wrapper .workspace .section_wrapper .box.dark h2 {
    color: #fff;
}

.app_wrapper .workspace .section_wrapper .box.dark h2.green {
    color:#00adbb;
}

.app_wrapper .workspace .section_wrapper .doc_review {
    background-color: #333333;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.app_wrapper .workspace .section_wrapper .doc_review .document {
    padding: 30px;
    margin: 30px;
    display: inline-block;
    background-color: #fff;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
}

/* -- listed_item -- */
.app_wrapper .workspace .section_wrapper .listed_item {
    margin-top: 7px;
    margin-bottom: 7px;
    padding: 8px;
    width: calc(100% - 16px);
    text-align: left;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

}

.app_wrapper .workspace .section_wrapper .listed_item .content_area {
    padding: 0px;
    width: 100%;
}

.app_wrapper .workspace .section_wrapper .disabled {
    pointer-events: none;
    opacity: 0.5;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.app_wrapper .workspace .section_wrapper .listed_item .col {
    padding-right: 8px;
}

.app_wrapper .workspace .section_wrapper .listed_item .col.scale {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.app_wrapper .workspace .section_wrapper .listed_item .col:last-child {
    padding-right: 0px;
}

.app_wrapper .workspace .section_wrapper .listed_item .col h3 {
    font-size: 14px;
    padding: 0px;
    margin: 0px;
}


.app_wrapper .workspace .section_wrapper .latest_note {
    display: inline-block;
    background-color: #ececec;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.app_wrapper .workspace .section_wrapper .latest_note .note_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 40px);
    padding: 20px;
    border-bottom: 1px #d6d6d6 solid;
    background-color: #ececec;
    color: #333333;
    font-size: 14px;
}

.app_wrapper .workspace .section_wrapper .latest_note .note_top .date {

    font-weight: 600;
    display: inline-block;
    width: 50%;
}

.app_wrapper .workspace .section_wrapper .latest_note .note_top .author {

    font-weight: 400;
    display: inline-block;
    width: 50%;
    text-align: right;
}

.app_wrapper .workspace .section_wrapper .latest_note .content {
    padding: 20px;
    width: calc(100% - 40px);
    text-align: left;
    min-height: 70px;
}

/* -- form stuff -- */

.app_wrapper .content_area textarea {
    width: calc(100% - 20px - 4px);
    border: 2px solid #adb2b7;
    color: #333333;
    font-size: 14px;
    text-align: left;
    padding: 10px;
    margin-top: 10px;

}


/* -- status icons -- */

.status_wrap {
    display: inline-block;
    width: 40px;
    position: relative;
    padding-left: 25px;
    text-align: left;
    vertical-align: middle;
    padding-right: 40px;
}

.status_wrap .status_circ {
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.status_wrap h5 {
    padding: 0px;
    margin: 0px;
    font-size: 12px;
}

.status_wrap .status_circ.green {
    background-color:#00adbb;
}

.status_wrap .status_circ.red {
    background-color: #e55050;
}

.status_wrap .status_circ.yellow {
    background-color: #d6b551;
}

td .status_wrap {
    width: calc(100% - 25px);
    padding-right: 0px;
}

.status_wrap .status_icon {
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.status_icon {
    width: 19px;
    height: 19px;
    border-radius: 30px;
    display: inline-block;
    position: relative;
    background-color: #bec0c1;
    vertical-align: middle;
}

.status_icon:after {
    content: '';
    width: 9px;
    height: 0px;
    top: 50%;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);

    transform: translate(-50%, -50%) rotate(0deg);
}


.status_icon.approved {
    background-color:#00adbb;
}


.status_icon.approved:after {
    content: '';
    width: 7px;
    height: 3px;
    top: 50%;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-52%, -70%) rotate(-45deg);

    transform: translate(-52%, -70%) rotate(-45deg);
}

.status_icon.declined {
    background-color: #e55050;
}

.status_icon.declined:after {
    content: '';
    width: 9px;
    height: 0px;
    top: 50%;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);

    transform: translate(-50%, -50%) rotate(-45deg);
}

.status_icon.declined:before {
    content: '';
    width: 9px;
    height: 0px;
    top: 50%;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);

    transform: translate(-50%, -50%) rotate(45deg);
}

.dark .status_icon:after {
    content: '';
    width: 9px;
    height: 0px;
    top: 50%;
    border-bottom: 2px solid #333333;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);

    transform: translate(-50%, -50%) rotate(0deg);
}


.dark .status_icon.approved:after {
    content: '';
    width: 7px;
    height: 3px;
    top: 50%;
    border-left: 2px solid #333333;
    border-bottom: 2px solid #333333;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-52%, -70%) rotate(-45deg);

    transform: translate(-52%, -70%) rotate(-45deg);
}

.dark .status_icon.declined:after {
    content: '';
    width: 9px;
    height: 0px;
    top: 50%;
    border-bottom: 2px solid #333333;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);

    transform: translate(-50%, -50%) rotate(-45deg);
}

.dark .status_icon.declined:before {
    content: '';
    width: 9px;
    height: 0px;
    top: 50%;
    border-bottom: 2px solid #333333;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);

    transform: translate(-50%, -50%) rotate(45deg);
}



/* -- toggles -- */

.app_wrapper .workspace .section_tog_controls {
    display: inline-block;
    position: relative;
    text-align: center;
    width: 100%;
    vertical-align: middle;
    padding-top: 10px;
    padding-bottom: 20px;
}

.app_wrapper .workspace .section_tog_controls:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #d4d4d4;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.app_wrapper .workspace .section_tog_controls ul.toggles {
    display: inline-block;
    padding: 0px;
    margin: 0px;
    background-color: #d4d4d4;
    font-size: 15px;
    color: #45565e;
    padding: 6px 6px;
    border-radius: 20px;
    position: relative;
    z-index: 4;
}

.app_wrapper .workspace .section_tog_controls ul.toggles li.tog {
    display: inline-block;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    padding: 3px 24px;
    margin-left: 2px;
    margin-right: 2px;
    cursor: pointer;
    border-radius: 15px;
    border: solid 1px #d4d4d4;
    -webkit-transition: 0.4s ease color, 0.6s ease border, 0.2s ease background-color;
    transition: 0.4s ease color, 0.6s ease border, 0.2s ease background-color;
}

.app_wrapper .workspace .section_tog_controls ul.toggles li.tog:hover {
    color: #9fa5a8;
    border: solid 1px #9fa5a8;
}

.app_wrapper .workspace .section_tog_controls ul.toggles li.tog.active {
    background-color: #fff;
    border: solid 1px #fff;
    color: #45565e;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(39, 70, 71, 0.25);
    box-shadow: 0px 2px 6px 0px rgba(39, 70, 71, 0.25);
    cursor: default;
}



/* ------------------ FOOTER ------------------ */
#footer {
    font-family: 'Source Sans Pro', sans-serif;
    display: block;
    width: 100%;
    color: #FFF;
    font-size: 12px;
    height: 175px;
    margin-top: -175px;

}

#footer .left {
    width: calc(50% - 80px);
    display: inline-block;
    float: left;
    background-color: #333333;
    height: calc(100% - 80px);
    padding: 40px;
    line-height: 20px;
}

#footer .left .content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;

}

#footer .left .content .item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

#footer .left .content .item a {
    display: block;
    color: #FFF;
}

#footer .left .content .item a:hover {
    text-decoration: none;
}

#footer .left .content .item h3 {
    font-size: 18px;
    padding-top: 0px;
    margin-top: 0px;
}

#footer .left .content .item.logo {
    width: 215px;
}

#footer .left .content .item.logo a {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url(/images/B2S_logo_reversed_white.png);
    background-repeat: no-repeat;
}

#footer .right {
    width: calc(50% - 80px);
    display: inline-block;
    float: right;
    background-color:#00adbb;
    height: calc(100% - 80px);
    padding: 40px;
    position: relative;
}

#footer .right .copyright {
    position: absolute;
    bottom: 20px;
    right: 28px;
    font-size: 11px;
}

#footer .right .copyright a {
    color: #FFF;
    text-decoration: underline;
}

#footer .right .copyright a:hover {
    text-decoration: none;
}

.hide {
    display: none !important;
}




body .load_div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: stretch;

    -ms-flex-pack: stretch;

    justify-content: stretch;

    -webkit-box-align: stretch;

    -ms-flex-align: stretch;

    align-items: stretch;
    text-align: center;
    height: calc(100% - 117px - 175px);
    top: 117px;
    left: 0px;
    width: 100%;
    position: absolute;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    -webkit-transition: 0.4s ease opacity;
    transition: 0.4s ease opacity;
}

body .load_div .left {
    height: 100%;
    width: 50%;
    background-color: #dcdcdc;

}

body .load_div .right {
    width: 50%;
    height: 100%;
    background-color: #ececec;

}

body .load_div .content {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 400px;
    background-color: #333333;
    color: #fff;
    -webkit-box-shadow: 0px 0px 27px 0px rgba(1, 1, 1, 0.15);
    box-shadow: 0px 0px 27px 0px rgba(1, 1, 1, 0.15);
    text-align: left;
    background-repeat: no-repeat;
    background-position: 15px 50%;
    padding-left: 130px;
    background-image: url(/images/loading-gif.gif);
}

body .load_div .content h2 {
    padding: 0px;
    margin: 0px;
    font-weight: 600;
}

.loading .load_div {
    opacity: 1;
}

.loading .app_wrapper .workspace {
    height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

.loading .app_wrapper .subbar {
    pointer-events: none;
    opacity: 0;
}

@media only screen and (max-width: 1530px) {
    .app_wrapper .nav a {
        font-size: 14px;
    }

    .app_wrapper a.logo {
        width: 200px;
        background-size: contain;
    }

    .app_wrapper .searchbar {
        padding-right: 0px;
    }

    .app_wrapper .searchbar .searchicon {
        right: 15px;
    }

    .app_wrapper .highlight_links a {
        font-size: 14px;
    }

    .app_wrapper .nav {
        padding-left: 10px;
    }

    #footer .left .content .item.logo {
        width: 190px;
    }

    #footer .left .content .item.logo a {
        background-size: contain;
        width: 180px;
        background-repeat: no-repeat;
    }

    #footer .left {
        width: calc(60% - 80px);
    }

    #footer .right {
        width: calc(40% - 80px);
    }


}

@media only screen and (max-width: 1280px) {
    .app_wrapper .highlight_links a:first-child {
        margin-left: 0px;
    }

    .app_wrapper .nav {
        padding-left: 0px;
        display: block;
        padding-top: 8px;
        margin-left: -9px;
    }

    .app_wrapper .searchbar .searchbox {
        width: calc(70% - 32px - 4px);
        padding: 6px 16px;
        font-size: 12px;
    }

    .app_wrapper a.logo {
        height: 51px;
    }

    .app_wrapper .searchbar .searchicon {
        right: 10px;
        top: 6px;
    }

    .app_wrapper .top .left {
        padding: 20px;
        width: calc(50% - 40px);
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .app_wrapper .top .right {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px;
        width: calc(50% - 40px);
    }

    .app_wrapper .searchbar {
        width: calc(100% - 20px);
        padding-left: 20px;
    }

    .app_wrapper .highlight_links {

        padding-top: 20px;
        padding-left: 20px;
        width: calc(100% - 20px);
    }

    .app_wrapper .section_wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .app_wrapper .section_wrapper > .s {
        width: 100% !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .app_wrapper .section_wrapper > .s + .s {
        margin-top: 30px;
    }

}

@media only screen and (max-width: 990px) {
    .app_wrapper .top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
    }

    .app_wrapper .top .left {
        width: calc(100% - 40px);
    }

    .app_wrapper .top .right {
        width: calc(100% - 40px);
        background-color: #1d4f69;
        padding-top: 18px;
        padding-bottom: 25px;
    }

    .app_wrapper .nav {
        display: inline-block;
        vertical-align: middle;
        float: right;
        padding-top: 20px;
    }

    .app_wrapper .nav a {
        font-size: 18px;
    }

    .app_wrapper .searchbar {
        padding-left: 0px;
        width: 100%;
    }

    .app_wrapper .searchbar .searchbox {
        width: calc(100% - 32px - 4px);
        font-size: 24px;
    }

    .app_wrapper .searchbar .searchicon {
        right: 16px;
        top: 13px;
    }

    .app_wrapper .highlight_links {
        text-align: center;
        padding-left: 0px;
        width: 100%;
    }

    .app_wrapper .highlight_links a {
        padding: 8px 30px;
        font-size: 18px;
    }

    .app_wrapper .subbar {
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .app_wrapper .subbar .left {
        width: calc(100% - 60px);
        height: auto;
        font-size: 26px;
        text-align: center;
    }

    .app_wrapper .subbar .right {
        width: calc(100% - 60px);
        height: auto;
        text-align: center;
    }

    .app_wrapper .subbar .right a {
        font-size: 20px;
    }

    .app_wrapper .workspace .section_wrapper.work_top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .app_wrapper .workspace .section_wrapper.work_top .left {
        padding-right: 0px;
        width: 100%;
        text-align: center;
    }

    .app_wrapper .workspace .section_wrapper.work_top .right {
        width: 100%;
        padding: 0px;
        padding-top: 20px;
        text-align: center;
    }

    .app_wrapper .workspace .section_wrapper.work_top .section_heading {
        width: 100%;
        padding: 0px;
        padding-top: 10px;
        font-size: 26px;
    }

    .app_wrapper .workspace .section_wrapper.work_top .section_heading h1 {
        font-size: 50px;
    }

    .app_wrapper .workspace a.linkbox {
        font-size: 20px;
        margin-bottom: 12px;
        cursor: pointer;
    }

    .app_wrapper .workspace .section_tog_controls ul.toggles {
        font-size: 20px;
        border-radius: 40px;
    }

    .app_wrapper .workspace .section_tog_controls ul.toggles li.tog {
        border-radius: 40px;
    }

    .app_wrapper .workspace .section_wrapper table.info_table tr td,
    .app_wrapper .workspace .section_wrapper label {
        font-size: 18px;
    }

    .app_wrapper .workspace .section_wrapper .content_area h2,
    .app_wrapper .workspace .section_wrapper .content_area form select {
        font-size: 24px;
    }

    .app_wrapper .workspace .section_wrapper table.large_table tr th,
    .app_wrapper .workspace .section_wrapper table.large_table tr td {
        font-size: 20px;
    }

    .app_wrapper .workspace .section_wrapper table.large_table thead tr th {
        font-size: 15px;
    }

    .app_wrapper .workspace .section_wrapper .box {
        font-size: 20px;
    }

    .app_wrapper .workspace .section_wrapper .listed_item .col h3 {
        font-size: 22px;
    }

    #footer {
        height: 270px;
        margin-top: -270px;
    }

    .app_wrapper {
        padding-bottom: 270px;
        min-height: calc(100% - 270px);
    }

    #footer .left {
        width: calc(100% - 80px);
        height: 140px;
    }

    #footer .right {
        width: calc(100% - 20px);
        height: 30px;
        padding: 10px;
    }
}
