@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

:root {
    --euaa-color-blue: #24234C;
    --euaa-color-yellow: #FCC402;
    --highlight-color: #1071D8;
    --color-white: #FFFFFF;
    --color-light-grey: #F2F4F5;
    --dark-text-color: #3F3F3F;
    --grey-text-color: #757575;
    --color-teal: #00ABBD;
    --color-pink: #EA506E;
    --color-purple: #8A1F59;
    --color-red: #E7352C;
    --color-alert-light: #FFF3CB;
    --color-info-light: #cfe9fb;
    --color-success-light: #ddf8e6;
    --color-error-light: #fdece7;
    --color-light-blue: #e5f2ff;
    --color-alert-dark: #FCC402;
    --color-info-dark: #1071D8;
    --color-success-dark: #6AB547;
    --color-error-dark: #C22026;
    --neutral-color-1: #eeeeee;
    --neutral-color-2: #dedede;
    --neutral-color-3: #dddddd;
    --neutral-color-4: #cccccc;
}

/***** ACCORDION *****/
/* styling for accordions */
.euaa-accordion {
    overflow: hidden;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  }
  
  .euaa-accordion-panel {
    width: 100%;
    color: var(--dark-text-color);
    overflow: hidden;
    border-bottom: 1px solid var(--color-light-grey);
  }

  .euaa-accordion .euaa-accordion-panel:last-child {
    border-bottom: none;
}

  input.euaa-accordion-panel__selector {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }

  input.euaa-accordion-panel__selector:checked + .euaa-accordion-panel__label {
    background: var(--color-light-grey);
  }
    input.euaa-accordion-panel__selector:checked + .euaa-accordion-panel__label::before {
        -webkit-transform: rotate(90deg) translate(5px, -5px);
        transform: rotate(90deg) translate(5px, -5px);
    }
  input.euaa-accordion-panel__selector:checked ~ .euaa-accordion-panel__content {
    max-height: 100vh;
    padding: 15px;
  }

  .euaa-accordion-panel__label {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: flex-start;
    padding: 15px;
    background: var(--color-light-grey);
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid var(--color-white);
  }

    label.euaa-accordion-panel__label {
        margin-bottom: 0px;
    }

  .euaa-accordion-panel__label:hover {
    background: var(--color-light-blue);
  }

  .euaa-accordion-panel__label::before {
    content: "\276F";
    width: 15px;
    height: 15px;
    margin-right: 5px;
    text-align: center;
    -webkit-transition: all .35s;
    transition: all .35s;
  }
  .euaa-accordion-panel__content {
    max-height: 0;
    padding: 0px 15px;
    color: var(--dark-text-color);
    background: var(--color-white);
    -webkit-transition: all .35s;
    transition: all .35s;
}

/***** BADGES *****/
/* styling for badges */
.euaa-badge {
    padding: 2px 8px;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    border-radius: 4px;
}

.euaa-badge--primary {
    background-color: var(--euaa-color-blue);
    color: var(--color-white);
}

.euaa-badge--secondary {
    background-color: var(--euaa-color-yellow);
    color: var(--dark-text-color);
}

.euaa-badge--highlight {
    background-color: var(--highlight-color);
    color: var(--color-white);
}

.euaa-badge--purple {
    background-color: var(--color-purple);
    color: var(--color-white);
}

.euaa-badge--pink {
    background-color: var(--color-pink);
    color: var(--color-white);
}

.euaa-badge--teal {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.euaa-badge--success {
    background-color: var(--color-success-dark);
    color: var(--color-white);
}

.euaa-badge--error {
    background-color: var(--color-red);
    color: var(--color-white);
}

.euaa-badge--outline {
    border: 1px solid #ccc;
}


/***** BREADCRUMBS *****/
/* styling for breadcrumbs */
ul.euaa-breadcrumb {
    margin: 0px;
    padding: 5px 10px 5px 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--color-white);
}

.euaa-breadcrumb__item + .euaa-breadcrumb__item::before {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    content: "/";
}

.euaa-breadcrumb--arrow .euaa-breadcrumb__item + .euaa-breadcrumb__item::before {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    content: ">";
}

.euaa-breadcrumb__item a {
    text-decoration: none;
    color: var(--euaa-color-yellow);
}

    .euaa-breadcrumb__item a:hover {
        text-decoration: underline;
    }


/***** BULLET LIST *****/
/* styling for bullet list */
    ul.euaa-bullet-list li {
        padding: 0px 10px 20px 30px;
        background-image: url(../../images/bullet-yellow.png);
        background-position: 0px 5px;
        background-repeat: no-repeat;
    }

        ul.euaa-bullet-list li:last-child {
            padding-bottom: 0px;
        }

        ul.euaa-bullet-list li:first-child {
            margin-top: 10px;
        }

        ul.euaa-bullet-list li h3 {
            font-size: 20px;
            font-weight: bold;
        }

    /* styling for outline bulleted list */
    ul.euaa-bullet-list-outline li {
        padding: 30px 30px 30px 60px;
        background-image: url(../../images/bullet-yellow.png);
        background-position: 30px 30px;
        background-repeat: no-repeat;
        border: 1px solid var(--color-border-grey);
        border-radius: 10px;
        font-size: 14px;
        line-height: 24px;
        box-shadow: 0px 1px 4px rgb(0 0 0 / 20%);
        margin-bottom: 25px;
    }

        ul.euaa-bullet-list-outline li h3 {
            font-size: 20px;
            font-weight: bold;
        }

        ul.euaa-bullet-list-outline li p {
            margin-bottom: 0px;
        }

        /* Override for highlight panels */
.euaa-panel .euaa-bullet-list li {
    background-image: url(../images/bullet-yellow.png)
}

/***** BUTTONS *****/
/* styling for buttons */
.euaa-btn {
    background: none;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s all ease;
    font-weight: 500;
    text-align: center;
}

/* button primary style */
.euaa-btn--primary {
    background-color: var(--euaa-color-yellow);
    border: 2px solid var(--euaa-color-yellow);
    color: var(--dark-text-color);
    transition: 0.2s all ease;
    border-bottom-right-radius: 0px;
}

    .euaa-btn--primary:hover {
        background-color: #ffe794;
        border: 2px solid #ffe794;
        color: var(--dark-text-color);
        transform: translateY(-2px);
        text-decoration: none;
    }

/* button secondary style */
.euaa-btn--secondary {
    background-color: transparent;
    border: 2px solid var(--dark-text-color);
    transition: 0.2s all ease;
    color: var(--dark-text-color);
}

    .euaa-btn--secondary:hover {
        color: var(--color-white);
        background-color: var(--dark-text-color);
        transform: translateY(-2px);
        text-decoration: none;
    }

/* button ghost style */
.euaa-btn--ghost {
    background: transparent;
    border: 2px solid var(--highlight-color);
;    color: var(--highlight-color);
    text-align: center;
}

    .euaa-btn--ghost:hover {
        background: var(--highlight-color);
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 4px 4px -2px #bbb;
        text-decoration: none;
    }

/* button alternative ghost style */
.euaa-btn--ghost-alt {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

    .euaa-btn--ghost-alt:hover {
        background: var(--color-white);
        color: var(--highlight-color);
        transform: translateY(-2px);
    }

/* disabled button state */
.euaa-btn:disabled, .euaa-btn--disabled {
    opacity: 0.5;
    transition: none;
}

    .euaa-btn:disabled:hover, .euaa-btn--disabled {
        transform: none;
        box-shadow: none;
    }

.euaa-btn--ghost:disabled:hover {
    background-color: var(--color-white);
    color: var(--highlight-color);
}

/* mini button */
.euaa-btn--mini {
    font-size: 12px;
    padding: 0px 8px;
}

/* small button */
.euaa-btn--small {
    font-size: 14px;
    padding: 3px 12px;
}

/* large button */
.euaa-btn--large {
    font-size: 18px;
    padding: 12px 34px;
}

/* full width button */
.euaa-btn--full-width {
    width: 100%;
}

/* removing default focus border and outline */
.euaa-btn:focus {
    border: none;
    outline: none;
}

/***** CHECKBOX *****/
/* styling for checkboxes */
.euaa-chkbox {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* hide the default checkbox */
  .euaa-chkbox input {
    position: absolute;
    height: 0px;
    width: 0px;
    opacity: 0;
    /*padding: 5px;*/
  }
  
  /* creating a custom checkmark */
  .euaa-chkbox__checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      border-radius: 2px;
      background-color: var(--neutral-color-1);
      border: 1px solid #ddd;
  }
  
  /* on mouse over a background colour is applied */
  .euaa-chkbox:hover input ~ .euaa-chkbox__checkmark {
      background-color: #ccc;
  }
  
  /* when checkbox is checked, a background colour is applied */
  .euaa-chkbox input:checked ~ .euaa-chkbox__checkmark {
      background-color: var(--highlight-color);
      border: 1px solid var(--highlight-color);
      animation: bounce 300ms cubic-bezier(.5,.0,.28,1);
  }
  
  /* checkmark - this is hidden when not checked */
  .euaa-chkbox__checkmark:after {
    content: "";
    position: absolute;
    display: none;
    box-sizing: initial;
  }
  
  /* showing the checkmark when checked */
  .euaa-chkbox input:checked ~ .euaa-chkbox__checkmark:after {
      display: block;
  }
  
  /* creating the checkmark */
  .euaa-chkbox .euaa-chkbox__checkmark:after {
      left: 2px;
      top: 6px;
      border-right: 3px solid transparent;
      border-bottom: 3px solid transparent;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      transform-origin: 0% 100%;
      animation: checking 150ms 350ms cubic-bezier(.4,.0,.23,1) forwards;
  }
  
  /* disabled state style */
  .euaa-chkbox--disabled {
      opacity: 0.4;
  }
  
  .euaa-chkbox--disabled:hover input ~ .euaa-chkbox__checkmark {
      background-color: var(--neutral-color-1);
      border: 1px solid #ddd;
  }
  
  .euaa-chkbox.euaa-chkbox--disabled input:checked ~ .euaa-chkbox__checkmark {
      background-color: #dedede;
      border: 1px solid #dedede;
      animation: bounce 300ms cubic-bezier(.5,.0,.28,1);
  }

/* Animations */
@keyframes bounce {
    0% {
        transform: scale(1);
    }

    33% {
        transform: scale(.65);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes checking {
    0% {
        width: 0px;
        height: 0px;
        border-color: var(--color-white);
        transform: translate3d(0,0,0) rotate(45deg);
    }

    33% {
        width: 5px;
        height: 0px;
        transform: translate3d(0,0,0) rotate(45deg);
    }

    100% {
        width: 5px;
        height: 10px;
        border-color: var(--color-white);
        transform: translate3d(0,-10px,0) rotate(45deg);
    }
}

/***** EXPAND/COLLAPSE Area *****/
/* styling for expand/collapse area */
details > summary {
    list-style: none;
  }

details > summary::-webkit-details-marker {
    display: none;
}

/***** TEXTUAL FORM CONTROLS *****/
/* styling for textual form controls */
.euaa-form-element {
    border: 1px solid var(--neutral-color-1);
    border-radius: 2px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    line-height: 18px;
}

.euaa-form-element--full {
    width: auto;
}

.euaa-form-element--error {
    border: 1px solid var(--color-error-dark);
}

.euaa-form-element:focus {
    outline-offset: -2px;
    outline: 2px solid var(--highlight-color);
}

.euaa-form-element--error:focus {
    outline: 1px solid var(--color-error-dark);
}

.euaa-form-element--mini, .euaa-form-element--xs {
    width: 50px;
}

.euaa-form-element--full-width {
    width: 100%;
}

.euaa-form-element:disabled {
    opacity: 0.6;
}

/***** MESSAGE BOXES *****/
/* styling for message boxes */
.euaa-message-box {
    padding: 15px 15px 15px 15px;
    font-size: 14px;
    line-height: 20px;
    color: var(--dark-text-color);
    background-repeat: no-repeat;
    background-position: 15px center;
}

.euaa-message-box h4 {
    font-weight: bold;
    padding-bottom: 5px;
    padding-top: 0px;
    font-size: 16px;
    opacity: 1;
}

.euaa-message-box a {
    color: var(--dark-txt-color);
    text-decoration: underline;
}

.euaa-message-box a:hover {
    opacity: 0.8;
}

    .euaa-message-box i {
        font-size: 20px;
        margin-right: 8px;
        vertical-align: middle;
    }

.euaa-message-box--info {
    background-color: var(--color-info-light);
    border-left: 5px solid var(--color-info-dark);
}
    .euaa-message-box--info i {
        color: var(--color-info-dark);
    }
.euaa-message-box--alert {
    background-color: var(--color-alert-light);
    border-left: 5px solid var(--color-alert-dark);
}
    .euaa-message-box--alert i {
        color: var(--color-alert-dark);
    }

.euaa-message-box--success {
    background-color: var(--color-success-light);
    border-left: 5px solid var(--color-success-dark);
}
    .euaa-message-box--success i {
        color: var(--color-success-dark);
    }

.euaa-message-box--error {
    background-color: var(--color-error-light);
    border-left: 5px solid var(--color-error-dark);
}
    .euaa-message-box--error i {
        color: var(--color-error-dark);
    }

.euaa-message-box--outline {
    border: 2px solid #ececec;
    padding: 10px;
}

.euaa-message-box--no-image {
    background-image: none;
    padding: 15px;
}

.euaa-message-box--condensed {
    background-image: none;
    padding: 5px 10px;
}

.euaa-message-box--error-condensed {
    background-image: none;
    background-color: var(--error-color-bg);
    padding: 5px 10px;
    font-size: 12px;
    color: var(--dark-error-color);
 }


/***** PANELS *****/
/* styling for panels */
.euaa-panel {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    height: calc(100% - 20px);
}

.euaa-panel h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

    .euaa-panel p:last-child {
        margin-bottom: 0px;
    }

.euaa-panel--no-padding {
    padding: 0px;
}

.euaa-panel--default-height {
    height: auto;
}

.euaa-panel-square {
    padding-top: 100%;
    width: 100%;
    height: 0;
    position: relative;
    border-radius: 10px;
    border-bottom-right-radius: 0px;
    line-height: 24px;
}


.euaa-panel-square__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    min-width: 200px;
}

    .euaa-panel-square__box i {
        font-size: 52px;
    }

.euaa-panel-square__box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}


.euaa-panel--outline {
    border: 1px solid var(--color-border-grey);
    box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
}

.euaa-panel--icon {
    display: flex;
    align-items: center;
}

.euaa-panel--icon div:first-child {
    margin-right: 15px;
}

.euaa-panel--icon i {
    font-size: 46px;
}

.euaa-panel--primary {
    background-color: var(--euaa-color-blue);
    color: var(--color-white);
}

.euaa-panel--yellow {
    background-color: var(--euaa-color-yellow);
}

.euaa-panel--light-blue {
    background-color: var(--color-light-blue);
}

.euaa-panel--light-grey {
    background-color: var(--color-light-grey);
}

.euaa-panel--highlight {
    background-color: var(--highlight-color);
    color: var(--color-white);
}

.euaa-panel--light-grey {
    background-color: var(--color-light-grey);
}

.euaa-panel--primary a {
    color: var(--euaa-color-yellow);
}

.euaa-panel--big-number {
    font-size: 62px;
    font-weight: bold;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .euaa-panel--big-number .euaa-panel--small-text {
        font-size: 14px;
        font-weight: normal;
        margin-top: 20px;
        display: block;
        margin-bottom: -10px;
    }

.euaa-panel--file-link i {
    font-size: 32px;
    margin-right: 10px;
    color: var(--highlight-color);
    vertical-align: middle;
    line-height: 31px;
}

.euaa-panel--listing h4 {
    margin-bottom: 20px;
}

.euaa-panel--calendar {
    margin-bottom: 30px;
}

.euaa-panel--image {
    display: flex;
}

    .euaa-panel--image .euaa-panel__image,
    .euaa-panel--image-b .euaa-panel__image {
        padding-right: 15px;
    }

    .euaa-panel--image .euaa-panel__image {
        max-width: 50%;
        overflow: hidden;
    }

        .euaa-panel--image .euaa-panel__image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }


.euaa-panel__badge {
    position: absolute;
    top: 26px;
    right: 12px;
    background-color: var(--color-light-grey);
    font-size: 12px;
    line-height: 16px;
    padding: 4px 6px;
    box-shadow: 2px 1px 2px #ccc;
}

.euaa-panel--publication h3 {
    margin-top: -5px;
    margin-right: 50px;
}

.euaa-panel--publication h4 {
    color: var(--grey-text-color);
    font-weight: 300;
    font-size: 18px;
}

.euaa-panel--publication p {
    font-size: 14px;
    line-height: 24px;
}

.euaa-panel--button-right {
    display: flex;
    justify-content: space-between;
}
    .euaa-panel--button-right .euaa-panel__left-text > div {
        margin-bottom: 10px;
    }

    .euaa-panel--button-right .euaa-panel__left-text > div:last-child {
        margin-bottom: 0px;
    }

    .euaa-panel--button-right .euaa-panel__button {
        align-self: center;
    }

/* styling for statistics panel */
.euaa-panel--statistics > div {
    margin-bottom: 15px;
}

    .euaa-panel--statistics > div:last-child {
        margin-bottom: 0px;
    }

    .euaa-panel--statistics h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .euaa-panel--statistics i, .euaa-panel--statistics svg {
        color: var(--highlight-color);
        font-size: 24px;
        margin-right: 10px;
    }

/* styling for panel with text and image next to it */
.euaa-panel--reverse {
    justify-content: space-between;
}
    .euaa-panel--reverse .euaa-panel__image {
        padding-right: 0px;
    }

    .euaa-panel--reverse .euaa-panel__text {
        padding-right: 15px;
    }


/***** RADIOBUTTONS *****/
/* styling for radiobuttons */
.euaa-radiobutton {
   position: relative;
   cursor: pointer;
   padding-left: 30px;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

/* hide default radiobutton */
    .euaa-radiobutton input {
        position: absolute;
        height: 0px;
        width: 0px;
        opacity: 0;
    }

/* create a custom radio button */
.euaa-radiobutton__circle {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--neutral-color-1);
    border-radius: 50%;
    border: 1px solid #ddd;
}

/* on mouse over a background colour is applied */
.euaa-radiobutton:hover input ~ .euaa-radiobutton__circle {
    background-color: #ccc;
}

/* when radiobutton is selected, a background colour is applied */
.euaa-radiobutton input:checked ~ .euaa-radiobutton__circle {
    background-color: var(--highlight-color);
    border: 1px solid var(--highlight-color);
    animation: bounce 300ms cubic-bezier(.5,.0,.28,1);
}

/* circle - this is hidden when not checked */
.euaa-radiobutton__circle:after {
    content: "";
    position: absolute;
    display: none;
    box-sizing: initial;
}

/* Show the indicator (dot/circle) when checked */
.euaa-radiobutton input:checked ~ .euaa-radiobutton__circle:after {
    display: block;
}

/* creating the circle */
.euaa-radiobutton .euaa-radiobutton__circle:after {
    top: 1px;
    left: 1px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--highlight-color);
    border: 2px solid var(--color-white);
    box-sizing: initial;
}

/* disabled state style */
.euaa-radiobutton--disabled {
    opacity: 0.4;
}

.euaa-radiobutton--disabled:hover input ~ .euaa-radiobutton__circle {
    background-color: var(--neutral-color-1);
    border: 1px solid #ddd;
}

.euaa-radiobutton.euaa-radiobutton--disabled input:checked ~ .euaa-radiobutton__circle:after {
    background: #dedede;
}

.euaa-radiobutton.euaa-radiobutton--disabled input:checked ~ .euaa-radiobutton__circle {
    background-color: var(--color-white);
    border: 1px solid #dedede;
}



/***** TABS *****/
/* styling for tabs */
.euaa-tabs.nav-tabs {
    background-color: var(--color-light-grey);
    border-bottom: 4px solid #ececec;
}

    .euaa-tabs.nav-tabs .nav-item {
        margin-bottom: -4px;
        text-align: center;
        border-right: 1px solid #dee2e6;
    }

        .euaa-tabs.nav-tabs .nav-item:last-child {
            border-right: 1px solid transparent;
        }

        .euaa-tabs.nav-tabs .nav-link.active,
        .euaa-tabs.nav-tabs .nav-item.show .nav-link {
            font-weight: bold;
            border-top: 4px solid var(--highlight-color);
            /*border-right: 1px solid #dee2e6;*/
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
            border-bottom: 2px solid transparent;
        }

    .euaa-tabs.nav-tabs .nav-link {
        padding: 16px 16px;
        /*border-right: 1px solid #ccc;*/
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        /*border-bottom: 2px solid #ececec;*/
    }

    /* styling for large tabs - START */
    .euaa-tabs.euaa-tabs--large.nav-tabs .nav-link {
        padding: 30px 30px;
        font-size: 20px;
        font-weight: bold;
    }
/* styling for large tabs - END */

        .euaa-tabs.nav-tabs .nav-link .nav-width-m {
            max-width: 110px;
            vertical-align: middle;
            margin: 0 auto;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .euaa-tabs.nav-tabs .nav-item:last-child .nav-link {
        border-right: 1px solid transparent;
    }

        .euaa-tabs.nav-tabs .nav-item:last-child .nav-link.active {
            border-right: 1px solid #dee2e6;
        }


/* tab content override */
.euaa-tab-content.tab-content {
    padding: 30px 0px;
}

    .euaa-tab-content.tab-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 25px;
    }

/***** TABLES *****/
/* styling for tables */
.euaa-responsive-table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    font-size: 14px;
}

    .euaa-responsive-table a {
        color: var(--highlight-color);
    }

        .euaa-responsive-table a:hover {
            color: var(--highlight-color);
            text-decoration: underline;
        }

    .euaa-responsive-table tr {
        background-color: var(--color-white);
    }

.euaa-responsive-table th {
    background-color: var(--color-light-grey);
    font-weight: bold;
}

.euaa-responsive-table td {
    padding: 16px 10px;
    border-bottom: 1px solid var(--color-light-grey);
    vertical-align: middle;
}
.euaa-responsive-table th {
    padding: 10px;
    vertical-align: top;
}

    .euaa-responsive-table td {
        word-wrap: break-word;
    }

    .euaa-responsive-table label {
        display: none;
    }
    .euaa-responsive-table label.euaa-chkbox {
        display: block;
    }

.euaa-responsive-table td.euaa-responsive-table--nested {
    background-color: #f5f5f5;
    border-top: 1px solid var(--color-white);
}

.euaa-responsive-table tbody tr:hover { 
    background-color: var(--color-light-blue);
}

/* this is used for animating the row background colour - to highlight a change in the row or a new added row */
tr.euaa-responsive-table__row--bg-animation {
    background-color: var(--color-white);
    animation: colourchange 5s ease-in-out 1s;
}

@keyframes colourchange {
    0% {
        background-color: var(--color-white);
    }

    33% {
        background-color: #dceef9;
    }

    100% {
        background-color: var(--color-white);
    }
}

.euaa-responsive-table tr td .euaa-chkbox {
    margin-top: -16px;
}

.euaa-responsive-table tr th .euaa-chkbox {
    margin-top: -2px;
}

.euaa-responsive-table--alternating tr:nth-child(even){
    background-color: var(--color-light-grey);
}
/* Filter section */
.euaa-filter-area {
    padding: 30px;
    background-color: var(--color-light-grey);
    margin-bottom: 20px;
}

.euaa-filter-area h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px), (min-device-width: 767px) and (max-device-width: 1024px) {
    .euaa-responsive-table, .euaa-responsive-table thead, .euaa-responsive-table tbody, .euaa-responsive-table tr, .euaa-responsive-table th, .euaa-responsive-table td {
        /*display: block;*/
    }

        /* hiding the header */
        .euaa-responsive-table thead tr {
            /*position: absolute;
            top: -9999px;
            left: -9999px;*/
        }
        /* Make the cell behave like a row */
        .euaa-responsive-table td {
            /*border: none;
            position: relative;*/
        }

        .euaa-responsive-table tr td:first-child {
            /*background-color: #efefef;*/
        }

        .euaa-responsive-table tr td:last-child {
            /*border-bottom: 2px solid var(--color-light-grey);*/
        }

        /* Make the td behave like a table header */
        .euaa-responsive-table td:before {
            /*position: absolute;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;*/
        }

        /* Show labels */
        .euaa-responsive-table label {
            /*display: inline-block;
            width: 46%;
            text-align: right;
            padding-right: 10px;
            font-weight: bold;
            vertical-align: top;*/
        }

        .euaa-responsive-table span {
            /*display: inline-block;
            word-wrap: break-word;*/
        }

            .euaa-responsive-table span.chkbox__checkmark {
                /*width: 20px;
                padding-right: 0px;
                margin-top: -15px;*/
            }
}

/* dark title row column */
.euaa-responsive-table--dark-title th {
    background-color: var(--euaa-color-blue);
    color: var(--color-white);
}

/***** TYPOGRAPHY SECTION *****/
/* styling for Blockquote */
blockquote {
    padding: 15px 40px 30px 40px;
    color: var(--grey-text-color);
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
    line-height: 32px;
    margin: 0px;
}
    blockquote::before {
        content: open-quote;
    }

    blockquote::after {
        content: close-quote;
    }

/* styling for Testimonial Component */
.euaa-testimonial-box {
    border-radius: 20px;
    border-bottom-right-radius: 0px;
    padding: 30px;
    color: var(--grey-text-color);
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
    line-height: 32px;
    display: inline-block;
}

    .euaa-testimonial-box span {
        color: var(--grey-text-color);
        font-size: 14px;
        line-height: 18px;
        font-style: normal;
        font-weight: 300;
        text-align: right;
        display: block;
    }

        .euaa-testimonial-box > span:nth-of-type(1) {
            font-weight: 600;
            text-align: right;
        }

    .euaa-testimonial-box span:first-child {
        font-weight: bold;
        font-size: 16px;
    }

    .euaa-testimonial-box p:first-child::before {
        content: open-quote;
    }

    .euaa-testimonial-box p:first-child::after {
        content: close-quote;
    }


/* styling for Figure and Figcaption */
figure h4 {
    font-size: 16px;
    font-weight: bold;
}

figcaption {
    font-size: 14px;
    color: var(--grey-text-color);
    margin-top: 5px;
}

figure img {
    margin: 0px;
    max-width: 100%;
}

figure.figure-border img {
    border: 1px solid var(--color-light-grey);
}

/* styling for Footnote */
.euaa-footnote {
    font-size: 14px;
    line-height: 22px;
    color: var(--grey-text-color);
    border-top: 4px solid var(--color-light-grey);
    border-bottom: 4px solid var(--color-light-grey);
    padding: 20px 0px;
}
    .euaa-footnote h4 {
        font-size: 18px;
    }
    .euaa-footnote p {
        margin-bottom: 0px;
        margin-top: 10px;
    }


/* styling for Footer Box */
.euaa-footer-box {
    background-color: var(--color-light-grey);
    padding: 30px 0px;
}
.euaa-footer-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* styling for Read More */
.euaa-read-more__state {
    display: none;
}

.euaa-read-more__target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
}

.euaa-read-more__state:checked ~ .euaa-read-more__wrap .euaa-read-more__target {
    opacity: 1;
    font-size: inherit;
    /*max-height: 999em;*/
}

.euaa-read-more__state ~ .euaa-read-more__wrap .euaa-read-more__trigger:before {
    content: 'Read More \203A';
}

.euaa-read-more__state:checked ~ .euaa-read-more__wrap .euaa-read-more__trigger:before {
    content: 'Read Less \2039';
}

.euaa-read-more__trigger {
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding: 0 4px;
    color: var(--highlight-color);
    font-size: 16px;
}

    .euaa-read-more__trigger:hover {
        text-decoration: underline;
    }

.euaa-read-more__wrap .euaa-read-more__target span {
    display: inline-block;
    height: 0px;
}

.euaa-read-more__state:checked ~ .euaa-read-more__wrap .euaa-read-more__target span {
    height: auto;
    display: block;
    margin-top: 10px;
}


/* styling for discreet text */
.euaa-discreet-text {
    font-size: 14px;
    color: var(--grey-text-color);
}

/* styling for intro text */
.euaa-intro-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    color: var(--grey-text-color);
}

/* styling for Social Media section */
ul.euaa-social-media__share {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-top: 10px;
}

    ul.euaa-social-media__share li {
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
    }

        ul.euaa-social-media__share li a {
            font-size: 24px;
            display: inline-block;
            margin: 0 12px;
            transform: 0.2s all ease;
            cursor: pointer;
        }

/***** No Content Pages - START *****/
.euaa-no-content {
    padding: 0px;
    display: flex;
    width: 62%;
    margin: 60px auto;
}

    .euaa-no-content h2 {
        font-weight: bold;
        font-size: 36px;
    }

.euaa-no-content__text {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
/***** No Content Pages - END *****/