/*
 :::  Reset
-------------------------------------------------- */

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    border: 0;
    background-repeat: no-repeat;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

ol,
ul {
    list-style: none;
}


/*
 :::  Global
-------------------------------------------------- */

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    min-height: 100%;
    font-size: 62.5%;
}

body {
    font-family: arial, helvetica, sans-serif;
    color: #222;
    line-height: 1;
    overflow-x: hidden;
}

main {
    position: relative;
    z-index: 9;
}

code {
    color: #0B8C8F;
    font-family: monospace;
}

cite {
    border: 2px solid #ddd;
    border-right: 0;
    border-left: 0;
    padding: 5px 2px;
    color: #565656;
    font-style: normal;
    /*font-size: 85%;*/
    margin-top: 20px;
    margin-bottom: 20px;
}


/**
 * Site wrap + cols
 */

.wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    padding-left: 1rem;
    padding-right: 1rem;
    background-image: url('../images/bg-2022.svg');
    background-position: 17rem top;
    background-size: 100%;
}

@media only screen and (min-width: 35em) {
    .wrapper {
        background-position: 15rem -2rem;
    }
}


/**
   * blue-ish header gradient
   */

.wrapper:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 0;
    background-image: linear-gradient(180deg, rgba(84, 129, 160, .25) 0, rgba(255, 255, 255, 0) 100%);
    /* radial option
    background-image: radial-gradient(circle closest-corner at center -300px,
    rgba(84,129,160, .95),
    rgba(255,255,255,0));
    */
}

@media only screen and (min-width: 55em) {
    .wrapper {
        background-position: 2rem -8.5em;
    }
    /**
   * Content
   */
    .leftCol {
        float: left;
        width: 76%;
    }
    /**
   * Sidebar
   */
    .rightCol {
        float: right;
        width: calc(24% - 4rem);
    }
}


/*
 :::  Helpers
-------------------------------------------------- */


/**
  Clearfix [cf]
*/

.cf:after {
    content: '';
    display: table;
    clear: both;
}


/**
  Visually hidden [vh]
*/

.vh {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/*
  :::  Site header
-------------------------------------------------- */

.site-header {
    padding-top: 5rem;
}

.site-header .locale {
    display: block;
    width: 190px;
    border: 1px solid #fff;
    border-top: 0;
}

.site-header .locale ul {
    background: transparent url(../images/bg-trans-white.png);
    height: 30px;
    overflow: hidden;
}

.site-header .locale ul:hover {
    height: 59px;
}

.site-header .locale li {
    font-size: 13px;
    line-height: 30px;
    border-bottom: 1px solid #fff;
}

.site-header .locale li.de {
    background: transparent url(../images/flag-de.png) 10px 50% no-repeat;
}

.site-header .locale li.en {
    background: transparent url(../images/flag-en.png) 10px 50% no-repeat;
}

.site-header .locale li:hover {
    background-color: rgba(255, 255, 255, .5);
}

.site-header .locale li a {
    display: block;
    padding: 0 0 0 45px;
    margin-right: 10px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.site-header .locale li.current a {
    background: transparent url(../images/icon-arrow-down.png) right 50% no-repeat;
}


/**
 * Logo
 */

.logo {
    position: relative;
    z-index: 9;
    display: block;
    padding: 1.5rem 2rem;
    font-size: 2rem;
    font-weight: bold;
    color: #005a9c;
}

.logo span {
    color: #c72d28;
    font-weight: 400;
}


/*
  :::  Site nav
-------------------------------------------------- */

.site-nav {
    position: relative;
    z-index: 10;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #c72d28;
}

.site-nav li {
    float: left;
    display: inline-block;
}

.site-nav li.search-link {
    float: right;
}

.site-nav li a {
    display: block;
    color: #fff;
    font-size: 1.3rem;
    padding: 1.6rem 1.5rem 1.5rem;
    font-weight: bold;
    border-right: 1px solid #ba0e0c;
}

.site-nav li.search-link a {
    border-left: 1px solid #ba0e0c;
}

.site-nav li a:hover,
.site-nav li.active a {
    background-color: #ba0e0c;
}

.site-nav>ul>li:first-child a {
    padding: 1rem 1.5rem;
    height: 44px;
}

.site-nav li:first-child svg {
    display: inline-block;
}

.site-nav li ul {
    z-index: 100;
    position: absolute;
    left: -3000px;
    height: auto;
    width: 190px;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #c72d28;
}

.site-nav li li {
    display: block;
    float: none;
}

.site-nav li li a,
.site-nav li:hover li a {
    display: block;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px;
    border-top: 1px solid #ba0e0c;
}

@media only screen and (min-width: 931px) {
    .site-nav li,
    .site-header>label {
        text-align: left;
    }
    .site-nav li:hover ul {
        left: auto;
    }
}


/**
 * Mobile nav trigger
 */

label[for="nav-trigger"] {
    display: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: bold;
    outline: none;
}

@media only screen and (max-width: 930px) {
    label[for="nav-trigger"] {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        padding: 1.1rem 1.5rem 1rem;
        width: 100%;
        z-index: 999;
        font-size: 1.6rem;
        cursor: pointer;
        background-color: #c72d28;
        color: #fff;
        text-align: left;
    }
    label[for="nav-trigger"] svg {
        margin-right: .5rem;
    }
    .site-nav {
        position: absolute;
        margin: 0;
        top: 1px;
        left: 0;
        width: 100%;
        z-index: 99;
        opacity: 0;
        box-shadow: 20px 0 30px rgba(0, 0, 0, .5);
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    .nav-trigger:checked~.site-nav {
        -webkit-transform: translateY(4.4rem);
        -ms-transform: translateY(4.4rem);
        transform: translateY(4.4rem);
        opacity: 1;
    }
    .site-nav li {
        width: 100%;
        text-align: left;
    }
    .site-nav li a {
        border-top: 1px solid #ba0e0c;
        border-right: none;
    }
}


/*
  :::  Breadcrumb nav
-------------------------------------------------- */

.breadcrumb {
    position: relative;
    font-size: 1.2rem;
}

.breadcrumb ul {
    padding: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    max-width: 740px;
}

.breadcrumb li {
    display: inline;
    white-space: normal;
    line-height: 1.8rem;
}

.breadcrumb li:not(:last-child):after {
    content: '\25B8';
    margin-right: .5rem;
    margin-left: .5rem;
}

.breadcrumb li.active a {
    color: inherit;
}

.breadcrumb li:not(.active) a {
    text-decoration: underline;
}

.breadcrumb li a:hover {
    text-decoration: none;
}


/**
 * Overflow gradient
 */


/* auskommentiert wg. neuerlichem Header Gradient
.breadcrumb:after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 100%;
  z-index: 9;
  background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, #fff 100%);
}
*/


/*
  :::  Links
-------------------------------------------------- */

a {
    background: transparent;
    color: #005a9c;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover,
a:active {
    outline: 0;
}


/*
  :::  Headings
-------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}


/**
 * h1 style
 */

.alpha,
h1 {
    font-size: 2.4rem;
    line-height: 1.3;
}

.text h1 {
    margin-bottom: 1.5rem;
}


/**
 * h2 style
 */

.beta,
.text h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: bold;
    color: #005a9c;
}

.text h2 a:hover {
    text-decoration: underline;
}


/**
 * h3 style
 */

.gamma,
.text h3 {
    font-size: 2rem;
    line-height: 1.3;
    color: #666;
    margin-bottom: 2rem;
}


/**
 * h4 style
 */

.delta,
.text h4 {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: bold;
}

.text h4 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}


/**
 * h5 style
 */

.epsilon,
.text h5 {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: bold;
}

.text h5 {
    padding-top: 2rem;
    margin-bottom: 1.5rem;
}


/**
 * h6 style
 */

.zeta,
.text h6 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: bold;
}

.text h6 {
    padding-top: 2rem;
    margin-bottom: 1.5rem;
}


/*
  :::  Text
-------------------------------------------------- */

.text {
    font-size: 1.4rem;
    line-height: 1.6;
}

.text p:not(:last-child) {
    margin-bottom: 1.5rem;
}


/**
 * Small text (e.g. for the sidebar)
 */

.text.small p {
    font-size: 1.2rem;
    line-height: 1.5;
}


/**
 * Textlinks
 */

.text p a,
.text a p {
    text-decoration: underline;
}

.text p a:hover,
.text a:hover p {
    color: inherit;
    text-decoration: none;
}


/**
 * More link class
 */

.more {
    position: relative;
    display: inline-block;
    padding-left: 1.2rem;
    text-decoration: none !important;
}

.more:before {
    content: '\25B8';
    position: absolute;
    left: 0;
    top: -.1rem;
    display: inline-block;
    color: #c72d28;
}


/**
 * PDF link class
 */

.pdf {
    position: relative;
    display: inline-block;
    padding-left: 4.5rem;
    text-decoration: none !important;
}

.pdf:before {
    content: 'PDF';
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    padding: 0 .5rem;
    font-weight: bold;
    font-size: 90%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #c72d28;
    color: #fff;
    box-shadow: 3px 3px rgba(0, 0, 0, .15);
}


/**
 * Horizontal lines
 */

hr {
    margin: 2rem 0;
    border-top: 1px solid #ccc;
    box-sizing: content-box;
    height: 1px;
    overflow: visible;
}

hr.zero {
    margin: 0;
}

hr.white {
    border-top: 1px solid #fff;
}

hr.lighter {
    border-top: 1px solid #eee;
}


/**
 * Buttons
 */

.button,
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]).button,
button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #005a9c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.button:hover,
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]).button:hover,
button:hover {
    background-color: #ba0e0c;
}

.pdf-url.editable button {
    margin-right: 5px;
}

.pdf-url {
    word-break: break-all;
}


/*
 :::  Images
-------------------------------------------------- */

img {
    max-width: 100%;
    height: auto;
}


/**
 * Hide the overflow in IE
 */

svg:not(:root) {
    overflow: hidden;
}


/**
 * Images within boxes with text
 */

.box .text img,
.box.text img {
    padding: .5rem;
    border: 1px solid #ccc;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.box .text img.align-right,
.box.text img.align-right {
    float: right;
    margin-left: 15px;
    margin-right: 0;
}


/**
  Aligment
*/

.align-left,
.alignleft,
img.alignleft,
.box .text img.alignleft {
    float: left;
    margin-top: .5rem;
    margin-right: 2.5rem;
    margin-bottom: 2rem;
    max-width: 50%;
}

.align-right,
.alignright,
img.alignright,
.box .text img.alignright {
    float: right;
    margin-top: .5rem;
    margin-left: 3rem;
    margin-bottom: 2rem;
    max-width: 50%;
}

.align-center,
.aligncenter,
img.aligncenter,
.box .text img.aligncenter {
    float: none;
    display: block;
    margin-top: .5rem;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 400px) {
    .align-right,
    .align-left,
    .alignleft,
    .alignright {
        max-width: 30%;
        margin-bottom: 1rem;
    }
}


/*
 :::  Unordered Lists
-------------------------------------------------- */

.text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style: square;
}

.text ul ul,
.text ul ol {
    margin-bottom: 0;
    margin-left: 2rem;
}


/*
 :::  Ordered Lists
-------------------------------------------------- */

.text ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style: decimal;
}

.text ol ul,
.text ol ol {
    margin-bottom: 0;
    margin-left: 2rem;
}


/*
  :::  Pagination
-------------------------------------------------- */

.pagination {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
}

.pagination li,
.pagination span {
    display: inline-block;
    margin: 0 .2rem;
    font-size: 1.2rem;
}

.pagination span.current {
    padding: 1rem;
}

.pagination a {
    display: block;
    font-weight: bold;
    color: #fff;
    background-color: #005a9c;
    padding: 1rem;
}

.pagination a:hover,
.pagination .active a {
    background-color: #ba0e0c;
}


/*
  :::  Content
-------------------------------------------------- */

.content-header {
    /* ? */
}

.content-header__claim {
    font-size: 18px;
    margin-top: 12px;
}

.content-footer {
    margin-bottom: 4rem;
    text-align: center;
}


/**
 * Boxes
 */

.box {
    position: relative;
    border: 1px solid #ccc;
}

.box-inner {
    padding: 2rem;
}


/**
 * Report item
 */

.report {
    margin-bottom: 4rem;
}

.report>h2 {
    padding-right: 4rem;
}

.report .report-pdf {
    margin-top: 1.5rem;
}


/**
   * Practice report link (stethoscope)
   * -------------------------------------------------
   *  <a class="practice_report-link" href=" {Link} ">
        <h3 class="gamma"> {Headline} </h3>
        <p class="more"> {More item title} </p>
      </a>
   */

.practice_report-link {
    position: relative;
    display: block;
    padding: 1.5rem 2.5rem 1.5rem 10rem;
    border-top: 1px solid #ccc;
    background-color: #eeeff0;
}

.practice_report-link h3 {
    margin-bottom: .5rem;
}

.practice_report-link:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 8rem;
    height: 100%;
    background-image: url(../images/stethoskop.svg);
    background-position: center;
    background-color: #c72d28;
    box-shadow: 0 0 0 1px #c72d28;
    background-size: 70%;
}

.practice_report-link:hover {
    background-color: #f5f5f5;
}

@media only screen and (max-width: 40em) {
    .practice_report-link {
        padding: 1rem 1rem 1rem 6rem;
    }
    .practice_report-link:before {
        width: 4rem;
    }
}


/**
   * Report icons
   * -------------------------------------------------------
   * <div class="report-icon"">
       <div></div>
      </div>
   */

.report-icons {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

@media(max-width: 480px) {
    .report-icons {
        top: 1rem;
    }
}

/**
   * Practice report icon (small stethoscope icon top right)
   * -------------------------------------------------------
   * <a class="practice_report-icon" href=" {Link} ">
       <span class="vh"> {Visually hidden linktext} </span>
      </a>
   */

.practice_report-icon {
    width: 3rem;
    height: 3rem;
    background-image: url(../images/stethoskop.svg);
    background-color: #c72d28;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    box-shadow: 3px 3px rgba(0, 0, 0, .15);
}

.practice_report-icon:hover {
    background-color: #ba0e0c;
}

.extended.extended-hide {
    display: none;
}

/**
   * Report video link
   * -------------------------------------------------
   *  <a class="report_video-link" href=" {Link} ">
        <h3 class="gamma"> {Headline} </h3>
        <p class="more"> {More item title} </p>
      </a>
   */

.report_video-link-container ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}

.report_video-link {
    position: relative;
    display: block;
    padding: 1.5rem 2.5rem 1.5rem 10rem;
    border-top: 1px solid #ccc;
    background-color: #eeeff0;
}

.report_video-link h3 {
    margin-bottom: .5rem;
}

.report_video-link:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 8rem;
    height: 100%;
    background-image: url(../images/video.svg);
    background-position: center;
    background-color: #28ace3;
    box-shadow: 0 0 0 1px #28ace3;
    background-size: 70%;
}

@media only screen and (max-width: 40em) {
    .report_video-link {
        padding: 1rem 1rem 1rem 6rem;
    }
    .report_video-link:before {
        width: 4rem;
    }
}


/**
   * Report video icon (small video icon top right)
   * -------------------------------------------------------
   * <a class="report_video-icon" href=" {Link} ">
       <span class="vh"> {Visually hidden linktext} </span>
      </a>
   */

.report_video-icon {
    width: 3rem;
    height: 3rem;
    background-image: url(../images/video.svg);
    background-color: #28ace3;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    box-shadow: 3px 3px rgba(0, 0, 0, .15);
}


/**
 * Editorial
 * ---------------------------------
 *  <section class="editorial text">
      {Text}
    </section>
 */

.editorial {
    margin-top: 2rem;
    background-color: #f1f4f9;
}

.text .caption,
.editorial .caption {
    font-size: 80%;
    color: #666;
    margin-bottom: 1rem;
}

.text .caption,
.editorial .caption {
    max-width: 100%;
}

.text .caption img,
.editorial .caption img {
    background: #fff;
    margin-bottom: 5px;
    max-width: 100%;
}

@media(max-width: 480px) {
    .box,
    .box-inner {
        padding: 2rem 0;
    }
    .box {
        border: 0;
    }
    article {
        border-bottom: 1px solid #ccc !important;
    }
    .box .box-inner {
        border-left: 0;
        border-right: 0;
        border-top: 0;
        border-bottom: 0;
    }
    .section>.box {
        padding: 1rem;
    }
    .report {
        margin-bottom: 1rem;
    }
    .logo {
        padding: 1.5rem 0;
    }
    .breadcrumb ul {
        padding: 2rem 0;
    }
    .editorial.box-inner {
        background-color: transparent;
        padding: 2rem 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        border-top: 1px solid #ccc;
    }
}

.feedback--close {
    display: none !important;
}

.feedback__closing {
    display: none;
}

.feedback h2 {
    position: relative;
}

@media (max-width: 879px) {
    .feedback {
        max-width: 298px !important;
        width: 100% !important;
    }
    .feedback__closing {
        position: absolute;
        background: transparent url(../images/close-button.png) 0 0 no-repeat;
        background-size: 15px 15px;
        display: block;
        right: 4px;
        width: 15px;
        height: 15px;
        color: #fff;
        top: 8px;
    }
}


/**
 * Section
 * -------------------------------
 *  <section class="section text">
      {Text}
    </section>
 */

.section {
    margin-top: 2rem;
    background-color: #f1f4f9;
}

.section-title {
    padding: .5rem 1rem;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 400;
    background-color: #005ba0;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section.videos .section-title {
    background-color: #28ace3;
}

.section-videos__container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
}

@media(max-width: 768px) {
    .section-videos__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 480px) {
    .section-videos__container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .section-videos__container img {
        width: 100%;
    }
}

.section-videos__container img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1rem;
}

.section-videos__container p {
    font-size: 1.4rem;
    color: #222;
}

/*
  :::  Sidebar
-------------------------------------------------- */

.sidebar {
    margin-top: 1rem;
}


/**
 * Sidebar items
 */

.sidebar-item {
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

.sidebar-inner {
    padding: 1rem;
}


/**
 * Sidebar headline
 */

.sidebar h2 {
    padding: .5rem 1rem;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #c72d28;
    color: #fff;
    box-shadow: 0 0 0 1px #c72d28;
}


/**
 * Connect
 */

.connect {
    font-size: 1.1rem;
    line-height: 1.5;
}

.connect a {
    display: block;
    color: inherit;
}

.connect a:hover {
    text-decoration: underline;
}

.connect svg {
    float: left;
    margin-right: 1rem;
}

@media screen and (max-width: 45em) {
    .connect a {
        text-align: center;
    }
    .connect svg {
        float: none;
        width: 100%;
        display: inline-block;
    }
}


/**
 * Authors
 */

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

.authors-list li:not(:last-child) {
    margin-bottom: 2rem;
}

.authors-list a {
    display: block;
    margin-bottom: 1rem;
}

.authors-list img {
    display: inline-block;
    width: 75%;
    max-width: 200px;
    padding: .5rem;
    border: 1px solid #ccc;
}

.authors-list a:hover img {
    opacity: .9;
}


/*
  :::  Site footer
-------------------------------------------------- */

.site-footer {
    margin-top: 1.2rem;
    padding-top: 2rem;
    padding-bottom: 10rem;
    font-size: 1.2rem;
    border-top: 1px solid #ccc;
    text-align: center;
}


/**
   * Footer navigation
   * -------------------------------------------------
   *  <nav class="footer-nav" role="navigation">
        <ul>
          <li><a href=" {Link} "> {Nav item} </a></li>
        </ul>
      </nav>
   */

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav li {
    display: inline-block;
    padding: 0 1rem;
    border-right: 1px solid #ccc;
}

.footer-nav li:last-child {
    border: none;
    padding-right: 0;
}

.footer-nav a {
    color: inherit;
}

.footer-nav a:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 400px) {
    .site-footer {
        text-align: left;
    }
    .footer-nav {
        float: right;
    }
    .footer-nav li:last-child {
        padding-right: 0;
    }
}

.site-footer .updated {
    float: right;
    font-size: 11px;
    color: #696969;
    margin-top: 26px;
}

.site-footer .afgis-block {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.site-footer .afgis-block p {
    max-width: 350px;
    font-size: 11px;
    line-height: 1.2;
    align-self: center;
}

.site-footer .afgis-block img {
    width: 39px;
    height: 39px;
}

/*
 :::  Forms: Normalize
-------------------------------------------------- */


/**
 * field grid
 */

.field {
    width: 100%;
    margin-bottom: 2rem;
}

@media screen and (min-width: 40em) {
    .field {
        float: left;
    }
    .field.half {
        width: calc(50% - .5rem);
    }
    .field.last {
        float: right;
        margin-right: 0;
    }
}

.box .field,
.box form {
    margin-top: 0;
    margin-bottom: 1rem;
}


/**
 * form basics
 */

form {
    margin-top: 3rem;
}

label {
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 1rem;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border-radius: 0;
    margin: 0;
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

input[type=submit]:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    margin-top: 1rem;
    border: none;
    width: auto;
}

input[type=submit]:not([type="checkbox"]):not([type="radio"]):not([type="file"]):hover {
    opacity: 0.9;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):hover {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

textarea {
    min-height: 20rem;
    resize: vertical;
}

input[type=submit],
select,
button {
    cursor: pointer;
}


/**
 * avoid that cancel button @search fields
 */

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


/**
 * fix moz-stuff
 */

input::-moz-focus-inner,
select::-moz-focus-inner {
    border: 0;
    padding: 0;
}


/**
 * placeholder stuff
 */

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder {
    color: #c3c5c6;
}

[placeholder]:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-textarea-placeholder {
    color: transparent;
}


/*
 :::  List Grid
-------------------------------------------------- */

ul[class*='list'] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul[class*='list-']:after {
    content: '';
    display: table;
    clear: both;
}

ul[class*='list-'] li {
    float: left;
    display: inline-block;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 20em) and (max-width: 40em) {
    [class*='list-'] li {
        width: calc(50% - 1rem/2);
        margin-right: 0;
    }
    [class*='list-'] li:nth-child(even) {
        margin-right: 0;
    }
}

@media screen and (min-width: 40em) and (max-width: 55em) {
    .list-4 li {
        width: calc(25% - 3rem/4);
        margin-right: 0;
    }
    .list-4 li:nth-child(4n+4) {
        margin-right: 0;
    }
}

.list-4.spacy li {
    font-size: 120%;
    padding: 0.5rem;
}


/*
 :::  Status texts
-------------------------------------------------- */

.text-success {
    color: green;
}

.text-error {
    color: red;
}

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


/*
 :::  Authors
-------------------------------------------------- */

.author-list li {
    width: 50%;
    padding-right: 20px;
    padding-bottom: 20px;
    float: left;
    display: block;
}

.author-list li>div {
    padding-left: 75px;
}

@media only screen and (max-width: 639px) {
    .author-list li {
        width: 100%;
    }
}

.author-list img {
    width: 60px;
    float: left;
    margin-left: -75px;
}

.author-list .button {
    margin-top: 5px;
    display: inline-block;
}


/*
 :::  Partners
-------------------------------------------------- */

.partner-list .partner-name {
    display: block;
    font-size: 120%;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: 12px;
}


/*
 :::  AddThis widget improvements
-------------------------------------------------- */

.connect .sidebar-item.sidebar-inner .addthis_toolbox.addthis_default_style.addthis_32x32_style {
    height: 32px;
    overflow: hidden;
}

.connect .sidebar-item.sidebar-inner .addthis_toolbox.addthis_default_style.addthis_32x32_style>a.at300b {
    float: none;
    display: inline-block;
    margin-bottom: 0;
}


/*
 :::  Services
-------------------------------------------------- */

.service-content {
    width: 65%;
    float: left;
}

.service-media {
    width: 34%;
    float: right;
}

.service-content>.service-media {
    display: none;
}

@media only screen and (max-width: 639px) {
    .service-content {
        float: none;
        width: 100%;
    }
    .service-media {
        display: none;
    }
    .service-content>.service-media {
        display: block;
        width: 100%;
    }
    .service-media .media-file img {
        width: 100%;
    }
}


/*
 :::  Offsets
-------------------------------------------------- */

.mt0 {
    margin-top: 0px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}


/*
 :::  Fancybox
-------------------------------------------------- */

.fancybox-overlay {
    background-color: rgba(0, 0, 0, 0.9);
}

.fancybox-close {
    right: -28px;
    top: -8px;
}

.fancybox-skin {
    background: none;
    padding: 0;
}

.fancybox-opened .fancybox-skin {
    box-shadow: none;
}

.fancybox-outer {
    background: #f9f9f9;
}

.fancybox-inner {
    border: 10px solid #fff;
}

.fancybox-title {
    font-size: 12px;
}

.fancybox-title-float-wrap {
    position: static;
}

.fancybox-title-float-wrap .child {
    background: none;
    border-radius: 0;
    margin: 0;
    white-space: normal;
}

.highlight {
    background-color: #fff87f;
    font-weight: bold;
}

.feedback {
    background: #fff;
}

.feedback a {
    display: block;
    background: transparent url('../images/feedback_32.png') 0 0 no-repeat;
    padding-left: 42px;
    text-decoration: none;
    font-size: 80%;
    line-height: 12px;
    color: #343434;
    min-height: 70px;
    max-width: 195px;
}

.feedback a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 669px) {
    #feedbackify {
        width: 320px !important;
    }
    #feedbackify>table#fby-form {
        width: 320px !important;
        left: 50% !important;
        margin-left: -160px !important;
    }
    #feedbackify>table#fby-form td.fby-d.fby-d-tl,
    #feedbackify>table#fby-form td.fby-d-h.fby-d-t,
    #feedbackify>table#fby-form td.fby-d.fby-d-tr,
    #feedbackify>table#fby-form td.fby-d-h2,
    #feedbackify>table#fby-form td.fby-d.fby-d-l,
    #feedbackify>table#fby-form td.fby-d.fby-d-r,
    #feedbackify>table#fby-form td.fby-d.fby-d-bl,
    #feedbackify>table#fby-form td.fby-d.fby-d-br,
    #feedbackify>table#fby-form td.fby-d-h.fby-d-b {
        display: none !important;
    }
    #feedbackify>table#fby-form td.fby-d-main {
        background: transparent !important;
    }
    #feedbackify>table#fby-form .dlg-content {
        padding: 10px !important;
        background: #fff !important;
        border-radius: 8px !important;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
    }
}

ul.errors li {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.privacy-box {
    padding: 30px;
    border: 1px solid #000;
}

.button--newsletter {
    border-radius: 0;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #005a9c;
    -webkit-font-smoothing: antialiased;
    margin-top: 2rem;
    clear: both;
    border: 0 none;
    transition: all 0.23s ease-in-out 0s;
    cursor: pointer;
    height: 32px;
    width: 100%;
    line-height: 32px;
    padding: 0 22px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
}

.button--newsletter:hover {
    background-color: #ba0e0c;
}


/* figure / caption */

.box .text figure.image,
.box.text figure.image,
figure.image {
    display: table;
    float: left;
    margin: 0 0 1rem 0;
}

figure.image+*:not(figure.image):before {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

.box .text figure.image>img,
.box.text figure.image>img,
figure.image>img {
    float: none;
    margin-bottom: 0;
    margin-right: 15px;
    background: #fff;
}

figure.image>figcaption {
    font-size: 80%;
    color: #666;
    display: table-caption;
    caption-side: bottom;
}

.box .text figure.image.fig-center,
.box.text figure.image.fig-center,
figure.image.fig-center {
    display: block;
    width: 100%;
    text-align: center;
}

figure.image.fig-center>figcaption {
    text-align: center;
    display: block;
    width: 100%;
}

.box.text figure.image.fig-center>img,
.box .text figure.image.fig-center>img,
figure.image.fig-center>img {
    text-align: center;
    display: inline-block;
    margin-right: 0;
}

.box .text figure.image.fig-left,
.box.text figure.image.fig-left,
figure.image.fig-left {
    display: block;
    width: 100%;
    text-align: left;
}

figure.image.fig-left>figcaption {
    text-align: left;
    display: block;
    width: 100%;
}

.box .text figure.image.fig-left>img,
.box.text figure.image.fig-left>img,
figure.image.fig-left>img {
    text-align: left;
    display: inline-block;
    margin-right: 0;
}

.box .text figure.image.fig-right,
.box.text figure.image.fig-right,
figure.image.fig-right {
    display: block;
    width: 100%;
    text-align: right;
}

figure.image.fig-right>figcaption {
    text-align: right;
    display: block;
    width: 100%;
}

.box .text figure.image.fig-right>img,
.box.text figure.image.fig-right>img,
figure.image.fig-right>img {
    text-align: right;
    display: inline-block;
    margin-right: 0;
}

.sponsors {
    margin-bottom: 32px;
}

.sponsor {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}

.sponsor__logo {
    width: 160px;
    margin-bottom: 0;
}

.sponsor__logo a {
    display: block;
    padding: .5rem;
    border: 1px solid #ccc;
}

.sponsor__logo img {
    width: 100%;
    height: auto;
}

.sponsor__name {
    width: calc(100% - 160px);
    text-align: left;
    font-size: 18px;
    padding-left: 18px;
}

@media(max-width: 640px) {
    .sponsor__logo {
        width: 100%;
        margin-bottom: 18px;
    }

    .sponsor__name {
        text-align: center;
        width: 100%;
        padding-left: 0;
    }
}

.preview-section {
  position: relative;
  margin-top: 2rem;
  background-color: #f1f4f9;
  filter: blur(8px);
  user-select: none;
}

.section-title {
  padding: .5rem 1rem;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
  background-color: #005ba0;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.doccheck-login-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.practice-report-doccheck-login-container {
  display: flex;
  justify-content: center;
}

.doccheck-login-iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1000;
}

.social-link {
  display: flex !important;
  gap: 1rem;
}

.sidebar-social-icon {
  height: 32px;
  width: auto;
}