@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;*/
    --grey-text-color: #575757;
    --color-teal: #00ABBD;
    --color-pink: #EA506E;
    --color-purple: #8A1F59;
    --color-red: #E7352C;
    --color-border-grey: #E5E8ED;
    --color-alert-light: #FFF3CB;
    --color-light-blue: #e5f2ff;
    --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);
}

body a {
    color: var(--highlight-color);
    text-decoration: none;
}

    body a:hover {
        text-decoration: underline;
    }

body h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
}

body h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
}

body h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 15px;
}

body h4 {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}

body h5 {
    font-size: 18px;
    font-weight: normal;
    line-height: 26px;
}

body h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
}

body 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;
}

ul li ul {
    margin-top: 10px;
}

/***** Intro Text for Paragraphs - START *****/
.euaa-intro-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    color: var(--grey-text-color);
}
/***** Intro Text for Paragraphs - END *****/

/***** EUAA Logo - START *****/
.euaa-mobile-menu__burger a {
    width: 140px;
}
body 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);
    border-top: 3px solid var(--euaa-color-blue);
    color: var(--color-white);
    text-align: center;
    padding: 40px 10px 30px 10px;
    z-index: 2000;
    position: relative;
}

.asylum-tools:hover {
    border-top: 3px solid var(--euaa-color-yellow);
    cursor:pointer;
}

    .asylum-tools h2 {
        font-size: 26px;
        font-weight: 600;
        line-height: 34px;
    }

    .asylum-tools p {
        font-size: 14px;
        margin: 0px;
    }

    .asylum-tools i, .asylum-tools svg {
        color: var(--euaa-color-yellow);
        font-size: 28px;
        margin-top: 10px;
        cursor: pointer;
    }

        .asylum-tools svg:hover {
            /*transform: translateY(-2px);*/
        }

    .asylum-tools div.field--name-field-slogan {
        color: var(--euaa-color-yellow);
        font-weight: 500;
    }

    /***** 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: 410px;
    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: 350px;
    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: 410px;
    /*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%;
    height: 400px;
    margin-top: 10px;
}

    .euaa-main-header__map iframe {
        height: 400px;
    }

.header-carousel__text-box {
    background-color: var(--euaa-color-yellow);
    border-radius: 20px;
    border-top-left-radius: 0px;
    width: 200px;
    height: 200px;
    padding: 18px;
    position: absolute;
    bottom: 20px;
    right: 50px;
}

    .header-carousel__text-box:hover {
        transform: translateY(-4px);
        transition: all 100ms ease-out;
        cursor: pointer;
    }

.header-carousel__text-box-content {
    position: relative;
    height: 100%;
}

    .header-carousel__text-box-content h2 {
        font-size: 18px;
        font-weight: bold;
        line-height: 24px;
    }

    .header-carousel__text-box-content p {
        font-size: 16px;
        line-height: 20px;
    }

    .header-carousel__text-box-content a {
        color: var(--dark-text-color);
        font-weight: bold;
        vertical-align: bottom;
        position: absolute;
        bottom: 0;
    }

        .header-carousel__text-box-content a:hover {
            color: var(--dark-text-color);
        }

.header-carousel__image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.item {
    height: 410px;
}

/***** Top Right Menu - START *****/
.euaa-top-right-menu ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    text-align: center;
    float: right;
    margin-top: 42px;
    position: relative;
}

    .euaa-top-right-menu ul li {
        display: inline-block;
    }

        .euaa-top-right-menu ul li a {
            color: var(--highlight-color);
            font-size: 16px;
            display: block;
            margin: 0px 14px;
        }

        .euaa-top-right-menu ul li:nth-child(1) a {
            font-size: 20px;
            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 .fa-angle-down,
            .euaa-top-right-menu ul li:nth-child(3) a svg {
                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 5px;
    background-color: var(--color-white);
    padding-bottom: 1px;
    margin-left: -42px;
    display: none;
}

    .euaa-top-right-menu ul li ul li {
        display: block;
        max-width: 178px;
        background-color: var(--color-white);
        position: relative;
        padding-bottom: 5px;
    }

    .euaa-top-right-menu ul li ul li a svg {
        padding-right: 5px;
    }

        .euaa-top-right-menu ul li ul li a .svg-inline--fa.fa-w-16,
        .euaa-top-right-menu ul li ul li a .svg-inline--fa.fa-w-14 {
            width: auto;
            top: 0px;
            left: 0px;
        }

        .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 .fa-angle-down,
            .euaa-top-right-menu ul li ul li:nth-child(2) a .fa-angle-down,
            .euaa-top-right-menu ul li ul li:nth-child(3) a .fa-angle-down {
                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-dots .owl-dot span {
    /*transition: opacity 200ms ease;*/
    /*transition: all 1s ease;*/
}

.header-carousel.owl-theme .owl-nav {
    position: absolute;
    top: 100px;
    right: 50px;
}

.header-carousel.owl-carousel .owl-nav button.owl-prev,
.header-carousel.owl-carousel .owl-nav button.owl-next {
    font-size: 56px;
    color: var(--color-white);
    text-shadow: 2px 0px 3px #999;
}

    .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: 160px;
    right: 158px;
}

    .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: 10px 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 .fa-bars {
    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;
            width: 100%;
        }
            .euaa-mobile-menu__tab-content ul li a {
                    color: var(--color-white);
                    text-decoration: none;
                    font-weight: 500;
                    display: inline;
            }

            .euaa-mobile-menu__tab-content ul li ul {
                font-size: 13px;
            }

                .euaa-mobile-menu__tab-content ul li a:hover,
                .euaa-mobile-menu__tab-content ul li a:focus {
                    opacity: 0.8;
                    color: var(--color-white);;
                }

            .euaa-mobile-menu__tab-content ul li a .fa-angle-down {
                float: right;
            }

            .euaa-mobile-menu__tab-content ul li ul li:last-child {
                border-bottom: none;
            }

.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: 15px 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: 42px;
    /*z-index: 99999;*/
    z-index: 1500;
}

.header-part ul li {
    float: left;
}

    .header-part ul li a {
        color: var(--highlight-color);
        font-size: 15px;
        display: block;
        padding-left: 20px;
        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 {
    float: right;
}

    .euaa-top-search__box .form-row {
        display: flex;
    }

        .euaa-top-search__box .form-row > fieldset, .euaa-top-search__box .form-row > div {
            padding-right: 0px;
            padding-left: 0px;
        }

.euaa-top-search__box form {
    width: 100%;
    background-color: var(--color-light-grey);
    z-index: 90000;
}

    .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;
        border-radius: 0px;
    }

        .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);
        background-color: var(--euaa-color-blue);
        border: 0px solid var(--color-light-grey);
        border-radius: 0px;
        outline: none;
        padding: 8px 20px;
        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;
    display: flex;
    justify-content: space-between;
}

.dnheader-part ul li {
    display: inline-block;
}

.dnheader-part ul li a {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding: 24px 18px 24px 20px;
    border-bottom: 2px solid var(--euaa-color-blue);
}

.dnheader-part ul li a:hover,
.dnheader-part ul li a i:hover,
.dnheader-part ul li a i:focus,
.dnheader-part ul li a:focus {
    background-color: #4d4b7e;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 2px solid #4d4b7e;
}

.dnheader-part.dnheader-part ul li .fa-angle-down:hover {
    color: var(--color-white);
}

.dnheader-part ul li a .fa-angle-down {
    color: var(--euaa-color-yellow);
}

.dnheader-part ul li a.active {
    border-bottom: 2px solid var(--color-white);
}

    .dnheader-part ul li ul li a.active {
        border-bottom: 2px solid var(--euaa-color-blue);
    }


.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;
}

/* targeting the last navigation sub menu */
.dnheader-part ul li:last-child ul {
    right: 0px;
}

.dnheader-part ul li:last-child ul li {
    width: 210px;
}

.dnheader-part ul li ul li {
    display: block;
    background-color: var(--other-blue);
    max-width: 290px;
}

.dnheader-part ul li ul li a {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    display: block;
    padding: 16px 22px;
    line-height: 16px;
    padding-bottom: 18px;
    transition: 0.2s all ease;
    border-bottom: 2px solid var(--other-blue);
}

.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;
}

/* animation transition */
.owl-stage {
    /*transition: all 1s ease !important;*/
}

.asylum-tools .rotate {
    -webkit-animation: movement 2.5s linear infinite;
    animation: movement 2.5s linear infinite;
}

    .asylum-tools .rotate.down {
        /*-moz-transform: rotate(178deg);
        -webkit-transform: rotate(178deg);
        transform: rotate(178deg);*/
        -webkit-animation: rotation 0.5s linear 1;
        animation: rotation 0.5s linear 1;
    }

.rotate {
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

    .rotate.down {
        -moz-transform: rotate(178deg);
        -webkit-transform: rotate(178deg);
        transform: rotate(178deg);
    }

@-webkit-keyframes movement {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.2);
    }

    40% {
        transform: scale(1.4);
    }

    60% {
        transform: scale(1.8);
    }

    80% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes movement {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(1.4);
    }
    60% {
        transform: scale(1.8);
    }
    80% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}


@-webkit-keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(90deg):
    }
    100% {
        transform: rotate(180deg):
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(90deg):
    }

    100% {
        transform: rotate(180deg):
    }
}



/*--- 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%;
    height: auto;
}

.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;
            color: var(--highlight-color);
        }
/***** 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);
    box-shadow: 2px 2px 8px #dedede;
    padding: 20px;
    font-size: 14px;
    border-radius: 20px;
    border-bottom-right-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

    /*.euaa-pt-area__box:hover {
        transform: translateY(-5px);
        transition: 0.5s all ease;
    }*/

.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;
        box-shadow: 0px 2px 2px #ccc;
    }

    .euaa-pt-area__box img {
        border-bottom-left-radius: 20px;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.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);
}

.euaa-pt-area__image {
    width: 100%;
    margin-top: 10px;
}
/***** 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 .euaa-footer-disclaimer {
        color: #acacac;
        font-weight: 600;
        padding-bottom: 10px;
    }

    .pre-footer hr {
        margin-bottom: 20px;
        margin-left: 0px;
        width: 100%;
    }

hr.pre-footer-list-hr {
    width: 94%;
}

.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);
}

    .pre-footer a:hover {
        color: var(--euaa-color-yellow);
    }

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: 28px;
    display: block;
    margin: 0 10px;
    transition: 0.2s all ease;
}

    ul.pre-footer-icons li:first-child a {
        margin-left: 0px;
    }

.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 svg.fa-angle-down {
    font-size: 22px;
    color:var(--euaa-color-yellow);
}

    .pre-footer-sitemap svg:hover {
        cursor: pointer;
    }

.pre-footer-middle {
    max-width: 300px;
}

/***** Sitemap - Start *****/
.sitemap-area {
    display: none;
    margin-top: 30px;
}

ul.sitemap-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    list-style-type: none;
    padding-left: 0px;
}

ul.sitemap-submenu {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    margin-bottom: 30px;
    margin-right: 10px;
}

    ul.sitemap-submenu li {
        padding: 4px 0px;
        font-size: 14px;
    }

ul.sitemap-menu > li > a {
    font-weight: bold;
    font-size: 16px;
}

ul.sitemap-menu li a span {
    display: none;
}

ul.sitemap-menu li a {
    display: block;
    margin: 0 10px;
    transition: 0.2s all ease;
    margin-bottom: 10px;
}
/***** 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 {
        color: var(--euaa-color-yellow);
    }

.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;
    color: var(--color-white);
}

.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;
}

/* styling for search results */
.euaa-tools-area__search-results {
    background-color: var(--euaa-color-yellow-light);
    padding: 40px 0px;
}

    .euaa-tools-area__search-results ul {
        max-width: 72%;
        margin: 0 auto;
        padding: 0px;
    }

    .euaa-tools-area__search-results ul li {
        padding-bottom: 30px;
        list-style-type: none;
        /*display: block;
        text-align: center;*/
    }

        .euaa-tools-area__search-results ul li span {
            font-weight: 500;
        }

        .euaa-tools-area__search-results ul li h4 {
            font-size: 20px;
            display: block;
            font-weight: 600;
        }

        .euaa-tools-area__search-results ul li a {
            text-decoration: underline;
            color: var(--dark-text-color);
            padding-left: 10px;
            font-size: 16px;
            /*color: var(--dark-text-color);*/
            /*padding-left: 40px;*/
        }

            .euaa-tools-area__search-results ul li a:hover {
                text-decoration: none;
            }

       .euaa-tools-area__search-results p {
            margin-bottom: 10px;
       }

    .euaa-tools-area__search-more-results {
        max-width: 72%;
        margin: 0 auto;
        font-weight: bold;
    }

        .euaa-tools-area__search-more-results a {
            color: var(--dark-text-color);
            text-decoration: underline;
        }

            .euaa-tools-area__search-more-results a:hover {
                text-decoration: none;
            }

/***** Panel of Tools - END *****/
/* Search Results from the Home Page search in panel of tools */
.euaa-tools-area__search-results.euaa-tools-area__search-results--page {
    background-color: var(--color-white);
}

    .euaa-tools-area__search-results.euaa-tools-area__search-results--page ul {
        margin: 0;
    }

    .euaa-tools-area__search-results.euaa-tools-area__search-results--page ul li a {
        background-color: var(--color-white);
        color: var(--highlight-color);
        text-decoration: none;
    }

    .euaa-tools-area__search-results.euaa-tools-area__search-results--page ul li a:hover {
        text-decoration: underline;
    }

.euaa-tool-search-container {
    background-color: var(--color-light-grey);
    padding: 40px;
    position: relative;
}

.euaa-tool-search-container .euaa-coi-form {
    max-width: 100%;
}

.path-coi-search .euaa-tools-area__search-results {
    background-color: var(--color-white);
}

.path-coi-search .euaa-tools-area__search-results ul {
    max-width: 100%;
}

.path-coi-search .ajax-progress-throbber {
    position: absolute;
    top: 0;
    margin-top: -30px;
}


/***** 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;
    /*margin-top: 56px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

    .euaa-first-level-page-header__right .euaa-btn {
        justify-content: center;
    }
/***** 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;*/
    padding: 60px 0px 20px 0px;
    background-color: var(--color-white);
}

.euaa-first-level-page-content__row {
    padding-bottom: 60px;
}

.euaa-first-level-page-content__box {
    display: flex;
    margin-bottom: 40px;
}


    .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;
    /*margin-top: 24px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

    .euaa-second-level-page-header__right .euaa-btn {
        justify-content: center;
    }
/***** 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);
    position: relative;
}
/***** 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: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 4px;
    border-bottom-right-radius: 0px;
    margin-right: 12px;
    margin-top: 2px;
}
/***** Second Level Page Items - END *****/

/***** Second Level Page - Member Area - START *****/
.euaa-second-level-page-content--member-area img {
    max-width: 100%;
}
/***** Second Level Page - Member Area - 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;
    color: var(--dark-text-color);
}

    .euaa-login h2 {
        font-weight: bold;
        font-size: 36px;
    }

.euaa-login__text {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/***** 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;
}

/* styling for related content that is placed at the bottom */
.euaa-related-content-area--bottom {
    background-color: var(--color-light-grey);
    border: none;
    border-radius: 0px;
    box-shadow: none;
}

/* overriding nav-link padding */
.euaa-related-content-area .nav-link {
    padding: 0px 0px 14px 0px;
    color: var(--highlight-color);
}

/* Styling for related content which contains structured side menu links */
/* Civil Society Page*/
.euaa-related-content-area #block-civil-society:first-child > ul > li {
    border-bottom: 1px solid var(--color-border-grey);
    margin-bottom: 10px;
    font-weight: bold;
}

.euaa-related-content-area #block-civil-society:first-child > ul > li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}

    .euaa-related-content-area #block-civil-society ul li ul {
        padding-left: 20px;
    }


.euaa-related-content-area #block-civil-society ul li a {
    padding-bottom: 10px;
}
.euaa-related-content-area #block-civil-society .euaa-dropdown-menu {
    font-weight: normal;
}

    .euaa-related-content-area #block-civil-society ul.euaa-dropdown-menu li ul.euaa-dropdown-menu li {
        margin-left: -20px;
        font-size: 14px;
    }

        .euaa-related-content-area #block-civil-society ul.euaa-dropdown-menu li ul.euaa-dropdown-menu li a {
            padding-bottom: 5px;
        }

        .euaa-related-content-area #block-civil-society ul.euaa-dropdown-menu li ul.euaa-dropdown-menu li:last-child a:last-child {
            padding-bottom: 25px;
        }

        /***** 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: 40px 0px;
}

    .euaa-news-detail-area .euaa-intro-text {
        margin-top: 10px;
    }

    .euaa-news-detail-area h2 {
        font-size: 32px;
        font-weight: bold;
        padding: 5px 0px 20px 0px;
        margin: 0;
    }

    .euaa-news-detail-area h3:first-child {
        color: var(--grey-text-color);
        font-size: 14px;
        margin: 0px;
    }

    .euaa-news-detail-area h3 {
        color: var(--dark-text-color);
        font-size: 26px;
        font-weight: 600;
        line-height: 32px;
        margin-bottom: 15px;
    }

    .euaa-news-detail-area img {
        width: 100%;
        height: auto;
        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 .form-row {
        display: flex;
    }

    .euaa-search-results__box .form-row > fieldset, .euaa-search-results__box .form-row > div {
        padding-right: 0px;
        padding-left: 0px;
    }


    .euaa-search-results__box h2 {
        font-size: 20px;
        font-weight: bold;
        padding-bottom: 12px;
        margin: 0px;
    }

    .euaa-search-results__box form {
        border-radius: 0px;
    }

        .euaa-search-results__box form input[type="text"] {
            font-size: 14px;
            font-weight: 400;
            border: none;
            border-radius: 0px;
            padding: 10px;
            outline: none;
        }

        .euaa-search-results__box form button {
            color: var(--color-white);
            font-size: 16px;
            font-weight: 400;
            border: none;
            background: none;
            padding: 8px 14px;
            float: right;
            outline: none;
            background-color: var(--euaa-color-blue);
            border-radius: 0px;
        }

            .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: 20px 10px;
    display: flex;
    /*align-items: center;*/
}

.euaa-side-menu i, .euaa-side-menu svg {
    color: var(--dark-text-color);
    font-size: 26px;
    margin-bottom: 5px;
}

.euaa-side-menu__text {
    font-size: 14px;
    width: 50px;
}

    .euaa-side-menu__text span.fa-inverse {
        color: var(--dark-text-color);
    }

.font-increase-size:hover {
    font-size: 42px;
    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: -35px;
    margin-right: 10px;
}

.euaa-side-menu-open__header h2 {
    font-size: 22px;
    font-weight: 500;
    text-align: left;
    line-height: 24px;
}

.euaa-side-menu-open__header h2 i,
.euaa-side-menu-open__header h2 svg {
    font-size: 26px;
    margin-right: 10px;
    margin-left: 5px;
}

.euaa-side-menu-open__content {
    overflow-y: scroll;
    height: calc(100vh - 78px);
}

.euaa-side-menu-open__content ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-bottom: 40px;
    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: 10px 14px 10px 14px;
}

.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:first-child {
    border-top: none;
    padding-top: 18px;
}

    .euaa-side-menu-open__content ul li ul li:last-child {
        border-bottom: none;
    }

.euaa-side-menu-open__content ul li ul li a {
    display: block;
    font-weight: 400;
    color: var(--highlight-color);
}

/* .euaa-side-menu-open__content ul li:hover ul {
    display: block;
} */

.euaa-side-menu-open__content .nav-link svg.fa-angle-down {
    float: right;
    font-size: 20px;
}

.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: 14%;
    min-width: 340px;
}


/* overriding dropdown and navlink css */
.euaa-side-menu-open__content .dropdown-menu {
    border: none;
}
.euaa-side-menu-open__content .nav-link {
    padding: 0px;
}

/***** 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);
}


/* adding widths for procurement page table */
.page-view-procurements .euaa-responsive-table th:first-child {
    width: 30%;
}
.page-view-procurements .euaa-responsive-table th:nth-child(2) {
    width: 50%;
}
.page-view-procurements .euaa-responsive-table th:nth-child(3) {
    width: 10%;
}
.page-view-procurements .euaa-responsive-table th:nth-child(4) {
    width: 10%;
}

.page-view-procurements table {
    margin-bottom: 20px;
}

/* News List Page */
.page-view-news-and-events .euaa-news-area__item {
    margin-bottom: 40px;
}

/* All file--application-pdf images will be changed to the new one */
/* Procurement Page file image override */
 .file--application-pdf {
    background-image: url(../images/file-alt.png);
    min-height: 33px;
}


/* All file--x-office-document images will be changed to the new one */
.file--x-office-document {
    background-image: url(../images/file-word.png);
    min-height: 33px;
}

.file {
    padding-left: 40px;
}

/* Overriding pagination style */
.euaa-second-level-page-content nav .pagination {
    justify-content: center;
}

    .euaa-second-level-page-content nav .pagination .page-item.active .page-link {
        background-color: var(--highlight-color);
        border-color: var(--highlight-color);
        color: var(--color-white);
    }

    .euaa-second-level-page-content nav .pagination .page-link {
        color: var(--highlight-color);
    }

/* Contact us page styling */
.page-node-12179 {

}

    .page-node-12179 .field--type-geofield {
        margin-bottom: 30px;
    }

    /*.page-node-12179 .block-field-blocknodewebformfield-sidebar-content ul li {
        background-image: none;
        padding-left: 0px;
        margin-left: 0px;
    }

    .page-node-12179 .block-field-blocknodewebformfield-sidebar-content ul {
        padding-left: 0px;
        margin-left: 0px;
    }*/

    .page-node-12179 .block-field-blocknodewebformfield-sidebar-content {
        background-color: var(--color-light-grey);
        padding: 20px;
    }
    .page-node-12179 .block-field-blocknodewebformfield-webform {
        margin-left: 10px;
    }

    .page-node-12179 .contact-left h2 {
        margin-bottom: 10px;
    }

/* Careers main page styling */
.page-node-13935 .euaa-first-level-page-header__right {
    /* margin-top: 20px;*/
}

/* Careers - Vacancies page styling */
.page-node-13928 .view-vacancies {
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-node-13928 .view-vacancies .text-right {
    text-align: right;
}


/* FAQ page styling */
.faq-question-answer {
    padding: 10px 0px;
    border-bottom: 1px solid var(--color-light-grey);
    margin-bottom: 10px;
}

.faq-question a {
    font-size: 20px;
    /*background-image: url(../images/arrow-right.png);*/
    background-repeat: no-repeat;
}

.faq-question span a::after {
    /*content: "\203A";*/
    content: ".";
    color: var(--color-white);
    background: url(../images/arrow-right-blue.png);
    background-repeat: no-repeat;
    background-position: 6px 8px;
    position: absolute;
    width: 20px;
    /*font-size: 24px;
    line-height: 24px;*/
}

.faq-question.faq-qa-visible span a::after {
    content: ".";
    color: var(--color-white);
    background: url(../images/arrow-down-blue.png);
    background-repeat: no-repeat;
    background-position: 6px 10px;
    position: absolute;
    width: 24px;
}

.faq-answer {
    padding-left: 45px;
}
.faq-answer article {
    padding-top: 25px;
    padding-bottom: 10px;
}


/* Ovveriding table style for Governance documents page */
.page-node-13954 table tr:first-child {
    font-weight: normal;
}

/* Hiding map section - to be only used for small screens */
.euaa-main-header__map-mobile {
    display: none;
}

.euaa-map-circle {
    display: inline-block;
    transform: translateX(-50%) translateY(5%);
    width: 20px;
    height: 20px;
    margin-left: 14px;
    margin-bottom: -2px;
}

.euaa-map-circle:before {
    content: "";
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 50%;
    background-color: #01a4e9;
    -webkit-animation: pulsating 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: pulsating 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.euaa-map-circle:after {
    content: "";
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    -webkit-animation: pulse 4s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
    animation: pulse 4s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulsating {
    0% {
        transform: scale(0.33);
    }

    80%, 100% {
        opacity: 0;
    }
}

@keyframes pulsating {
    0% {
        transform: scale(0.33);
    }

    80%, 100% {
        opacity: 0;
    }
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

@keyframes pulsee {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

/* External link icon styling */
span.extlink {
    margin-left: 4px;
    margin-right: 4px; 
}

/* EUAA training tools page */
.page-node-13908 .euaa-second-level-page-content__tabs {
    margin-top: 0px;
}

/* Publication Page */
.euaa-publication-detail__side .field__label {
    font-weight: bold;
    margin-top: 10px;
}

.euaa-publication-detail__metadata {
    background-color: var(--color-light-grey);
    padding: 20px;
    font-size: 14px;
}

    .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;
}

.euaa-publication-detail__side .sharethis-wrapper {
    justify-content: space-between;
}

/* Who We Are page styling */
.page-node-14112 .ed-portrait img {
    max-width: 100%;
    height: auto;
}
.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: 24px;
        }

    .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;*/
            box-shadow: 0px 0px 3px var(--neutral-color-2);
            border-radius: 10px;
        }

    .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;
    }

/* styling for ebook pages */
.node--type-book .euaa-related-content-area {
    background: var(--color-light-grey);
    border: none;
    box-shadow: none;
    border-radius: 0px;
    line-height: 24px;
    font-size: 15px;
}

    .node--type-book .block.block-book.block-book-navigation ul li {
        font-weight: 500;
    }

        .node--type-book .block.block-book.block-book-navigation ul li ul li {
            margin-left: 20px;
            font-weight: normal;
            font-size: 14px;
            line-height: 22px;
        }

    .page-node-12880 .euaa-related-content-area ul li ul li a {
        /*border-left: 1px solid #ccc;
        padding-left: 15px;*/
    }

    .page-node-12880 .euaa-related-content-area ul li ul li:last-child a {
        /*margin-bottom: 10px;
        padding-bottom: 0px;*/
    }

.node--type-book .field--type-text-with-summary img {
    margin-right: 10px !important;
    margin-bottom: 10px !important;
}

/* styling for search area in home page */
.euaa-coi-form .form-item-search label {
    display: none;
}

.euaa-coi-form {
    max-width: 66%;
    margin: 0 auto;
}
    .euaa-coi-form fieldset.mb-3 {
        margin-bottom: 0px !important;
    }

    .euaa-coi-form .ajax-progress-throbber {
        display: block;
        text-align: center;
        position: absolute;
        top: 120px;
        left: 46.3%;
    }
        .euaa-coi-form .ajax-progress-throbber img {
            display: none;
        }

        .euaa-coi-form .ajax-progress-throbber .throbber {
            display: none;
        }

.euaa-tools-area__search {
    position: relative;
    padding-bottom: 20px;
}

/* override for node__content style */
.node__content {
    font-size: 16px;
}

/* override for site-footer link color on hover */
.site-footer .content a:hover, .site-footer .content a:focus {
    color: var(--euaa-color-yellow);
}

/* styling to override images */
.sharethis-wrapper {
    margin-top: 20px;
    display: flex;
}

.st_facebook_custom, .st_twitter_custom, .st_linkedin_custom, .st_email_custom {
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.st_facebook_custom {
    background-image: url(../images/facebook-f.png);
    width: 13px;
    height: 25px;
}
.st_twitter_custom {
    background-image: url(../images/twitter.png);
    width: 30px;
    height: 20px;
    margin-top: 4px;
}
.st_linkedin_custom {
    background-image: url(../images/linkedin-in.png);
    width: 24px;
    height: 24px;
}
.st_email_custom {
    background-image: url(../images/email.png);
    width: 27px;
    height: 20px;
    margin-top: 4px;
    margin-right: 0px;
}

.st_facebook_custom:hover {
    background-image: url(../images/facebook-f_dark.png);
}
.st_twitter_custom:hover {
    background-image: url(../images/twitter_dark.png);
}
.st_linkedin_custom:hover {
    background-image: url(../images/linkedin-in_dark.png);
}
.st_email_custom:hover {
    background-image: url(../images/email_dark.png);
}

/* override for euaa-panel in paragraph content - LAT page */
.page-node-14115 .euaa-panel {
    height: auto;
}

.page-node-14115 ul.euaa-bullet-list-outline li {
    list-style-type: none;
}

.page-node-14115 ul.euaa-bullet-list-outline li h3 {
    line-height: 24px;
}

.page-node-14115 ul.euaa-bullet-list-outline {
    padding-left: 0px;
}

.page-node-14115 .euaa-panel h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 24px;
}

.page-node-14115 .euaa-panel h3 {
    line-height: 24px;
}

.page-node-14115 .euaa-panel.euaa-panel--light-blue ul.euaa-bullet-list {
    padding-left: 0px;
}

.page-node-14115 .flourish-interactive,
.page-node-14115 .flourish-map {
    width: 90%;
    margin: 0 auto;
}

.page-node-14115 .euaa-footer-box .euaa-discreet-text {
    width: 66%;
    margin: 0 auto;
}

.page-node-14115 .euaa-panel p:last-child {
    margin-bottom: 0px;
}

.page-node-14115 .map-small-text {
    width: 90%;
    margin: 0 auto;
}

/* styling to override tab margins at the top */
.euaa-second-level-page-content__tabs {
    margin-top: 0px;
}

.a11y-paragraphs-tabs__section-title {
    /*display: none;*/
    font-size: 20px;
    font-weight: 600;
}

/* styling override for margin */
.field--type-image img, .field--name-field-user-picture img {
    margin: 0px;
}

/* */
.page-node-13914 span.extlink {
    color: var(--color-white);
}
.page-node-13914 .euaa-related-content-area span.extlink {
    color: var(--highlight-color);
}

/* overriding ui-widget-content anchor tag styling */
.ui-widget-content a {
    color: var(--highlight-color);
}

/* publications page */
.page-view-publications .view-publications {
    margin-top: 30px;
    margin-bottom: 60px;
    border: 1px solid transparent;
}

.page-veiw-publications .view-publications .pagination {
    margin-top: 10px;
}

/* procurement page */
.page-view-procurements .view-procurements {
    margin-top: 30px;
    margin-bottom: 60px;
    border: 1px solid transparent;
}

.page-view-procurements .view-procurements table caption {
    color: var(--dark-text-color);
    padding-top: 25px;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
}

/* Overriding style for Cookie Policy */
.site-footer .content ol:not(.menu), .site-footer .content .cookiesjsr--app ul:not(.menu) {
    padding-left: 0px;
}


    .cookiesjsr-btn.important,
    .cookiesjsr-btn.invert,
    .cookiesjsr-banner button.denyAll {
        border-radius: 4px;
    }



/* Override Cookie Policy styling */
.euaa-cookies .cookiesjsr-banner {
    background: #0F3E95;
    border-top: 2px solid var(--euaa-color-yellow);
}

.euaa-cookies .cookiesjsr-links.links--row li a {
    color: var(--euaa-color-yellow);
    font-size: 16px;
}

.euaa-cookies .cookiesjsr-banner--action {
    margin-right: 20px;
}

.euaa-cookies .cookiesjsr-btn.important {
    background-color: var(--euaa-color-yellow);
    border: 2px solid var(--euaa-color-yellow);
    color: var(--dark-text-color);
    font-weight: 600;
}

    .euaa-cookies .cookiesjsr-btn.important::before {
        content: ".";
        color: var(--euaa-color-yellow);
        font-weight: bold;
        background-image: url(../images/checkmark-darkgrey.png);
        background-repeat: no-repeat;
        width: 24px;
        margin-top: 4px;
    }


.euaa-cookies .cookiesjsr-layer--footer .cookiesjsr-btn.important::before {
    margin-top: 8px;
}

.euaa-cookies .cookiesjsr-btn.cookiesjsr-settings {
    background-color: #0F3E95;
    border: 2px solid var(--euaa-color-yellow);
    color: var(--euaa-color-yellow);
    border-radius: 4px;
}

.euaa-cookies .cookiesjsr-banner button.denyAll {
    background-color: #0F3E95;
    border: 2px solid var(--euaa-color-yellow);
    color: var(--euaa-color-yellow);
    border-radius: 4px;
}

.cookiesjsr-layer button.denyAll {
    display: inline-block;
}

.euaa-cookies .cookiesjsr-service--description h3 {
    font-weight: 600;
    font-size: 18px;
}

.euaa-cookies .cookiesjsr-layer--title {
    font-weight: bold;
}

.euaa-cookies .cookiesjsr-service--always-on {
    font-weight: 600;
    font-size: 16px;
}

.euaa-cookies .cookiesjsr-service-group.active .cookiesjsr-service-group--tab {
    border-left: 2px solid var(--euaa-color-yellow);
}

/* hover effect */
.euaa-cookies .cookiesjsr-btn:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

/* always showing the no thanks button */
.euaa-cookies .cookiesjsr-banner button.denyAll {
    display: inline-block;
}

/* overriding the paddings, margins and overflow for the text area of the cookie banner */
.euaa-cookies .cookiesjsr-banner--info {
    padding: 10px;
    margin-bottom: 0px;
    overflow: hidden;
}

@media (max-width: 768px) {
    /* changing border left to border top for small screens */
    .euaa-cookies .cookiesjsr-service-group.active .cookiesjsr-service-group--tab {
        border-top: 2px solid var(--euaa-color-yellow);
        border-left: none;
    }
    .euaa-cookies .cookiesjsr-banner--info {
        padding: 0px;
    }

    .euaa-cookies .cookiesjsr-banner--action {
        margin-left: -10px;
        margin-right: 0px;
        margin-top: 15px;
    }

    .euaa-cookies .cookiesjsr-banner--text {
        margin-right: 10px;
    }

    .euaa-cookies .cookiesjsr-links {
        flex-direction: row;
    }
}

/* override for footer subscribe button */
.site-footer .content a.euaa-btn--primary {
    color: var(--dark-text-color);
}

/* utilities */
.u-mar-b-xl {
    margin-bottom: 20px;
}

/* styling Archive of Operations page */
.page-view-archive-of-operations .euaa-filter-area {
    margin-top: 40px;
}

.page-view-archive-of-operations .euaa-responsive-table {
    margin-bottom: 60px;
}

/* styling Vulnerability page */
.page-node-13926 .euaa-panel.euaa-panel--outline ul li ul li {
    padding: 0px 10px 10px 20px;
    background-image: url(../images/bullet-yellow-sml.png);
    background-position: 0px 6px;
    background-repeat: no-repeat;
    list-style-type: none;
}

/* Styling side navigation for ebooks */
.euaa-related-content-area .dropdown-menu {
    position: relative;
    border: none;
    background: none;
    border-radius: 0px;
}

/* moving arrow icon to the right */
.euaa-related-content-area .block-book-navigation .svg-inline--fa {
    float: right;
    margin-top: 6px;
}

.euaa-related-content-area ul.dropdown-menu li a:hover {
    color: var(--dark-text-color);
}

.euaa-related-content-area ul.dropdown-menu li a {
    border-left: 1px solid #ccc;
    padding-left: 10px;
}

/*.euaa-related-content-area ul.dropdown-menu li {
    padding: 0px 0px 15px 0px;
}*/

    .euaa-related-content-area ul.dropdown-menu li:last-child {
        /**/
    }

        .euaa-related-content-area ul.dropdown-menu li:last-child a {
            padding-bottom: 0px;
        }

        .euaa-related-content-area ul.dropdown-menu {
            margin-bottom: 10px;
        }

            .euaa-related-content-area ul.dropdown-menu li:last-child ul.dropdown-menu li a {
                padding: 7px 0px 7px 10px;
            }

/* Targeting images in restricted area pages - so the images don't overflow over their div container */
.page-node-14052 img,
.page-node-14061 img,
.page-node-13524 img,
.page-node-14079 img {
    width: 100%;
    height: 100%;
}

.page-node-14070 img {
    width: 100% !important;
    height: 100% !important;
}

.page-node-14052 .euaa-logo img,
.page-node-14061 .euaa-logo img,
.page-node-13524 .euaa-logo img,
.page-node-14079 .euaa-logo img {
    width: 206px;
    height: 100px;
}

.page-node-14070 .euaa-logo img {
    width: 206px !important;
    height: 100px !important;
}

.pre-footer-icons .fa-external-link-alt {
    display: none;
}

.pre-footer-newsletter {
    margin-top: 25px;
    margin-bottom: 25px;
}


/* PDF Viewer styling */
.pdf-reader-embed object#pdf_reader {
    width: 100%;
}

/* Fixing button in panel */
.page-node-13942 .euaa-panel--light-blue .euaa-btn {
    display: block;
}

.page-node-13942 .euaa-btn {
    display: inline-block;
}

/* Styling for images in d3-v4 pages */
.node--type-d3-v4-page img {
    max-width: 100%;
}

.node--type-d3-v4-page .euaa-logo img {
    width: 206px;
    height: 100px;
    max-width: 206px;
}

/* Styling for d3-v4 charts */
.hor-bar-chart-container {
    display: flex;
}

.hor-bar-chart {
    width: 100%;
    margin-bottom: 20px;
}

    .hor-bar-chart .axis path {
        display: none;
    }

    .hor-bar-chart text,
    div#vis text {
        font-size: 11px;
    }

div#vis {
    margin-top: 20px;
}

/* Styling for d3-v4 charts in member area */
#detailVis text {
    font-size: 11px;
}

#detailVis .axis path,
#gbarChart-vs4 .axis path {
    display: none;
}

#detailVis .y2.axis {
    margin-bottom: 10px;
}



/* Styling buttons in d3-v4 chart pages */
button#play,
button#resetApplicants,
button#reset {
    border: 2px solid var(--highlight-color);
    border-radius: 4px;
    background-color: var(--color-white);
    color: var(--highlight-color);
    padding: 8px 18px;
    margin: 5px 0px 15px 5px;
}

button#play:hover,
button#resetApplicants:hover,
button#reset:hover {
    border: 2px solid var(--highlight-color);
    background-color: var(--highlight-color);
    color: var(--color-white);
}

/* Styling for d3-v4 charts in specific pages */
.page-node-19298 .hor-bar-chart,
.page-node-11272 .hor-bar-chart,
.page-node-12640 .hor-bar-chart {
    width: 276px;
}

/* overriding img style in specific page */
.page-node-13850 img {
    max-width: 100%;
}

/* National Asylum Developments Page styling */
.path-national-asylum-developments-database table {
    margin-bottom: 30px;
}

.path-national-asylum-developments-database .pagination {
    padding-bottom: 40px;
}

/* National Developments CSS from old website */
td.views-field.views-field-field-thematic-icon.type-of-development-14887 {
    background-color: #ffcc00;
}

td.views-field.views-field-field-thematic-icon.type-of-development-14888 {
    background-color: var(--euaa-color-blue);
}

td.views-field.views-field-field-thematic-icon.type-of-development-14889 {
    background-color: #8dc63f;
}

td.views-field.views-field-field-thematic-icon.type-of-development-14890 {
    background-color: #a0336f;
}

td.views-field.views-field-field-thematic-icon.type-of-development-14891 {
    background-color: var(--color-teal);
}

/* Styling pagination */
.path-national-asylum-developments-database .page-item.active .page-link {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.path-national-asylum-developments-database .page-link {
    color: var(--highlight-color);
}

/* Overriding style for h3 */
.text-formatted ul li h3 {
    font-weight: 600;
    color: var(--dark-text-color);
}