/*

    Use '@include grid(12, 2)' to make a column.
    The first unit (12) is the column width.
    The second unit (2) is the margin on both sides.
    The margin will be auto substracted from the column width.
    So don't recalculate the column width if you change your margin.

    To set different margins on both sides use '@include grid(12, 2, 3)'.
    You can also use negative margins.

*/
/* Use this mixin to reset your grid by example for your mobile articles */
/* The clearfix mixin is necessary for the floats */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.container {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
  *zoom: 1;
}
.container:before, .container:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
.container:after {
  clear: both;
}
@media (min-width: 600px) {
  .container {
    padding-left: 70px;
  }
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  background: gray;
  color: white;
  text-shadow: none;
}

::selection {
  background: gray;
  color: white;
  text-shadow: none;
}

@font-face {
  font-family: 'noto_serifregular';
  src: url(/content/font/c7/notoserif-regular.eot);
  src: url(/content/font/c7/notoserif-regular.eot?#iefix) format("embedded-opentype"), url(/content/font/c7/notoserif-regular.woff) format("woff"), url(/content/font/c7/notoserif-regular.ttf) format("truetype"), url(/content/font/c7/notoserif-regular.svg#noto_serifregular) format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Batch';
  src: url(/content/font/c7/batch-icons.eot);
  src: url(/content/font/c7/batch-icons.eot?#iefix) format("embedded-opentype"), url(/content/font/c7/batch-icons.woff) format("woff"), url(/content/font/c7/batch-icons.ttf) format("truetype"), url(/content/font/c7/batch-icons.svg#batchregular) format("svg");
  font-weight: normal;
  font-style: normal;
}
html {
  height: 100%;
  position: relative;
  color: #666666;
  font: 300 14px Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  height: 100%;
  background: #f9f9f9;
  line-height: 1.5em;
  padding-top: 5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', sans-serif;
  font-weight: normal;
  line-height: 1.5em;
  margin: 0 0 .25em 0;
}

h1 {
  font-size: 1.429rem;
  font-weight: 500;
  margin: .75em .79em;
}

h2 {
  font-size: 1.4em;
}

h3 {
  font-size: 1.2em;
}

h4 {
  font-size: 1.05em;
}

p {
  margin-bottom: 1.25em;
}
p.lead {
  font-size: 1.2em;
  line-height: 1.5em;
}

a {
  color: #fff;
  font-weight:500;
  text-decoration: underline;
}

small {
  font-size: .85em;
  color: #b3b3b3;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

code, pre {
  font-family: 'Work Sans', sans-serif;
}

abbr {
  border-bottom: 1px dotted #e6e6e6;
}

del {
  text-decoration: line-through;
}

mark {
  background-color: #FBF2D1;
}

hr {
  background-color: transparent;
  border: solid #eaeaea;
  border-width: 1px 0 0;
  clear: both;
  margin: 1.25em 0;
}

blockquote {
  quotes: none;
  color: #b3b3b3;
  font: italic 1.2em Georgia, serif;
  line-height: 1.5em;
  margin-bottom: 1.25em;
  padding: 0 0 0 2em;
  position: relative;
}
blockquote:before {
  color: #bfbfbf;
  content: "\201C";
  display: block;
  font-size: 4em;
  left: -.15em;
  position: absolute;
  top: .25em;
}
blockquote cite {
  color: #bfbfbf;
  display: block;
  font-size: .85em;
}
blockquote cite:before {
  content: "\2014 \0020";
}

figure {
  display: inline-block;
  margin-bottom: 1.25em;
  width: 100%;
}
figure.figure-left {
  clear: left;
  float: left;
  padding-right: 1.25em;
  width: 50%;
}
figure.figure-right {
  clear: right;
  float: right;
  padding-left: 1.25em;
  width: 50%;
}
figure img {
  display: block;
  width: 100%;
}
figure figcaption {
  color: #17364E;
}

ul, ol {
  margin: 0 0 1.25em 1.5em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

dl {
  margin-bottom: 1.25em;
}
dl dt,
dl dd {
  margin-bottom: 1.25em;
}
dl dt {
  float: left;
  width: 39.58333%;
  margin-left: 0%;
  margin-right: 2.08333%;
  clear: both;
}
dl dd {
  float: left;
  width: 58.33333%;
  margin-left: 0%;
  margin-right: 0%;
  font-weight: bold;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.is-hidden {
  display: none !important;
}

.is-hidden, .is-invisible {
  visibility: hidden !important;
}

.is-active, .is-visible {
  display: block !important;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.modal-open {
  overflow: hidden;
}

.l-full,
.l-two-third,
.l-half,
.l-one-third {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
  padding: 1.5em;
}
@media (min-width: 768px) {
  .l-full,
  .l-two-third,
  .l-half,
  .l-one-third {
    padding: 2em;
  }
}

@media (min-width: 768px) {
  .l-two-third {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: 0%;
  }
}

@media (min-width: 768px) {
  .l-half {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
  }
}

@media (min-width: 768px) {
  .l-one-third {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: 0%;
  }
}

.l-first {
  clear: left;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=text],
input[type=number],
input[type=password],
input[type=search],
input[type=email],
input[type=tel],
input[type=url],
textarea {
  -webkit-appearance: none;
}

input[type=text],
input[type=number],
input[type=password],
input[type=search],
input[type=email],
input[type=tel],
input[type=url],
textarea,
select {
  border: 1px solid #f5f5f5;
  border-radius: 0.25em;
  background: #f5f5f5;
  color: #666666;
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: inherit;
  height: 2.75em;
  line-height: 1.5em;
  margin: 0;
  padding: 0.6em;
  vertical-align: baseline;
  width: 100% !important;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: border 0.1s;
  transition: border 0.1s;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  border: 1px solid #84c2e6;
  background: white;
  box-shadow: 0px 0px 4px rgba(0, 93, 181, 0.3);
  color: #666666;
  outline: 0;
}
input[type=text].w25, input[type=text].w50,
input[type=number].w25,
input[type=number].w50,
input[type=password].w25,
input[type=password].w50,
input[type=search].w25,
input[type=search].w50,
input[type=email].w25,
input[type=email].w50,
input[type=tel].w25,
input[type=tel].w50,
input[type=url].w25,
input[type=url].w50,
textarea.w25,
textarea.w50,
select.w25,
select.w50 {
  display: block;
  float: left;
  margin-right: 2%;
}
input[type=text].w25,
input[type=number].w25,
input[type=password].w25,
input[type=search].w25,
input[type=email].w25,
input[type=tel].w25,
input[type=url].w25,
textarea.w25,
select.w25 {
  width: 23% !important;
}
input[type=text].w50,
input[type=number].w50,
input[type=password].w50,
input[type=search].w50,
input[type=email].w50,
input[type=tel].w50,
input[type=url].w50,
textarea.w50,
select.w50 {
  width: 48% !important;
}

input[type=file] {
  font-family: 'Work Sans', sans-serif;
  font-size: inherit;
  margin-top: 0.75em;
  width: 100%;
}

select {
  height: 2.85em;
  line-height: 2.85em;
}

textarea {
  display: block;
  overflow: auto;
  resize: vertical;
  vertical-align: top;
}

form ul.messages {
  margin-bottom: 3em;
}
form ul.messages li {
  background: #fdecee;
  border: 0;
  border-radius: 0.25em;
  color: #ee3f52;
}

legend {
  color: #666666;
  font-family: 'Work Sans', sans-serif;
  font-weight: normal;
  line-height: 1.5em;
  font-size: 1.2em;
  margin-bottom: 1.25em;
}

ul.form {
  clear: both;
  list-style: none;
  margin: 0 0 1.25em 0;
}
ul.form > li {
  *zoom: 1;
}
ul.form > li:before, ul.form > li:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
ul.form > li:after {
  clear: both;
}
ul.form > li > label {
  clear: left;
  cursor: pointer;
  display: block;
  font-weight: bold;
  padding-top: .6em;
  text-align: left;
}
@media (min-width: 980px) {
  ul.form > li > label {
    float: left;
    width: 31.25%;
    margin-left: 0%;
    margin-right: 2.08333%;
    text-align: right;
  }
}
ul.form > li > label:hover {
  color: #666666;
}
ul.form div.form-fields {
  margin-bottom: .5em;
}
@media (min-width: 980px) {
  ul.form div.form-fields {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
ul.form div.form-fields p, ul.form div.form-fields small {
  display: block;
  font-size: inherit;
  margin: .25em 0;
}
ul.form div.form-fields p.form-description {
  margin: .6em 0;
}
ul.form div.form-fields .progress {
  margin-top: .75em;
}

ul.form-checklist {
  list-style: none;
  margin: .6em 0;
}
ul.form-checklist li {
  margin: .5em 0;
}
ul.form-checklist input {
  display: inline;
  margin-right: .8em;
}
ul.form-checklist input[type=radio] {
  margin-top: 0;
  vertical-align: middle;
}
ul.form-checklist label {
  clear: both;
  float: none;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  font-weight: normal;
}
ul.form-checklist label:hover {
  color: #666666;
  cursor: pointer;
}

li.form-error label {
  color: #ee3f52;
}
li.form-error label:hover {
  color: #9f0e1e;
}
li.form-error input {
  background: #fdecee;
  border: 1px solid #ee3f52;
  box-shadow: 0px 0px 3px #f26e7c, inset 0 0 0;
}
li.form-error input:focus {
  border: 1px solid #ee3f52;
  box-shadow: 0px 0px 3px #f26e7c;
}
li.form-error ul.form-errors {
  color: #ee3f52;
  list-style: none;
  margin: .35em 0;
}

.progress {
  background-color: #dedede;
  border-radius: 2px;
  height: 6px;
}
.progress .progress-bar {
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  background-color: #24b269;
  color: white;
  float: left;
  height: 100%;
  position: relative;
  text-align: center;
  width: 0;
}
.progress .progress-bar:before {
  content: "";
  display: block;
  height: 0px;
  width: 0px;
  position: absolute;
  right: 0;
  border-right: 6px solid #dedede;
  border-top: 6px solid #24b269;
}

table {
  background: white;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #eaeaea;
  margin-bottom: 1.25em;
  width: 100%;
}

thead th {
  border-bottom: 1px solid #eaeaea;
  color: #999999;
  font-size: .95em;
  font-weight: bold;
  padding: 1em 2em;
  text-align: left;
}

tbody td {
  border-bottom: 1px solid #eaeaea;
  padding: 2em;
  vertical-align: middle;
}

#applications thead {
  display: none;
}
@media (min-width: 768px) {
  #applications thead {
    display: table-header-group;
  }
}
#applications tbody {
  display: block;
}
@media (min-width: 768px) {
  #applications tbody {
    display: table-row-group;
  }
}
#applications td {
  display: block;
}
@media (min-width: 768px) {
  #applications td {
    display: table-cell;
  }
}
#applications tr {
  display: block;
}
@media (min-width: 768px) {
  #applications tr {
    display: table-row;
  }
}
#applications tr {
  border-bottom: 1px solid #eaeaea;
  padding: 1em 0;
}
@media (min-width: 768px) {
  #applications tr {
    border: 0;
    padding: 0;
  }
}
#applications tbody td {
  border: none;
  border-bottom: 0;
  position: relative;
  padding: .5em 1.5em;
  padding-left: 37.5%;
  width: auto;
}
#applications tbody td:before {
  color: #666666;
  content: attr(data-label);
  font-weight: 700;
  position: absolute;
  top: .5em;
  left: 1.5em;
  width: 35%;
  padding-right: 10px;
}
@media (min-width: 768px) {
  #applications tbody td {
    border-bottom: 1px solid #eaeaea;
    padding: 2em;
  }
  #applications tbody td:last-child {
    width: 275px;
  }
  #applications tbody td:before {
    display: none;
  }
}
#applications .application-id {
  color: #999999;
}
#applications .application-id a {
  border: 0;
  font-size: 1.25em;
  text-decoration: none;
}
#applications .application-id a:focus, #applications .application-id a:hover {
  text-decoration: underline;
}
#applications .application-id strong:before {
  content: "";
  display: block;
}
#applications .application-status a:before {
  content: "";
  display: block;
}
#applications .application-status .icon {
  display: block;
  float: left;
  height: 1em;
  margin-right: .5em;
  margin-top: .25em;
  width: 1em;
  border-radius: 0.25em;
  background-color: #f6902d;
}
@media (min-width: 768px) {
  #applications .application-status .icon {
    height: 3em;
    margin-right: 1em;
    margin-top: .1em;
    width: 3em;
  }
  #applications .application-status .icon:after {
    content: "";
    background-position: 0 0;
    width: 16px;
    height: 21px;
    margin: 11px auto;
  }
}
.is-validated #applications .application-status .icon {
  background-color: #24b269;
}
.is-validated #applications .application-status .icon:after {
  content: "";
  background-position: -30px 0;
  width: 16px;
  height: 21px;
  margin: 11px auto;
}
#applications .application-status .expire {
  color: #999999;
}
#applications .application-status .expire:before {
  content: "";
  display: block;
}
#applications .is-validated .application-status .icon {
  background-color: #24b269;
}
#applications .is-validated .application-status .icon:after {
  background-position: -30px 0;
}
#applications .is-rejected .application-status .icon {
  background-color: #ee3f52;
}
#applications .is-rejected .application-status .icon:after {
  background-position: -60px 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

div.buttons {
  list-style: none;
  margin: 0 0 1.25em 0;
  *zoom: 1;
}
div.buttons:before, div.buttons:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
div.buttons:after {
  clear: both;
}

.button,
input[type=submit],
button, .button-soft, ul.pagination a,
input[type=submit].button-soft,
button.button-soft, .button-contrast,
input[type=submit].button-contrast,
button.button-contrast {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25em;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  font-family: 'Work Sans', sans-serif;
  line-height: 1.25;
  margin: 0 0 .25em 0;
  padding: .35em .75em .45em .75em;
  border: 0;
  vertical-align: baseline;
  text-decoration: none;
}

.button,
input[type=submit],
button {
  color: white;
  background: #17364E;
}
.button:hover,
input[type=submit]:hover,
button:hover {
  background: #00509c;
}
.button:active, .button:focus,
input[type=submit]:active,
input[type=submit]:focus,
button:active,
button:focus {
  background: #004382;
  box-shadow: inset 0 1px 4px rgba(102, 102, 102, 0.7);
  color: white;
}

.button-soft, ul.pagination a,
input[type=submit].button-soft,
button.button-soft {
  color: gray;
  background: white;
}
.button-soft:hover, ul.pagination a:hover,
input[type=submit].button-soft:hover,
button.button-soft:hover {
  color: #666666;
  background: white;
}
.button-soft:active, ul.pagination a:active, .button-soft:focus, ul.pagination a:focus,
input[type=submit].button-soft:active,
input[type=submit].button-soft:focus,
button.button-soft:active,
button.button-soft:focus {
  background: white;
  box-shadow: inset 0 1px 4px rgba(102, 102, 102, 0.1);
  color: #999999;
}
.button-contrast a,
input[type=submit].button-contrast a,
button.button-contrast a {
  text-shadow: 0 1px 0 rgba(102, 102, 102, 0.15);
}
.button-contrast:hover,
input[type=submit].button-contrast:hover,
button.button-contrast:hover {
  background-color: #27bf71;
}
.button-contrast:active, .button-contrast:focus,
input[type=submit].button-contrast:active,
input[type=submit].button-contrast:focus,
button.button-contrast:active,
button.button-contrast:focus {
  background-color: #209d5c;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  display: inline-block;
  font-family: "Batch";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
}

span [class^="icon-"],
span [class*=" icon-"],
a [class^="icon-"],
a [class*=" icon-"] {
  display: inline-block;
  text-decoration: inherit;
}

.btn [class^="icon-"],
.btn [class*=" icon-"] {
  line-height: 0.9em;
}

li [class^="icon-"],
li [class*=" icon-"] {
  display: inline-block;
  width: 1.25em;
  text-align: center;
}

li[class^="icon-"],
li[class*=" icon-"] {
  margin-left: 0;
  list-style-type: none;
}

li[class^="icon-"]:before,
li[class*=" icon-"]:before {
  text-indent: -2em;
  text-align: center;
}

.icon-power:before {
  content: '\F02B';
}

.icon-search:before {
  content: '\F094';
}

.icon-refresh:before {
  content: '\F0B0';
}

.icon-document:before {
  content: '\F10A';
}

.icon-settings:before {
  content: '\F04D';
}

.icon-users:before {
  content: '\F045';
}

.icon-user:before {
  content: '\F044';
}

.icon-mail:before {
  content: '\F152';
}

.icon-lock:before {
  content: '\F0C2';
}

.icon-arrow-right:before {
  content: '\F14B';
}

.icon-close:before {
  content: '\F14E';
}

.icon-remove:before {
  content: '\F155';
}

.icon-menu:before {
  content: '\F0AA';
}

#applications .application-status .icon:after, .is-validated #applications .application-status .icon:after, li.message:before, #entrance .dialog .content figure {
  background-image: url(/images/c7/icons/sprite.png);
  display: block;
}

ul.messages {
  list-style: none;
  margin: -1px 0 0;
}

li.message {
  display: block;
  padding: 1.45em 1.5em 1.55em;
  vertical-align: baseline;
  border-bottom: 1px solid #f8e7ab;
  border-top: 1px solid #fcf5da;
  color: #756c57;
  background-color: #fbf2d1;
  padding-left: 4.5em;
}
li.message:before {
  content: "";
  background-size: 90px auto;
  background-position: 0 -15px;
  width: 32px;
  height: 28px;
  position: absolute;
  margin-left: -40px;
}
li.message ul {
  margin-bottom: 0;
}

ul.pagination {
  font-size: .95em;
  list-style: none;
  margin: 0 0 1.25em 0;
  text-align: center;
}
ul.pagination li {
  display: inline-block;
  margin-bottom: .25em;
}
ul.pagination li.is-selected a {
  background: #eee;
}
ul.pagination li.gap {
  background: none;
  padding: .35em;
  border: 0px;
}

.tabs {
  *zoom: 1;
}
.tabs:before, .tabs:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
.tabs:after {
  clear: both;
}
.tabs > ul {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 980px) {
  .tabs > ul {
    float: left;
    width: 20.83333%;
    margin-left: 0%;
    margin-right: 0%;
    box-shadow: 0 3px 0 rgba(234, 234, 234, 0.3);
  }
}
@media (min-width: 1200px) {
  .tabs > ul {
    float: left;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
@media (min-width: 1400px) {
  .tabs > ul {
    float: left;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
@media (min-width: 1750px) {
  .tabs > ul {
    float: left;
    width: 14.58333%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
.tabs > ul li {
  list-style: none;
}
.tabs > ul li.is-selected a {
  border-right-color: white;
  color: #666666;
  cursor: default;
  font-weight: bold;
  position: relative;
}
@media (min-width: 980px) {
  .tabs > ul li.is-selected a:before {
    content: "";
    height: 100%;
    width: 1px;
    background: white;
    position: absolute;
    right: -1px;
    top: 0;
  }
}
.tabs > ul a {
  background: white;
  border-bottom: 1px solid #eaeaea;
  display: block;
  padding: 1em 1.5em;
  text-decoration: none;
}
.tabs > ul a:hover, .tabs > ul a:focus {
  text-decoration: underline;
}
.tabs > ul a:active {
  color: #222;
}
.tabs > ul a span {
  background: #ee3f52;
  border-radius: 1em;
  box-shadow: 0 1px 5px rgba(102, 102, 102, 0.15);
  color: white;
  display: inline-block;
  font-size: .8em;
  font-weight: bold;
  line-height: 1.2em;
  margin-left: .5em;
  padding: .3em .51em;
  text-align: center;
  vertical-align: baseline;
  min-width: 1.7em;
  white-space: nowrap;
}
.tabs > div {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
  background: white;
  border-top: 1px solid #EAEAEA;
  display: none;
}
@media (min-width: 980px) {
  .tabs > div {
    float: left;
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    border: 0;
  }
}
@media (min-width: 1200px) {
  .tabs > div {
    float: left;
    width: 81.25%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
@media (min-width: 1400px) {
  .tabs > div {
    float: left;
    width: 83.33333%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
@media (min-width: 1750px) {
  .tabs > div {
    float: left;
    width: 85.41667%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
.tabs > div h2 {
  color: #333333;
  margin-bottom: .75em;
}
.tabs .l-half h2 {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: .75em;
  text-align: center;
}
.tabs .l-one-third,
.tabs .l-half,
.tabs .l-two-third,
.tabs .l-full {
  border-left: 1px solid #eaeaea;
}

.status {
  *zoom: 1;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom: 1px solid rgba(102, 102, 102, 0.1);
  font-size: .9em;
  position: relative;
}
.status:before, .status:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
.status:after {
  clear: both;
}
.status > span {
  color: #999999;
  position: absolute;
  padding: 0 1.6em;
  right: 0;
}
.status > span:first-child {
  left: 0;
  right: auto;
}
.status .progress {
  margin: .65em 11.5em 2.75em 6.5em;
}
.status .progress .progress-bar:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  right: 0;
  border-right: 6px solid #24b269;
  border-top: 6px solid transparent;
  top: 9px;
}
.status .progress .progress-bar div {
  background: #24b269;
  border-radius: 2px;
  color: white;
  margin-right: -7em;
  padding: .5em 1.5em;
  position: absolute;
  right: 0;
  top: 15px;
  width: 14em;
}
@media (min-width: 768px) {
  .status .progress .progress-bar div {
    padding: .5em 2em;
  }
}

ul.files {
  *zoom: 1;
  list-style: none;
  margin: 0 0 2em;
}
ul.files:before, ul.files:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
ul.files:after {
  clear: both;
}
ul.files li {
  float: left;
  width: 45.83333%;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 1.25em;
  position: relative;
  text-align: center;
}
@media (min-width: 480px) {
  ul.files li {
    float: left;
    width: 37.5%;
    margin-left: 0%;
    margin-right: 4.16667%;
  }
}
@media (min-width: 600px) {
  ul.files li {
    float: left;
    width: 29.16667%;
    margin-left: 0%;
    margin-right: 2.08333%;
  }
}
@media (min-width: 768px) {
  ul.files li {
    float: left;
    width: 22.91667%;
    margin-left: 0%;
    margin-right: 2.08333%;
  }
}
@media (min-width: 980px) {
  ul.files li {
    float: left;
    width: 20.83333%;
    margin-left: 0%;
    margin-right: 2.08333%;
  }
}
@media (min-width: 1200px) {
  ul.files li {
    float: left;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 2.08333%;
  }
}
@media (min-width: 1400px) {
  ul.files li {
    float: left;
    width: 14.58333%;
    margin-left: 0%;
    margin-right: 2.08333%;
  }
}
@media (min-width: 1750px) {
  ul.files li {
    float: left;
    width: 10.41667%;
    margin-left: 0%;
    margin-right: 2.08333%;
  }
}
ul.files li > span {
  color: #a6a6a6;
  font-weight: normal;
}
ul.files li figure {
  background: white;
  border: 1px dashed #eaeaea;
  margin-bottom: .25em;
  position: relative;
  text-align: center;
}
ul.files li figure:focus, ul.files li figure:hover {
  border-color: #d1d1d1;
}
ul.files li figure:hover .upload {
  color: #004382;
}
ul.files li figure:after {
  margin-top: 100%;
  content: "";
  font-size: 0;
  display: block;
}
ul.files li figure span {
  color: #17364E;
  display: inline-block;
  padding: 0 0.5em;
  position: absolute;
  font-weight: bold;
  font-size: .85em;
  left: 0;
  top: 36.5%;
  text-decoration: underline;
  width: 100%;
}
@media (min-width: 480px) {
  ul.files li figure span {
    font-size: 1em;
  }
}
ul.files li figure span.upload {
  top: 42.5%;
}
ul.files li figure span a {
  font-weight: normal;
}
ul.files li figure .state {
  background: white;
  background: rgba(255, 255, 255, 0.9);
  bottom: 0;
  font-size: .85em;
  padding: 1em .5em;
  text-decoration: none;
  top: auto;
  z-index: 300;
}
@media (min-width: 480px) {
  ul.files li figure .state {
    padding: 1em;
  }
}
ul.files li figure .upload {
  z-index: 100;
}
ul.files li a.download {
  display: block;
  font-size: .85em;
  font-weight: normal;
}
ul.files li a.download:hover, ul.files li a.download:focus {
  color: #004382;
}
ul.files li .tooltip {
  background: #eaeaea;
  position: absolute;
  color: #666666;
  padding: 1em;
  z-index: 600;
  font-size: .85em;
  line-height: 1.5em;
  border-radius: 0.25em;
  top: 100%;
  margin: -.5em -3em -3em;
  -webkit-font-smoothing: antialiased;
}
ul.files li .tooltip:before {
  border-right: 6px solid #eaeaea;
  border-top: 6px solid transparent;
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  left: 50%;
  top: -6px;
}
ul.files li .tooltip p {
  margin: 0;
  text-align: left;
}
ul.files li.is-pending .tooltip {
  background: #f6902d;
  color: white;
}
ul.files li.is-pending .tooltip:before {
  border-right-color: #f6902d;
}
ul.files li.is-rejected .tooltip {
  background: #ee3f52;
  color: white;
}
ul.files li.is-rejected .tooltip:before {
  border-right-color: #ee3f52;
}
ul.files li.is-validated .tooltip {
  background: #24b269;
  color: white;
}
ul.files li.is-validated .tooltip:before {
  border-right-color: #24b269;
}
ul.files li.is-pending,
ul.files li.is-rejected,
ul.files li.is-validated {
  font-weight: normal;
}
ul.files li.is-pending figure,
ul.files li.is-rejected figure,
ul.files li.is-validated figure {
  border: 1px solid #eaeaea;
}
ul.files li.is-pending figure:hover,
ul.files li.is-rejected figure:hover,
ul.files li.is-validated figure:hover {
  border-color: #d1d1d1;
}
ul.files li.is-pending figure:before,
ul.files li.is-rejected figure:before,
ul.files li.is-validated figure:before {
  background: #24b269;
  border-radius: 50%;
  color: white;
  content: "";
  display: block;
  font-family: "Batch";
  height: 2em;
  line-height: 2em;
  position: absolute;
  right: -.5em;
  top: -.5em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  width: 2em;
  z-index: 400;
  visibility: visible;
}
ul.files li.is-pending figure:after,
ul.files li.is-rejected figure:after,
ul.files li.is-validated figure:after {
  display: none;
}
ul.files li.is-pending figure:before {
  background: #f6902d;
  content: "\F090";
}
ul.files li.is-pending figure .state,
ul.files li.is-pending figure .state a {
  color: #f6902d;
}
ul.files li.is-pending figure .state a:hover,
ul.files li.is-pending figure .state a:focus {
  color: #b55d08;
}
ul.files li.is-rejected figure:before {
  background: #ee3f52;
  content: "\F093";
}
ul.files li.is-rejected figure img {
  opacity: 0.3;
}
ul.files li.is-rejected figure .state,
ul.files li.is-rejected figure .state a {
  color: #ee3f52;
}
ul.files li.is-rejected figure .state a:hover,
ul.files li.is-rejected figure .state a:focus {
  color: #b71022;
}
ul.files li.is-validated figure:before {
  background: #24b269;
  content: "\F0C6";
}
ul.files li.is-validated figure .state,
ul.files li.is-validated figure .state a {
  color: #24b269;
}
ul.files li.is-validated figure .state a:hover,
ul.files li.is-validated figure .state a:focus {
  color: #135d37;
}

ul.files-compact {
  border: solid #eaeaea;
  border-width: 1px 1px 0;
  box-shadow: 0 2px 2px rgba(234, 234, 234, 0.35);
  list-style: none;
  margin: 0 0 1.25em;
}
ul.files-compact li {
  border-bottom: 1px solid #eaeaea;
  font-weight: bold;
  padding: 1.3em 2em;
  position: relative;
}
.files-upload ul.files-compact li {
  padding-right: 3.75em;
  padding-left: 1em;
}
@media (min-width: 768px) {
  .files-upload ul.files-compact li {
    padding-left: 2em;
  }
}
ul.files-compact li span {
  font-weight: normal;
}
ul.files-compact li .size {
  color: #8c8c8c;
}
ul.files-compact li a [class^="icon-"],
ul.files-compact li a [class*=" icon-"] {
  color: #ee3f52;
  font-size: 1.2em;
  position: absolute;
  right: 1em;
  text-decoration: none;
  top: 1em;
}
@media (min-width: 768px) {
  ul.files-compact li a [class^="icon-"],
  ul.files-compact li a [class*=" icon-"] {
    right: 1.5em;
  }
}
ul.files-compact li a [class^="icon-"]:hover, ul.files-compact li a [class^="icon-"]:focus,
ul.files-compact li a [class*=" icon-"]:hover,
ul.files-compact li a [class*=" icon-"]:focus {
  color: #ce1227;
}

.files-upload .l-one-third,
.files-upload .l-two-third {
  padding: 0;
}
@media (min-width: 768px) {
  .files-upload .l-two-third {
    padding: 0 0 0 2em;
  }
}
@media (min-width: 768px) {
  .files-upload ul.files-compact {
    margin-bottom: 3em;
  }
}
.files-upload figure {
  display: none;
}
@media (min-width: 768px) {
  .files-upload figure {
    display: block;
  }
}

/*div.modal {
  height: 100%;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}*/
/*div.modal:after {
  background: rgba(102, 102, 102, 0.7);
  content: "";
  height: 100%;
  opacity: 0.9;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
div.modal h1 {
  color: white;
  background: #17364E;
  border-radius: .15em .15em 0 0;
  padding: .5em 1.2em;
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
}
div.modal h1 a {
  color: white;
  float: right;
  font-size: 1em;
  text-decoration: none;
}

div.modal-content {
  *zoom: 1;
  background: white;
  border-radius: 0.25em;
  box-shadow: 0 0 20px rgba(102, 102, 102, 0.5);
  margin: 2em auto;
  max-width: 600px;
  padding: 5.5em 2em 2em;
  position: relative;
  top: 0;
}
div.modal-content:before, div.modal-content:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
div.modal-content:after {
  clear: both;
}*/
/*@media (min-width: 600px) {
  div.modal-content {
    margin: 6em auto;
  }
}
@media (min-width: 768px) {
  div.modal-content {
    margin: 8em auto;
    max-width: 800px;
  }
}*/

.app-header {
  *zoom: 1;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: white;
  border-bottom: 1px solid #eaeaea;
  display: block;
  left: 0;
  line-height: 4.75em;
  position: absolute;
  text-align: right;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.app-header:before, .app-header:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
.app-header:after {
  clear: both;
}
@media (min-width: 768px) {
  .app-header {
    position: fixed;
  }
}
.app-header form {
  display: none;
}
@media (min-width: 768px) {
  .app-header form {
    float: left;
    width: 35.41667%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    float: right;
    padding: 1em;
    position: relative;
  }
}
@media (min-width: 980px) {
  .app-header form {
    float: left;
    width: 37.5%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
  }
}
@media (min-width: 1200px) {
  .app-header form {
    float: left;
    width: 35.41667%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
  }
}
@media (min-width: 1400px) {
  .app-header form {
    float: left;
    width: 29.16667%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
  }
}
.app-header form input {
  background: #f2f2f2;
  border-bottom-width: 0;
  border-color: #eaeaea;
  border-radius: 0;
  padding: 1.9em 3.5em 1.9em 1.5em;
}
@media (min-width: 768px) {
  .app-header form input {
    background: inherit;
    box-shadow: 0 0 0 2px #fafbfb;
    border-color: #dddddd;
    border-radius: 0.25em;
    border-bottom-width: 1px;
    padding: inherit;
    padding-left: .6em;
    padding-right: 3.5em;
  }
}
.app-header form input:focus {
  background: #f2f2f2;
  border-bottom-width: 0;
  border-color: #eaeaea;
  box-shadow: none;
}
@media (min-width: 768px) {
  .app-header form input:focus {
    background: inherit;
    border-bottom-width: 1px;
    border-color: #84c2e6;
    box-shadow: 0px 0px 4px rgba(0, 93, 181, 0.3);
  }
}
.app-header form button {
  background: transparent;
  color: #17364E;
  position: absolute;
  right: .7em;
  top: 5.8em;
}
@media (min-width: 768px) {
  .app-header form button {
    color: #ddd;
    right: 1.5em;
    top: 1.5em;
  }
}
.app-header form button:hover, .app-header form button:focus {
  color: #00488c;
  border: 0;
  outline: 0;
  box-shadow: none;
}
@media (min-width: 768px) {
  .app-header form button:hover, .app-header form button:focus {
    color: #c4c4c4;
  }
}
.app-header .logo {
  background-image: url(/images/c7/logo.png);
  background-image: url(/images/c7/logo.svg), none;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  float: left;
  height: 2.5em;
  margin: 1.5em 0 0 .9em;
  text-align: left;
  text-indent: -1234em;
  width: 8em;
}
@media (min-width: 480px) {
  .app-header .logo {
    margin: 1.5em 0 0 1em;
  }
}
@media (min-width: 600px) {
  .app-header .logo {
    margin: 1.1em 0 0 1em;
    width: 12em;
  }
}
.app-header .account {
  display: none;
}
@media (min-width: 600px) {
  .app-header .account {
    display: block;
    float: right;
    margin-right: 1em;
  }
}
@media (min-width: 768px) {
  .app-header .account {
    display: inline;
    float: none;
  }
}
.app-header .menu,
.app-header .logout,
.app-header .search {
  border-left: 1px solid #eaeaea;
  color: #666666;
  display: block;
  float: right;
  height: 100%;
  text-align: center;
  text-decoration: none;
  width: 4em;
}
@media (min-width: 480px) {
  .app-header .menu,
  .app-header .logout,
  .app-header .search {
    width: 4.75em;
  }
}
.app-header .menu:hover, .app-header .menu:focus,
.app-header .logout:hover,
.app-header .logout:focus,
.app-header .search:hover,
.app-header .search:focus {
  color: #ee3f52;
}
.app-header .menu:before,
.app-header .logout:before,
.app-header .search:before {
  font-size: 1.15em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}
.app-header .menu:hover:before,
.app-header .logout:hover:before,
.app-header .search:hover:before {
  font-size: 1.25em;
}
.app-header .menu {
  background: #17364E;
  border: 0;
  border-bottom: 1px solid #1a6ebd;
  color: white;
  float: left;
  font-size: 1.5em;
  margin-bottom: -1px;
  width: 3.35em;
}
@media (min-width: 600px) {
  .app-header .menu {
    display: none;
  }
}
.app-header .menu:hover, .app-header .menu:focus, .app-header .menu:active {
  color: white;
}
.app-header .logout:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.app-header .search {
  margin-bottom: -1px;
}
@media (min-width: 768px) {
  .app-header .search {
    display: none;
  }
}
.app-header .is-active {
  background: #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}

.navigation {
  background: #f6f6f6;
  display: none;
  position: absolute;
  top: 4.85em;
  z-index: 900;
}
@media (min-width: 600px) {
  .navigation {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 70px;
    overflow: hidden;
    background: #17364E;
    display: block;
    height: 100%;
    background: white;
    margin-top: -70px;
    padding-top: 68px;
    background: #f6f6f6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.navigation .bg {
  width: 70px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #17364E;
}
.navigation nav {
  width: 100%;
  display: block;
  position: relative;
}
@media (min-width: 600px) {
  .navigation nav {
    width: 320px;
  }
}
.navigation nav ul {
  margin: 0;
  list-style: none;
}
.navigation nav ul li {
  width: 100%;
  float: none;
  clear: both;
  border-bottom: 1px solid #eee;
  position: relative;
}
.navigation nav ul li.active {
  background: url(/images/c7/backgrounds/bg-menu_active.jpg) center left no-repeat;
  background-size: 70px 70px;
}
.navigation nav ul li.active span {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}
.navigation nav ul li > a {
  display: block;
  height: 70px;
  line-height: 70px;
  color: #666666;
  text-decoration: none;
  position: relative;
  text-indent: 30px;
  background: #f6f6f6;
  margin-left: 70px;
  font-size: 1.15em;
}
.navigation nav ul li > a:hover, .navigation nav ul li > a.current {
  background-color: white;
  color: #17364E;
  font-weight: bold;
  text-decoration: none;
}
.navigation nav ul li > a:hover span, .navigation nav ul li > a.current span {
  background: white;
  color: #17364E;
}
.navigation nav ul li > a span {
  display: block;
  font-size: 2em;
  float: left;
  text-align: center;
  width: 70px;
  height: 71px;
  border-bottom: 1px solid #1a6ebd;
  position: absolute;
  margin-left: -110px;
  color: white;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  top: 0;
  padding-right: 110px;
}
.navigation nav ul li > a em.badge {
  background: #ee3f52;
  border-radius: 1em;
  box-shadow: 0 1px 5px rgba(102, 102, 102, 0.15);
  color: white;
  display: inline-block;
  font-size: .8em;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2em;
  padding: .3em .51em;
  text-align: center;
  text-indent: 0;
  vertical-align: baseline;
  min-width: 1.7em;
  white-space: nowrap;
  position: absolute;
  top: 9px;
  left: -31px;
  z-index: 10;
}
.navigation nav ul li ul {
  width: 100%;
  position: absolute;
  top: 70px;
  left: 70px;
  z-index: 9;
  display: none;
  background: white;
}
@media (min-width: 600px) {
  .navigation nav ul li ul {
    width: 250px;
  }
}
.navigation nav ul li ul li {
  border: 0;
}
.navigation nav ul li ul li a {
  height: auto;
  padding: 12px 0;
  line-height: 100%;
  font-size: .9em;
  background: white;
  width: 72.5%;
  margin: 0 10px;
  text-indent: 20px;
  color: #666666 !important;
  font-weight: normal !important;
}
@media (min-width: 600px) {
  .navigation nav ul li ul li a {
    width: 230px;
  }
}
.navigation nav ul li ul li a:hover, .navigation nav ul li ul li a:focus {
  background: #f6f6f6;
  text-decoration: none;
  border-radius: 4px;
  color: #17364E !important;
}
.navigation nav ul li ul li.last {
  padding-bottom: 26px;
}

#entrance {
  width: 100%;
  min-height: 100%;
  display: inline-block;
  overflow: auto;
  padding: 1em 0;
  /*background: #17364E url(/images/c7/backgrounds/background.jpg) no-repeat center center fixed;*/
  background: #fff;
  background-size: cover;
}

#entrance {
  padding: 2em 2em;
}

#entrance:after {
  content: "";
  display: block;
  height: 1px;
}
#entrance .logo {
  width: 100%;
  margin: 0 0 1em 0;
}
@media (min-width: 600px) {
  #entrance .logo {
    padding: 0 0 2em 0;
  }
}
@media (min-width: 768px) {
  #entrance .logo {
    padding: 0 0 2.85em 0;
  }
  
  #entrance .dialog {
	  transform: translateY(50%);
  }
}
#entrance .logo img {
  height: 100% !important;
  width: 150px !important;
}
#entrance ul {
  list-style: none;
  margin: 0;
}
#entrance .dialog {
  background: #293F96 !important;
  color: #fff;
  display: block;
  float: none;
  margin: 0 1em 2em;
  max-width: 440px;
  padding: 1.5em 2em 2.2em 2em;
  position: relative;
  border-radius: .5rem!important;
}
@media (min-width: 480px) {
  #entrance .dialog {
    margin: 0 auto 6.45em;
    max-width: none;
    padding: 3.2em 3.6em;
    width: 544px;
  }
}
#entrance .dialog header h1 {
  -webkit-font-smoothing: antialiased;
  width: 100%;
  padding: 0;
  margin: 0 0 .85em 0;
}
#entrance .dialog .content {
  *zoom: 1;
}
#entrance .dialog .content:before, #entrance .dialog .content:after {
  display: block;
  height: 0 !important;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
}
#entrance .dialog .content:after {
  clear: both;
}
#entrance .dialog .content figure {
  background-size: 90px auto;
  background-position: 0 -45px;
  margin: 25px auto;
  width: 70px;
  height: 78px;
  background: url(/images/c7/icons/icon-activated.png) \9;
}
#entrance .dialog .content p {
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
#entrance .dialog .content p a span {
  text-decoration: none;
  margin-left: .35em;
}
#entrance .dialog .content legend {
  border: 0;
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-weight: bold;
  margin-bottom: .25em;
}
#entrance .dialog .content ul li .field {
  font-size: 1.05em;
  margin: .35em 0;
}
#entrance .dialog .content ul li .field input {
  height: 3.85em;
  padding-left: 4.93em;
}
#entrance .dialog .content ul li .field span {
  border-right: 1px dotted #cecece;
  color: #666666;
  width: 3.85em;
  height: 34px;
  margin: 10px 0;
  display: inline-block;
  position: absolute;
  font-size: 1.16em;
  padding-top: 8px;
  -webkit-font-smoothing: antialiased;
}
#entrance .dialog .content ul li ul.form-errors {
  margin-bottom: .7em;
}
@media (min-width: 600px) {
  #entrance .dialog .content ul li span.line {
    width: 340px;
    height: 1px;
    display: block;
    background: #eee;
    margin-top: 45px;
    margin-bottom: 20px;
    position: absolute;
    z-index: 0;
  }
}
#entrance .dialog .content ul li .button-box {
  box-sizing: border-box;
  margin: 16px 16px 0 0;
  text-align: left;
  background-clip: padding-box;
  background-color: #293F96;
  float: left;
  -o-border-image: none;
  border-image: none;
  border: none;
  box-shadow: inset 0 0 6px rgba(0,0,0,.15);
  outline: none !important;
}
button.button-contrast.icon, button.button-contrast.icon:focus, button.button-contrast.icon:visited {
    background-color:#F16752 !important;
	font-weight: 700 !important;
	border-color:#F16752 !important;
}
button.button-contrast.icon:hover {
    background-color:#C73800 !important;
	border-color:#C73800 !important;
}
button.button-contrast.icon:active {
    background-color:#C73800 !important;
}
#entrance .dialog .content ul li .button-box .button-contrast {
  height: 48px;
  line-height: 38px;
  padding-right: 48px;
  padding-left: 22px;
  position: relative;
  transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
#entrance .dialog .content ul li .button-box .button-contrast a {
  color: white;
  text-decoration: none;
}
#entrance .dialog .content ul li .button-box .button-contrast span {
  display: inline-block;
  font-size: 1.16em;
  height: 46px;
  line-height: 47px;
  position: absolute;
  top: 0;
  width: 46px;
  -webkit-font-smoothing: antialiased;
}
#entrance .dialog .content ul li:first-child .field {
  margin-top: 0;
}
#entrance .dialog footer {
  margin-top: 80px;
  position: absolute;
  width: 200px;
}
@media (min-width: 480px) {
  #entrance .dialog footer {
    margin-top: 110px;
  }
}
@media (min-width: 600px) {
  #entrance .dialog footer {
    margin-top: 80px;
    width: 380px;
  }
}
#entrance .dialog footer ul li {
  float: left;
  width: 83.33333%;
  margin-left: 0%;
  margin-right: 16.66667%;
  color: white;
  font-size: .9em;
  height: 25px;
  margin-bottom: 1em;
  text-decoration: underline;
}
@media (min-width: 600px) {
  #entrance .dialog footer ul li {
    float: left;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 4.16667%;
    text-decoration: none;
  }
}
#entrance .dialog footer ul li a {
  color: inherit;
  text-decoration: none;
}
#entrance .dialog footer ul li a:hover, #entrance .dialog footer ul li a:focus {
  outline: 0;
  text-decoration: underline;
}
#entrance .dialog footer ul li:first-child {
  display: none;
}
@media (min-width: 600px) {
  #entrance .dialog footer ul li:first-child {
    display: list-item;
    border-right: 1px dotted white;
  }
}
#entrance .dialog footer ul li input {
  opacity: 0;
  position: absolute;
}

#entrance .dialog footer ul li label {
  cursor: pointer;
  display: block;
  line-height: 16px;
  margin-top: 2px;
  position: relative;
  text-align: center;
  width: 100%;
}
#entrance .dialog footer ul li label:hover, #entrance .dialog footer ul li label:focus {
  text-decoration: underline;
}
#entrance .dialog footer ul li label:before {
  background: url(/images/c7/backgrounds/bg-input_blue.png) no-repeat center top;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 22px;
  left: 0;
  margin-bottom: -2px;
  margin-left: -5px;
  position: absolute;
  width: 22px;
}
#entrance .dialog footer ul li input[type=checkbox]:checked + input + label:before {
  background-position: center bottom;
}

#entrance .dialog #remember-div {
  margin-top: 1em;
}
#entrance .processing {
  position: relative;
}
#entrance .processing .overlay {
  width: 88%;
  position: absolute;
  z-index: 9999;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  height: 260px;
  margin-top: 70px;
}
@media (min-width: 600px) {
  #entrance .processing .overlay {
    margin-top: 100px;
  }
}
#entrance .processing .button-contrast a {
  color: #9debc3 !important;
}
#entrance .processing .button-contrast span {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(/images/c7/icons/icon-loader.gif) no-repeat center center #209d5c !important;
  background-size: 16px 16px !important;
}
#entrance .processing .button-contrast span:before {
  content: "";
}
#entrance .processing .button-contrast .loader {
  padding-top: 2px;
}
#entrance .processing .button-contrast .loader img {
  width: 16px;
  height: 16px;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 2cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}

#entrance {
    background: #fff;
}

.login-wrapper {
    width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

    .login-wrapper::after {
        content: "";
        display: table;
        clear: both;
    }

    .login-wrapper .login-left {
        border-radius: 4px 4px;
        overflow: hidden;
    }

#entrance .login-wrapper .logo {
    background: #fff;
    margin: 0;
    padding: 28px;
    position: relative;
}

    #entrance .login-wrapper .logo::before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 24px 24px 0 24px;
        border-color: #ffffff transparent transparent transparent;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    #entrance .login-wrapper .logo img {
        height: 100%;
    }

#entrance .login-wrapper .dialog {
    width: auto;
    background: #0e52a0;
    color: #fff;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 60px 56px 45px;
    border: none;
}

    #entrance .login-wrapper .dialog h1 {
        color: #fff;
    }

    #entrance .login-wrapper .dialog footer {
        position: static;
        padding-top: 45px;
        margin: 0 !important;
        width: 100%;
    }

        #entrance .login-wrapper .dialog footer::after {
            content: "";
            display: table;
            clear: both;
        }

    #entrance .login-wrapper .dialog .content {
        position: relative;
    }

        #entrance .login-wrapper .dialog .content ul li .button-box {
            background: #0e529f;
            padding: 0 24px;
        }

            #entrance .login-wrapper .dialog .content ul li .button-box button {
                box-shadow: none;
                border: none;
            }

        #entrance .login-wrapper .dialog .content ul li span.line {
            background: rgba(255, 255, 255, 0.2);
            left: 0;
            right: 0;
            width: 100%;
        }

    #entrance .login-wrapper .dialog footer ul li {
        width: 49%;
        margin-right: 2%;
    }

        #entrance .login-wrapper .dialog footer ul li:first-child {
            padding-right: 2%;
        }

    #entrance .login-wrapper .dialog footer ul label {
        text-align: left;
    }

    #entrance .login-wrapper .dialog footer ul li:first-child label {
        padding-left: 28px;
    }

    #entrance .login-wrapper .dialog footer ul li label:before {
        bottom: auto;
        top: -3px;
    }

    #entrance .login-wrapper .dialog footer ul li:first-child {
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.2);
    }

    #entrance .login-wrapper .dialog footer ul li:last-child {
        margin-right: 0;
    }

.login-wrapper .login-left, .login-right {
    width: 50%;
    float: left;
}

.login-wrapper .login-left {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

.login-wrapper .login-right {
    background: #fff;
    padding: 68px 32px;
    margin: 24px 0;
    border-radius: 0 4px 4px 0;
    border: 1px solid #d7d7d7;
    border-left: 0;
}

    .login-wrapper .login-right .login-right__intro {
        margin-bottom: 32px;
    }

    .login-wrapper .login-right .login-right__logos::after {
        content: "";
        display: table;
        clear: both;
    }

    .login-wrapper .login-right .login-right__logo {
        display: block;
        float: left;
        width: calc((100% - 32px) / 3);
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #d7d7d7;
        margin-left: 16px;
        margin-bottom: 16px;
        text-decoration: none !important;
    }

        .login-wrapper .login-right .login-right__logo:nth-child(3n+1) {
            margin-left: 0;
            clear: both;
        }

        .login-wrapper .login-right .login-right__logo:nth-last-child(-n+3) {
            margin-bottom: 0;
        }

        .login-wrapper .login-right .login-right__logo img {
            width: 100%;
        }

    .login-wrapper .login-right__link {
        text-align: center;
		    
    }
	
        .login-wrapper .login-right__link a {
            text-decoration: none;
        }
		        
        .login-wrapper .login-right__link a:hover {
            text-decoration: underline;
        }

#entrance .login-wrapper .dialog footer ul li label:before {
    background: url(/images/c7/backgrounds/bg-input_blue-2019.png) no-repeat 0 1px;
}

#entrance .login-wrapper .dialog footer ul li input[type=checkbox]:checked + input + label:before {
    background-position: 0 -21px;
}

@media (max-width: 1024px) {
    .login-wrapper {
        width: auto;
    }
}

@media (max-width: 900px) {
    .login-wrapper .login-left, .login-right {
        float: none;
        width: 100%;
    }

    .login-wrapper .login-right {
        border-left: 1px solid #d7d7d7;
        border-radius: 4px;
    }
}

@media (max-width: 600px) {
    #entrance .login-wrapper .dialog footer {
        padding-top: 24px;
    }

    #entrance .login-wrapper .dialog #remember-div {
        margin-top: 0;
    }

        #entrance .login-wrapper .dialog #remember-div input[type="checkbox"] {
            vertical-align: middle;
            margin-left: 0;
        }
}

@media (max-width: 500px) {
    #entrance .login-wrapper {
        padding: 0 16px;
    }

        #entrance .login-wrapper .login-right {
            padding: 40px 16px;
        }

        #entrance .login-wrapper .login-left .dialog {
            padding: 40px 16px;
        }

            #entrance .login-wrapper .login-left .dialog ul li {
                width: 100%;
            }

    .login-wrapper .login-right .login-right__logo {
        width: calc((100% - 16px) / 2);
    }

        .login-wrapper .login-right .login-right__logo:nth-child(3n+1) {
            margin-left: 16px;
            clear: none;
        }

        .login-wrapper .login-right .login-right__logo:nth-child(2n+1) {
            margin-left: 0;
            clear: both;
        }

        .login-wrapper .login-right .login-right__logo:nth-last-child(-n+3) {
            margin-bottom: 16px;
        }

        .login-wrapper .login-right .login-right__logo:nth-last-child(-n+2) {
            margin-bottom: 0;
        }
}