@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-border-grey: #E5E8ED;
    --color-alert-light: #FFF3CB;
    --euaa-color-blue-light: #3a395e;
    --euaa-color-yellow-light: #FEE281;
    --other-blue: #211F5E;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    background: var(--color-white);
    color: var(--dark-text-color);
}

a {
    color: var(--highlight-color);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
}

h3 {
    font-weight: 600;
}

h4 {
    font-size: 22px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
}

h6 {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
}

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;
    }

/***** EUAA Logo - START *****/
.euaa-logo {
    background-image: url(../images/euaa-logo-top.png);
    background-repeat: no-repeat;
    width: 140px;
    height: 76px;
    background-size: contain;
}

a:hover .euaa-logo {
    text-decoration: none;
}
/***** EUAA Logo - END *****/

/***** Caption to be used for images - START *****/
.euaa-item-caption {
    color: var(--grey-text-color);
    font-size: 14px;
    margin: 0px;
    font-style: italic;
    padding: 5px 0px 15px 0px;
}
/***** Caption to be used for images - END *****/

/***** Asylum Tools - START *****/
.asylum-tools {
    background-color: var(--euaa-color-blue);
    color: var(--color-white);
    text-align: center;
    padding: 30px 10px 20px 10px;
    z-index: 2000;
    position: relative;
}

    .asylum-tools h2 {
        font-size: 22px;
        font-weight: 600;
    }

    .asylum-tools p {
        font-size: 14px;
        margin: 0px;
    }

    .asylum-tools i {
        color: var(--euaa-color-yellow);
        font-size: 28px;
        margin-top: 7px;
        cursor: pointer;
    }
/***** Asylum Tools - END *****/

.euaa-main-header {
    display: flex;
    flex-direction: row;
    background-color: #0F3E95;
}

/***** Carousel Overlay - START *****/
.euaa-carousel-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 100;
    height: 400px;
    display: flex;
}

.euaa-carousel-overlay__corner-top-right,
.euaa-carousel-overlay__corner-bottom-right {
    width: 30px;
    height: 30px;
    overflow: hidden;
    position: relative;
}

    .euaa-carousel-overlay__corner-top-right:before,
    .euaa-carousel-overlay__corner-bottom-right:before {
        content: "";
        display: block;
        width: 200%;
        height: 200%;
        position: absolute;
        border-radius: 30%;
    }

    .euaa-carousel-overlay__corner-top-right:before {
        top: 0;
        right: 0;
        box-shadow: 30px -30px 0 0 rgba(15,62,149,0.6);
    }

    .euaa-carousel-overlay__corner-bottom-right:before {
        bottom: 0;
        right: 0;
        box-shadow: 30px 30px 0 0 rgba(15,62,149,0.6);
    }

.euaa-carousel-overlay__straight-line {
    height: 340px;
    width: 1px;
}

.euaa-carousel-overlay__right-side {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    width: 30px;
    background-color: rgba(15,62,149,0.6);
    height: 400px;
    /*background-image: linear-gradient(to right, rgba(255,0,0,0) 50%, rgba(15,62,149,1));*/
}
/***** Carousel Overlay - END *****/


.euaa-main-header__carousel {
    width: 50%;
    position: relative;
}

.euaa-main-header__map {
    width: 50%;
}

.header-carousel__text-box {
    background-color: var(--euaa-color-yellow);
    border-radius: 20px;
    border-top-left-radius: 0px;
    width: 200px;
    height: 200px;
    padding: 20px;
    position: absolute;
    bottom: 20px;
    right: 50px;
}

.header-carousel__text-box-content {
    position: relative;
    height: 100%;
}

    .header-carousel__text-box-content h2 {
        font-size: 36px;
        font-weight: bold;
    }

    .header-carousel__text-box-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .header-carousel__text-box-content a {
        color: var(--dark-text-color);
        font-weight: bold;
        vertical-align: bottom;
        position: absolute;
        bottom: 0;
    }

.header-carousel__image {
    background-image: url(../images/family.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.item {
    height: 400px;
}

/***** Top Right Menu - START *****/
.euaa-top-right-menu ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    text-align: center;
    float: right;
    margin-top: 28px;
    position: relative;
}

    .euaa-top-right-menu ul li {
        display: inline-block;
    }

        .euaa-top-right-menu ul li a {
            color: var(--highlight-color);
            font-size: 14px;
            display: block;
            margin: 0px 14px;
        }

        .euaa-top-right-menu ul li:nth-child(1) a {
            font-size: 16px;
            display: block;
            position: relative;
            margin-left: 0px;
            top: 0px;
            right: 0px;
        }

        .euaa-top-right-menu ul li:nth-child(3) a {
            font-size: 13px;
            display: block;
            padding: 6px 10px;
            border: 2px solid var(--highlight-color);
            border-radius: 5px;
            margin: 0px;
            margin-left: 18px;
            position: relative;
            top: -2px;
            transition: 0.2s all ease;
        }

        .euaa-top-right-menu ul li:nth-child(3) a:hover {
            color: var(--color-white);
            background-color: var(--highlight-color);
            text-decoration: none;
        }

            .euaa-top-right-menu ul li:nth-child(3) a i {
                font-size: 13px;
                position: relative;
                left: 3px;
                top: -2px;
            }

.euaa-top-right-menu ul li ul {
    padding: 0px;
    margin: 0;
    list-style-type: none;
    position: absolute;
    z-index: 99999999999;
    border: 2px solid var(--highlight-color);
    padding: 5px 2px;
    background-color: var(--color-white);
    padding-bottom: 1px;
    margin-left: -48px;
    margin-top: -6px;
    display: none;
}

    .euaa-top-right-menu ul li ul li {
        display: block;
        width: 178px;
        background-color: var(--color-white);
        position: relative;
        padding-bottom: 5px;
        padding-left: 5px;
    }

        .euaa-top-right-menu ul li ul li:nth-child(1) a,
        .euaa-top-right-menu ul li ul li:nth-child(2) a,
        .euaa-top-right-menu ul li ul li:nth-child(3) a {
            color: var(--highlight-color);
            font-size: 14px;
            border-radius: initial;
            position: initial;
            margin-left: 0px;
            padding: 0px;
            border: none;
            text-align: initial;
            padding: 8px;
        }


            .euaa-top-right-menu ul li ul li:nth-child(1) a i,
            .euaa-top-right-menu ul li ul li:nth-child(2) a i,
            .euaa-top-right-menu ul li ul li:nth-child(3) a i {
                font-size: 15px;
                padding-right: 5px;
            }

.euaa-top-right-menu ul li:hover ul {
    display: block;
}

    ul.member-area-menu li a:hover {
        text-decoration: none;
    }
/***** Top Right Menu - END *****/


/* owl carousel override */
.header-carousel.owl-theme .owl-dots .owl-dot span {
    background-color: var(--color-white);
    border-radius: 0px;
    box-shadow: 2px 0px 3px #999;
}

.header-carousel.owl-theme .owl-nav {
    position: absolute;
    top: 114px;
    right: 50px;
}

.header-carousel.owl-carousel .owl-nav button.owl-prev,
.header-carousel.owl-carousel .owl-nav button.owl-next {
    font-size: 36px;
    color: var(--color-white);
}

    .header-carousel.owl-carousel .owl-nav button.owl-prev:hover,
    .header-carousel.owl-carousel .owl-nav button.owl-next:hover {
        color: var(--euaa-color-yellow);
    }

    .header-carousel.owl-carousel .owl-nav button.owl-prev:focus,
    .header-carousel.owl-carousel .owl-nav button.owl-next:focus,
    .header-carousel.owl-carousel button.owl-dot:focus {
        outline: none;
        border: none;
    }

.header-carousel.owl-theme .owl-nav [class*='owl-']:hover {
    background: none;
}

.header-carousel.owl-theme .owl-dots {
    position: absolute;
    top: 150px;
    right: 136px;
}

    .header-carousel.owl-theme .owl-dots .owl-dot.active span, .header-carousel.owl-theme .owl-dots .owl-dot:hover span {
        background-color: var(--euaa-color-yellow);
    }

/***** Bootstrap Cookie Alert - START *****/
/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    background: #FFEBA7;
    color: var(--dark-text-color);
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
/***** Bootstrap Cookie Alert - END *****/

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

::selection {
    color: white;
    background: orange;
}

::-webkit-selection {
    color: white;
    background: orange;
}

::-moz-selection {
    color: white;
    background: orange;
}

/***** Bottom Scroll to Top - START *****/
.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: var(--color-white);
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
    background: var(--dark-text-color);
    color: var(--color-white);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}
/***** Bottom Scroll to Top - END *****/

/***** Mobile Menu - START *****/
.euaa-mobile-menu {
    background-color: var(--color-white);
    padding: 5px 0px;
    display: none;
}

    .euaa-mobile-menu .euaa-mobile-menu__tabs .tab_list {
        color: red;
        font-size: 8px;
        margin-top: -20px;
        display: none;
    }

.euaa-mobile-menu__burger i {
    font-size: 35px;
    float: right;
    margin-top: -48px;
    cursor: pointer;
}

.euaa-mobile-menu__tabs {
    display: none;
    text-align: right;
    margin-left: -15px;
    margin-right: -15px;
}

/***** Mobile Menu - END *****/


/***** Mobile Menu - Tab Content Area - START *****/
.euaa-mobile-menu__tab-content {
    background-color: var(--euaa-color-blue);
    text-align: left;
}

    .euaa-mobile-menu__tab-content ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

        .euaa-mobile-menu__tab-content ul li {
            display: block;
            border-bottom: 1px solid var(--color-white);
            padding: 13px 26px;
        }
            .euaa-mobile-menu__tab-content ul li a {
                color: var(--color-white);
                text-decoration: none;
            }

            .euaa-mobile-menu__tab-content ul li ul {
                font-size: 13px;
            }

                .euaa-mobile-menu__tab-content ul li a:hover {
                    opacity: 0.8;
                }

            .euaa-mobile-menu__tab-content ul li a i {
                float: right;
            }


.euaa-mobile-menu .tab_wrapper .content_wrapper .tab_content {
    display: none;
    padding: 0px 0px;
    margin-top: -6px;
}
/***** Mobile Menu - Tab Content Area - END *****/


/***** Header Area - START *****/
.header-area {
    background-color: var(--color-white);
    padding: 10px 0;
}

.header-first img {
    max-width: 100%;
    display: block;
    position: relative;
}

.header-part ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    float: right;
    margin-top: 34px;
    /*z-index: 99999;*/
    z-index: 1500;
}

.header-part ul li {
    float: left;
}

    .header-part ul li a {
        color: var(--highlight-color);
        font-size: 14px;
        display: block;
        padding-left: 22px;
        transition: 0.2s all ease;
    }

.header-part ul li a:hover {
    opacity: 0.8;
}

.navbar {
    padding: 0px;
}
/***** Header Area - END *****/

/***** Top Search Area - START *****/
.euaa-top-search {
    background-color: var(--color-light-grey);
    box-shadow: 0px 1px 5px rgb(0 0 0 / 80%);
    padding: 15px 0;
    padding-bottom: 5px;
    display: none;
}

.euaa-top-search__box {
    position: relative;
}

.euaa-top-search__box form {
    width: 100%;
    background-color: var(--color-light-grey);
    z-index: 90000;
    padding-bottom: 10px;
}

    .euaa-top-search__box form input[type="text"] {
        font-size: 17px;
        width: 86%;
        padding: 7px 10px;
        border: 1px solid var(--color-light-grey);
        outline: none;
    }

        .euaa-top-search__box form input[type="text"]::placeholder {
            font-size: 16px;
            font-style: italic;
        }

    .euaa-top-search__box form button {
        color: var(--color-white);
        width: 14%;
        background-color: var(--euaa-color-blue);
        border: 0px solid var(--color-light-grey);
        outline: none;
        padding: 8.5px 13px;
        float: right;
        padding-bottom: 9px;
    }
/***** Top Search Area - END *****/


/***** dnheader-area - START *****/
.dnheader-area {
    background-color: var(--euaa-color-blue);
    -webkit-box-shadow: 0 8px 6px -6px #fff;
    -moz-box-shadow: 0 8px 6px -6px #fff;
    box-shadow: 0 8px 6px -6px #fff;
    border-bottom: 1px solid var(--other-blue);
    z-index: 98000;
}

.dnheader-part ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
    position: relative;
}

.dnheader-part ul li {
    display: inline-block;
}

.dnheader-part ul li a {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    display: block;
    padding: 21px 26px;
}

.dnheader-part ul li a:hover,
.dnheader-part ul li a i:hover {
    background-color: #4d4b7e;
    color: var(--color-white);
    text-decoration: none;
}

.dnheader-part.dnheader-part ul li a:hover i {
    color: var(--color-white);
}

.dnheader-part ul li a i {
    color: var(--euaa-color-yellow);
}

.dnheader-part ul li ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: initial;
    position: absolute;
    /*z-index: 9999999999;*/
    z-index: 3500;
    display: none;
}

.dnheader-part ul li ul li {
    display: block;
    background-color: var(--other-blue);
    width: 308px;
}

.dnheader-part ul li ul li a {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    display: block;
    padding: 12px 29px;
    line-height: 16px;
    padding-bottom: 19px;
    padding-right: 5px;
    transition: 0.2s all ease;
}

.dnheader-part ul li ul li a span {
    font-size: 11px;
}

.dnheader-part ul li:hover ul {
    display: block;
}

.dnheader-part ul li ul li a:hover {
    opacity: 1.2;
}

.owl-stage .owl-item {
    margin: 0px;
}

.rotate {
    -moz-transition: all .5s linear;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}

.rotate.down {
    -moz-transform: rotate(178deg);
    -webkit-transform: rotate(178deg);
    transform: rotate(178deg);
}

/*--- asylum trend map area - start --- */
.asylum-trends-map {
    position: absolute;
    right: 0;
    z-index: 10 !important;
}

.asylum-trends-link {
    margin-top: 38px;
    margin-left: 102px;
}

    .asylum-trends-link h2 {
        color: var(--color-white);
        font-size: 18px;
        margin-left: 26px;
        position: relative;
        top: -10px;
    }

.asylum-trends-link--mobile {
    display: none;
}

/***** News Area - START *****/
.euaa-news-area {
    padding: 60px 0px;
}

.euaa-news-area__title h2 {
    padding-bottom: 20px;
}

    .euaa-news-area__title h2 a {
        color: var(--highlight-color);
        font-size: 16px;
        font-weight: 600;
        border: 2px solid var(--highlight-color);
        padding: 6px 15px;
        border-radius: 5px;
        margin-left: 5px;
        transition: 0.2s all ease;
    }

.euaa-news-area__title a:hover {
    text-decoration: none;
    background-color: var(--highlight-color);
    color: var(--color-white);
}

.euaa-news-area__row {
    margin-bottom: 40px;
}

.euaa-news-area__item img {
    margin: auto;
    border-radius: 20px;
    width: 100%;
}

.euaa-news-area__item h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 13px;
    padding-bottom: 2px;
}

.euaa-news-area__item p {
    color: var(--grey-text-color);
    font-size: 13px;
    margin: 0;
}

    .euaa-news-area__item p a {
        color: var(--highlight-color);
        font-weight: 600;
        padding-left: 15px;
        transition: 0.2s all ease;
    }

        .euaa-news-area__item p a:hover {
            text-decoration: underline;
            opacity: 0.8;
        }
/***** News Area - END *****/

/***** Related News - START *****/
.euaa-news-area--related {
    background-color: var(--color-light-grey);
}

    .euaa-news-area--related h2 {
        font-size: 30px;
        padding-bottom: 15px;
        font-weight: bold;
    }
/***** Related News - END *****/


/***** Popular Topics Area - START *****/
.euaa-pt-area {
    padding: 60px 0px;
    background-color: var(--color-light-grey);
}

    .euaa-pt-area h2 {
        padding-bottom: 20px;
    }

.euaa-pt-area__box {
    background-color: var(--color-white);
    padding: 20px;
    font-size: 14px;
    border-radius: 20px;
    border-bottom-right-radius: 0px;
}

.euaa-pt-area__box h6 {
    margin-left: -25px;
    padding-bottom: 7px;
    color: var(--color-white);
}

    .euaa-pt-area__box h6 a {
        color: var(--color-white);
        font-size: 12px;
        font-weight: 600;
        padding: 5px 10px;
        border-radius: 5px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .euaa-pt-area__box img {
        border-bottom-left-radius: 20px;
        background-size: contain;
        width: 100%;
        height: 200px;
        margin-top: 10px;
    }

.euaa-pt-area__calendar {
    color: var(--color-white);
    padding: 20px;
    background-color: var(--color-pink);
    border-radius: 15px;
    border-top-right-radius: 0px;
    margin-top: 10px;
}

.euaa-pt-area--trending h6 a {
    background-color: var(--color-teal);
}

.euaa-pt-area--events h6 a {
    background-color: var(--color-pink);
}

.euaa-pt-area--publications h6 a {
    background-color: var(--color-purple);
}
/***** Popular Topics Area - END *****/


/***** Pre Footer Area - Start *****/
.pre-footer {
    background-color: var(--euaa-color-blue);
    padding: 35px 0px;
    color: var(--color-white);
}

.pre-footer hr {
    margin-bottom: 20px;
    margin-left: 0px;
    width: 100%;
}

hr.pre-footer-list-hr {
    width: 90%;
}

.pre-footer h2 {
    font-size: 16px;
    color: #acacac;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.pre-footer h3 {
    font-size: 16px;
    color: #dedede;
    font-weight: bold;
}

.pre-footer a {
    color: var(--color-white);
}

ul.pre-footer-icons {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

ul.pre-footer-icons li {
    display: inline-block;
}

ul.pre-footer-icons li a {
    font-size: 30px;
    display: block;
    margin: 0 14px;
    transition: 0.2s all ease;
}

.pre-footer-btn {
    display: block;
    padding-bottom: 20px;
}

.pre-footer-btn a {
    color: #505050;
    font-size: 16px;
    text-align: center;
    padding: 10px 40px;
    border-radius: 5px;
    background-color: var(--euaa-color-yellow);
    transition: 0.2s all ease;
}

.pre-footer-newsletter .euaa-btn {
    width: 100%;
}

ul.pre-footer-list {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

ul.pre-footer-list li {
    padding: 8px 0px;
    margin-left: -10px;
}

ul.pre-footer-list li a {
    display: block;
    margin: 0 10px;
    transition: 0.2s all ease;
}

.pre-footer-sitemap {
    font-size: 18px;
    color: var(--color-white);
    margin: 5px 10px 0px 0px;
}

.pre-footer-sitemap i.fa-angle-down {
    font-size: 22px;
    color:var (--euaa-color-yellow);
}

.pre-footer-middle {
    max-width: 300px;
}

/***** Sitemap - Start *****/
.sitemap-area {
    display: none;
    margin-top: 30px;
}

ul.sitemap-list {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    margin-bottom: 25px;
    margin-right: 10px;
}

    ul.sitemap-list li {
        padding: 4px 0px;
        margin-left: -10px;
        font-size: 14px;
    }

        ul.sitemap-list li:first-child {
            font-weight: bold;
            font-size: 16px;
        }

        ul.sitemap-list li a {
            display: block;
            margin: 0 10px;
            transition: 0.2s all ease;
        }
/***** Sitemap - End *****/
/***** Pre Footer Area - End *****/

/***** Footer Area - START *****/
.footer-area {
    background-color: var(--euaa-color-blue);
    padding: 15px 0;
    color: var(--color-light-grey);
    font-size: 14px;
    opacity: 0.9;
}

.footer-part a {
    color: var(--color-white);
    font-size: 14px;
    transition: 0.2s all ease;
}

    .footer-part a:hover {
        opacity: 0.8;
    }

.footer-part-pad-left {
    padding-left: 30px;
}
/***** Footer Area - END *****/


/* ----Select Nav start----*/
.selectnav {
    display: none;
    width: 100%;
    padding: 10px;
    background-color: var(--other-blue);
    text-align: center;
    color: var(--color-white);
    font-weight: bold;
    outline: none;
    border: initial;
}

.selectnav option {
    color: var(--color-white);
    padding: 2px;
    text-align: center;
}
/* ----Select Nav end----*/

/***** Panel of Tools - START *****/
.euaa-tools-panel {
    display: none;
}

.euaa-tools-area {
    color: var(--color-white);
    background-color: var(--euaa-color-blue);
    padding: 30px 0px 30px 0px;
    border-bottom: 3px solid var(--euaa-color-yellow);
}

.euaa-tools-area a {
    color: var(--color-white);
    text-align: center;
}

.euaa-tools-area a:hover {
    text-decoration: none;
}

.euaa-tools-area a:hover .euaa-tools-area__box {
    background-color: var(--euaa-color-blue-light);
    border-radius: 10px;
}

.euaa-tools-area h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.euaa-tools-area h3 {
    font-size: 16px;
    text-align: center;
    padding-top: 15px;
    line-height: 24px;
}

.euaa-tools-area hr {
    border-top-color: var(--euaa-color-yellow);
}

.euaa-tools-area__box {
    padding: 16px 8px 8px 8px;
}

.euaa-tools-area__search select {
    color: var(--grey-text-color);
    font-size: 18px;
    padding: 10px 10px;
    font-weight: 600;
    width: 100%;
    border: none;
    outline: none;
}

.euaa-tools-area__search input[type="text"] {
    color: var(--grey-text-color);
    font-size: 18px;
    padding: 9px 10px;
    font-weight: 600;
    width: 96%;
    border: none;
    outline: none;
    margin-left: -18px;
}

.euaa-tools-area__search i {
    border: none;
    background: none;
    outline: none;
    font-size: 22px;
    padding-left: 5px;
}

.euaa-tools-area__search-results {
    background-color: var(--euaa-color-yellow-light);
    padding: 40px 0px;
}

    .euaa-tools-area__search-results ul li {
        padding-bottom: 30px;
        display: block;
        /*text-align: center;*/
    }

.euaa-tools-area__search-results ul li a {
    text-decoration: underline;
    color: var(--dark-text-color);
    padding-left: 25px;
    font-size: 16px;
}


/***** Panel of Tools - END *****/


/***** First Level Page Header - START *****/
.euaa-first-level-page-header {
    background: rgb(15,62,149);
    background: linear-gradient(90deg, rgba(15,62,149,1) 0%, rgba(9,111,176,1) 100%);
    padding: 24px 0px;
    color: var(--color-white);
    /*background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
}

    .euaa-first-level-page-header h2 {
        padding-bottom: 10px; 
    }

    .euaa-first-level-page-header p {
        font-size: 18px;
        line-height: 24px;
    }

.euaa-first-level-page-header__right {
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; 
}
/***** First Level Page Header - END *****/

/***** First Level Page Header - Member Area - START *****/
.euaa-first-level-page-header--member-area {
    background: rgb(32,88,190);
    background: linear-gradient(90deg, rgba(32,88,190,1) 0%, rgba(122,158,220,1) 100%);
    padding: 24px 0px;
    color: var(--color-white);
}
/***** First Level Page Header - Member Area END *****/

/***** First Level Page Content - START *****/
.euaa-first-level-page-content {
    padding: 60px 0;
    background-color: var(--color-white);
}

.euaa-first-level-page-content__row {
    padding-bottom: 60px;
}

.euaa-first-level-page-content__box {
    display: flex;
}

    .euaa-first-level-page-content__box h3 {
        color: var(--dark-text-color);
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
        padding-bottom: 16px;
    }

.euaa-first-level-page-content__left {
    margin-right: 25px;
}

.euaa-first-level-page-content__right {
    align-self: center;
}

    .euaa-first-level-page-content__right .euaa-btn {
        width: 140px;
        transition: 0.2s all ease;
    }

.euaa-first-level-page-content__box img {
    display: block;
}

.euaa-first-level-page-content__text {
    display: block;
    margin-top: 10px;
}
/***** First Level Page Content - END *****/


/***** Second Level Page Header - START *****/
.euaa-second-level-page-header {
    background: rgb(15,62,149);
    background: linear-gradient(90deg, rgba(15,62,149,1) 0%, rgba(9,111,176,1) 100%);
    padding: 24px 0px;
    color: var(--color-white);
}

    .euaa-second-level-page-header h2 {
        padding-bottom: 5px;
    }

    .euaa-second-level-page-header p {
        font-size: 18px;
        line-height: 24px;
    }

.euaa-second-level-page-header__right {
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
/***** Second Level Page Header - END *****/

/***** Second Level Page Header - Member Area - START *****/
.euaa-second-level-page-header--member-area {
    background: rgb(32,88,190);
    background: linear-gradient(90deg, rgba(32,88,190,1) 0%, rgba(122,158,220,1) 100%);
    padding: 24px 0px;
    color: var(--color-white);
}
/***** Second Level Page Header - Member Area - END *****/

/***** Second Level Page Header - Calendar Area - START *****/
.euaa-second-level-page-header--calendar-area {
    background: rgb(32,88,190);
    background: linear-gradient(90deg, rgba(32,88,190,1) 0%, rgba(234,80,110,1) 100%);
    padding: 24px 0px;
    color: var(--color-white);
    border-bottom: 8px solid var(--color-pink);
}
/***** Second Level Page Header - Calendar Area - END *****/


/***** Second Level Page Header - Publications Area - START *****/
.euaa-second-level-page-header--publications-area {
    background: rgb(32,88,190);
    background: linear-gradient(90deg, rgba(32,88,190,1) 0%, rgba(138,31,89,1) 100%);
    padding: 24px 0px;
    color: var(--color-white);
    border-bottom: 8px solid var(--color-purple);
}
/***** Second Level Page Header - Publications Area - END *****/

/***** Second Level Page Header - Trending Tags Area - START *****/
.euaa-second-level-page-header--tags-area {
    background: rgb(32,88,190);
    background: linear-gradient(90deg, rgba(32,88,190,1) 0%, rgba(0,171,189,1) 100%);
    padding: 24px 0px;
    color: var(--color-white);
    border-bottom: 8px solid var(--color-teal);
}
/***** Second Level Page Header - Trending Tags Area - END *****/


/***** Second Level Page Content - START *****/
.euaa-second-level-page-content {
    padding: 60px 0;
    background-color: var(--color-white);
}
/***** Second Level Page Content - END *****/

/***** Second Level Page Tabs - START *****/
.euaa-second-level-page-content__tabs {
    margin-top: 30px;
}
/***** Second Level Page Tabs - END *****/

/***** Second Level Page Items - START *****/
.euaa-second-level-page-content__item {
    border: 1px solid var(--color-border-grey);
    border-radius: 10px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
    padding: 30px 30px 15px 30px;
    margin-bottom: 25px;
    font-size: 14px;
    display: flex;
}

.euaa-second-level-page-content__item h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: -5px;
    padding-top: 0px;
}

.euaa-square {
    color: var(--euaa-color-yellow);
    background-color: var(--euaa-color-yellow);
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 4px;
    border-bottom-right-radius: 0px;
    margin-right: 15px;
}
/***** Second Level Page Items - END *****/

/***** Member Area - Login - START *****/
.euaa-member-login-area__box {
    border: 1px solid var(--color-border-grey);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
    margin-bottom: 25px;
    width: 63%;
    display: block;
    margin: auto;
}

    .euaa-member-login-area__box h2 {
        padding-bottom: 20px;
    }

    .euaa-member-login-area__box p {
        padding-bottom: 5px;
        margin: 0px;
    }

    .euaa-member-login-area__box input[type="text"],
    .euaa-member-login-area__box input[type="password"],
    .euaa-member-login-area__box input[type="9 + 5"] {
        padding: 8px 10px;
        width: 100%;
        border: 1px solid #C9C9C9;
        outline: none;
    }

    .euaa-member-login-area__box input[type="submit"] {
        width: 100%;
        margin-bottom: 15px;
    }

    .euaa-member-login-area__row {
        padding-bottom: 30px;
    }

.euaa-member-login-area__btn {
    margin-top: 20px;
    text-align: center;
}

.euaa-member-login_area__register {
    text-align: center;
    margin-top: 20px;
}

/***** Member Area - Login - END *****/
/***** Member Area - Login Azure - START *****/
.euaa-login {
    padding: 10px;
    width: 62%;
    display: flex;
    margin: 60px auto;
}

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

.euaa-login__text {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/***** Member Area - Login Azure - END *****/

/***** TFA Message - START *****/
.euaa-tfa-top-msg {
    background-color: var(--color-alert-light);
    padding: 20px 0;
}
/***** TFA Message - END *****/

/***** Security Settings - START *****/
.euaa-tab-content--security input[type="password"] {
        font-size: 16px;
        padding: 8px 10px;
        width: 54%;
        border: 1px solid #C9C9C9;
        outline: none;
}
/***** Security Settings - END *****/


/***** Related Content Area - START *****/
.euaa-related-content-area {
    border: 1px solid var(--color-border-grey);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
    padding-bottom: 18px;
}

    .euaa-related-content-area h3 {
        font-size: 20px;
        font-weight: bold;
        margin: 0px;
        padding-bottom: 18px;
    }

    .euaa-related-content-area ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    .euaa-related-content-area ul li a {
        padding-bottom: 14px;
        display: block;
        transition: 0.2s all ease;
    }

.euaa-related-content-area--sticky {
    position: sticky;
    top: 0;
}
/***** Related Content Area - END *****/

/***** Using Related Content Area as a box not for list - START *****/
.euaa-related-content-area--normal {
    padding-bottom: 30px;
    font-weight: bold;
    margin-top: 30px;
}

.euaa-related-content-area--normal .fas {
    margin-right: 10px;
}
/***** Using Related Content Area as a box not for list - END *****/

/***** News Article Detail - START *****/
.euaa-news-detail-area {
    padding: 0 210px;
}

    .euaa-news-detail-area h2 {
        font-size: 32px;
        font-weight: bold;
        padding: 5px 0px 20px 0px;
        margin: 0;
    }

    .euaa-news-detail-area h3 {
        color: var(--grey-text-color);
        font-size: 14px;
        margin: 0px;
    }

    .euaa-news-detail-area img {
        width: 100%;
        display: block;
        margin: auto;
    }

    .euaa-news-detail-area p {
        font-weight: 400;
        line-height: 28px;
    }

ul.euaa-news-detail-area__share {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-top: 10px;
}

    ul.euaa-news-detail-area__share li {
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
    }

        ul.euaa-news-detail-area__share li a {
            font-size: 24px;
            display: inline-block;
            margin: 0 12px;
            transform: 0.2s all ease;
        }
/***** News Article Detail - END *****/


/***** Search Results - START *****/
.euaa-search-results__item {
    border: 1px solid var(--color-border-grey);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
    margin-bottom: 25px;
}

    .euaa-search-results__item h3 {
        color: var(--highlight-color);
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        padding-bottom: 10px;
    }

    .euaa-search-results__item p {
        margin-bottom: 0px;
        line-height: 22px;
        font-size: 14px;
    }

.euaa-search-results__box {
    background-color: var(--color-light-grey);
    padding: 30px;
    border-radius: 10px;
    border-bottom-right-radius: 0px;
}

    .euaa-search-results__box h2 {
        font-size: 20px;
        font-weight: bold;
        padding-bottom: 12px;
        margin: 0px;
    }

    .euaa-search-results__box form {
        border-radius: 2px;
        box-shadow: 1px 1px 2px #ccc;
    }

        .euaa-search-results__box form input[type="search"] {
            font-size: 14px;
            font-weight: 400;
            border: none;
            padding: 10px;
            width: 80%;
            outline: none;
        }

        .euaa-search-results__box form button {
            color: var(--color-white);
            font-size: 24px;
            font-weight: 400;
            border: none;
            background: none;
            padding: 3px 7px;
            width: 20%;
            float: right;
            outline: none;
            background-color: var(--euaa-color-blue);
            margin-top: -1px;
        }

            .euaa-search-results__box form button:hover {
                opacity: 0.8;
            }
/***** Search Results - END *****/

.tab_list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

@media only screen and (min-width: 577px) {
    .tab_wrapper.show-as-dropdown>.tab_list {
        display: block !important;
        overflow: hidden;
    }
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
    display: none;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-caption {
    position: absolute;
    right: 9%;
    bottom: 20px;
    left: 7%;
    z-index: 10;
    padding-top: 0px;
    padding-bottom: 0px;
    color: var(--color-white);
    text-align: center;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--other-blue);
    background-clip: padding-box;
    border: none;
    border-radius: 0.3rem;
    outline: 0;
}

.modal-body_a1 form {
    width: 100%;
    display: block;
    margin: auto;
    padding: 30px 0;
    padding-top: 12px;
    text-align: center;
}

.modal-body_a1 form input[type="text"] {
    color: #000000;
    font-size: 18px;
    border: none;
    padding: 10px 15px;
    width: 55%;
    border-radius: 5px;
    outline: none;
    padding-right: 20px;
    ;
}

.modal-body_a1 form input[type="text"]::placeholder {
    color: #4A4A4A;
    font-size: 18px;
    font-weight: 600;
}

.modal-body_a1 form button {
    color: #3F413A;
    font-size: 26px;
    background-color: #FEC106;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    margin-left: -23px;
    position: relative;
    top: 1px;
    outline: none;
    transition: 0.2s all ease;
}

.modal-body_a1 form button:hover {
    color: var(--color-white);
}

.topmd {
    position: relative;
    padding-right: 10px;
}

.topmd button {
    outline: none;
}

.close {
    float: right;
    font-size: 37px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
    text-shadow: none;
    opacity: .9;
}

.close:hover {
    color: var(--color-white);
    text-decoration: none;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: #FEC106;
    border-radius: 50%;
    position: absolute;
    top: 23px;
    left: 23px;
}


@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}


/* Rounded tabs */
@media (min-width: 576px) {
    .rounded-nav {
        border-radius: 50rem !important;
    }
}

@media (min-width: 576px) {
    .rounded-nav .nav-link {
        border-radius: 50rem !important;
    }
}


hr {
    margin-bottom: 50px;
    border-top: 1.5px solid;
}

/***** Map Circle Animation - START *****/
.ripple-background {
    position: relative;
}

.circle1 {
    position: absolute;
    top: 0;
    border-radius: 50%;
    background: var(--color-white);
    animation: ripple 5s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
}

.xlarge {
    width: 14px;
    height: 14px;
}

.xxlarge {
    width: 22px;
    height: 22px;
    top: -4px;
    left: -4px;
}

.shade1 {
    opacity: 0.3;
}

@keyframes ripple {
    0% {
        transform: scale(0.6);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.6);
    }
}
/***** Map Circle Animation - END *****/


/***** Pagination Area - START *****/
.euaa-pagination {
    padding: 60px 0;
    padding-top: 0px;
}

.euaa-pagination__area ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
}

.euaa-pagination__area ul li {
  display: inline-block;
}

.euaa-pagination__area ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #b7b7b7;
    font-weight: bold;
    margin: 0 8px;
    display: inline-block;
}

.euaa-pagination__area ul li a img {
    max-width: 100%;
}

.euaa-pagination__list {
    display: -ms-flexbox;
    display: inline-flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    display: block;
    margin: auto;
}

.euaa-pagination__next {
  padding-left: 9px;    
}

.euaa-pagination__prev {
  padding-right: 9px;    
}

.euaa-pagination__area ul li:nth-child(2) a,
.euaa-pagination__area ul li:nth-child(3) a,
.euaa-pagination__area ul li:nth-child(4) a,
.euaa-pagination__area ul li:nth-child(5) a,
.euaa-pagination__area ul li:nth-child(6) a {
    color: var(--highlight-color);
    padding: 0px 6px;
    background-color: var(--color-white);
}

.euaa-pagination__area ul li:last-child:hover a,
.euaa-pagination__area ul li:first-child:hover a {
    color: var(--highlight-color);
}
/***** Pagination Area - END *****/

/***** List with bullets - START *****/
ul.euaa-list-view {
    margin: 10px 0px;
    padding: 0px;
}

ul.euaa-list-view li {
    list-style-type: none;
    padding: 10px 0px;
}

ul.euaa-list-view li::before {
    content: "\25AA";
    padding-right: 10px;
    color: var(--euaa-color-blue);
    font-size: 14px;
}
/***** List with bullets - END *****/

/***** Member Area Side menu - START *****/
.euaa-side-menu {
    background-color: var(--euaa-color-yellow);
    position: absolute;
    top: 0;
    height: 100%;
    text-align: center;
    padding: 10px 10px;
    display: flex;
    align-items: center;
}

.euaa-side-menu i {
    color: var(--color-white);
    font-size: 26px;
}

.font-increase-size:hover {
    font-size: 50px;
    transition: 1s ease-out;
}
/***** Member Area Side menu - END *****/

/***** EUAA Side Menu Open - START *****/
.euaa-side-menu-open__aside {
    min-width: 350px;
    width: 15%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    width: 0px;
    min-width: 0px;
    overflow: hidden;
    transition: 0.35s width ease, 0.35s min-width ease;
    border-right: 1px solid var(--dark-text-color);
}

.euaa-side-menu-open__header {
    color: var(--color-white);
    font-size: 24px;
    background-color: var(--euaa-color-blue);
    padding: 22px 10px 18px 10px;
}

.euaa-side-menu-open__header .close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    margin-top: -55px;
}

.euaa-side-menu-open__header h2 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 24px;
}

.euaa-side-menu-open__header h2 i {
    font-size: 34px;
    padding-right: 5px;
}

.euaa-side-menu-open__content {
    overflow-y: scroll;
    height: 800px;
    padding: 0.5em;
    padding-bottom: 1em;
}

.euaa-side-menu-open__content ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-top: 18px;
    padding-bottom: 100px;
    position: relative;
}

.euaa-side-menu-open__content ul li {
    display: block;
    border: 1px solid var(--color-light-grey);
    border-left: none;
    border-right: none;
    font-weight: 400;
    padding-left: 14px;
    padding-right: 12px;
    padding-top: 10px;
    padding-bottom: 10px
}

.euaa-side-menu-open__content ul li a {
    display: block;
    font-weight: 400;
}

.euaa-side-menu-open__content ul li a i {
    float: right;
    font-size: 17px;
    margin-top: 4px;
}

.euaa-side-menu-open__content ul li ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    z-index: 9999999;
    display: none;
}

.euaa-side-menu-open__content ul li ul li {
    display: block;
    border: 1px solid var(--color-light-grey);
    border-left: none;
    border-right: none;
    font-weight: 400;
    padding: 10px 1px 10px 20px;
}

.euaa-side-menu-open__content ul li ul li a {
    display: block;
    font-weight: 400; 
}

.euaa-side-menu-open__content ul li:hover ul {
    display: block;
}

.euaa-side-menu-open__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: var(--dark-text-color);
    transition: 0.2s opacity ease;
    opacity: 0;
    display: none;
}

.euaa-side-menu-open__backdrop.in {
    display: block;
    opacity: 0.7;
}

.euaa-side-menu-open__aside.in {
    width: 15%;
    min-width: 350px;
}  
/***** EUAA Side Menu Open - END *****/

.ui-switcher {
    background-color: #bdc1c2;
    display: inline-block;
    height: 20px;
    width: 48px;
    top: -38px;
    left: 483%;
    position: absolute;
    border-radius: 10px;
    box-sizing: border-box;
    vertical-align: middle;
    cursor: pointer;
    transition: border-color 0.25s;
    margin: -2px 4px 0 0;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.euaa-calendar-info {
    display: flex;
}

    .euaa-calendar-info.euaa-calendar--event {
        font-size: 22px;
        margin-bottom: 24px;
    }

.euaa-calendar-info__icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: -2px;
    color: var(--euaa-color-blue);
}

.euaa-calendar-info__text {
    margin-bottom: 20px;
}

.euaa-calendar-info.euaa-calendar--date .euaa-calendar-info__text {
    /*margin-bottom: 0px;*/
}

.euaa-calendar-info.euaa-calendar--date .euaa-calendar-info__icon {
    margin-right: 12px;
    margin-top: 0px;
}

/* Publication Page */
.euaa-publication-detail__side {
}

.euaa-publication-detail__metadata {
    background-color: var(--color-light-grey);
    padding: 20px;
}

    .euaa-publication-detail__metadata > div:nth-child(odd) {
        font-weight: bold;
        margin-top: 10px;
    }

    .euaa-publication-detail__metadata > div:first-child {
        margin-top: 0px;
    }

.euaa-publication-detail__bottom {
    display: none;
}

.euaa-publication-detail__viewer {
    height: 100%;
    border: 1px solid var(--color-light-grey);
}


    .euaa-publication-detail__side ul.euaa-news-detail-area__share li a,
    .euaa-publication-detail__bottom ul.euaa-news-detail-area__share li a {
        margin: 0 6px;
    }

/* Who We Are page styling */
.euaa-management-team-panel {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 40px;
    border: 1px solid var(--color-border-grey);
    box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
    display: flex;
}

    .euaa-management-team-panel .euaa-management-team-panel__text {
        display: flex;
        flex-direction: column;
        max-height: 100%;
        justify-content: space-between;
    }

.euaa-management-team-panel .euaa-management-team-panel__text h3 {
    margin-bottom: 10px !important;
}

        .euaa-management-team-panel .euaa-management-team-panel__text p {
            font-size: 14px;
            line-height: 22px;
        }

    .euaa-management-team-panel .euaa-management-team-panel__image {
        border-radius: 10px;
        margin-top: -50px;
        margin-right: 20px;
    }

        .euaa-management-team-panel .euaa-management-team-panel__image img {
            /*border: 1px solid red;
            max-width: 100%;
            height: auto;*/
        }

    .euaa-management-team-panel .euaa-management-team-panel__link {
        display: flex;
    }

    .euaa-management-team-panel .euaa-management-team-panel__link-divider {
        border-right: 1px solid var(--color-border-grey);
        padding: 0px 5px;
        margin-right: 10px;
    }

/* Event Banner Styling */
.euaa-event-banner {
    /*background-color: var(--color-light-blue);*/
    background: linear-gradient(90deg, rgba(229,242,255,1) 0%, rgba(229,242,255,1) 73%, rgba(174,214,255,1) 75%, rgba(174,214,255,1) 100%);
}
.euaa-event-banner--container {
    display: flex;
    justify-content: space-between;
}

    .euaa-event-banner--container a.euaa-btn--ghost {
        color: var(--highlight-color);
        line-height: 18px;
        font-weight: 600;
        font-size: 16px;
    }

        .euaa-event-banner--container a.euaa-btn--ghost:hover {
            color: var(--color-white);
        }

.euaa-event-banner--left {
    display: flex;
    padding: 20px;
    justify-content: center;
}

    .euaa-event-banner--left > div {
        display: flex;
        align-items: center;
    }

.euaa-event-banner--icon {
    margin-right: 10px;
}

.euaa-event-banner--icon-img {
    background-image: url(../images/ukraine-flag.png);
    background-repeat: no-repeat;
    width: 60px;
    height: 40px;
    box-shadow: 0px 0px 2px #ccc;
}

.euaa-event-banner--title h4 {
    margin-right: 15px;
    margin-bottom: 0px;
}

.euaa-event-banner p {
    margin-top: 10px;
}

.euaa-event-banner--right {
    display: flex;
    justify-content: center;
}

.euaa-event-banner--right-img {
    background-image: url(../../images/arrow-bg-img.png);
    background-repeat: no-repeat;
    height: 128px;
    width: 160px;
}

.euaa-event-banner--right-number {
    background-color: #AED6FF;
    padding: 20px 0px 20px 20px;
    justify-content: center;
    display: flex;
}

.euaa-event-banner--right-number-box {
    display: flex;
    align-items: center;
    max-width: 440px;
}

/* Adding placeholder image */
.euaa-image-panel__img-placeholder {
    background-image: url(../../images/img-placeholder.png);
    background-repeat: no-repeat;
    height: 290px;
    width: 290px;
}