body{
    font-family: Roboto, sans-serif;
}

input:focus{
    outline: none;
}

a{
    text-decoration: none;
    color: #a2192b;
}

.grid{
    padding: 10px 50px;
    max-width: 1280px;
    margin: auto;
}

.content_container{
    max-width: 1280px;
    margin: auto;
}

.index{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.index h1{
    text-align: center;
    margin-bottom: 50px;
}

.fast_search{
    display: flex;
    height: 30px;
    font-size: 14px;
    flex: 1;
    display: none;
}

.legend{
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

.legend li{
    float: left;
    margin-right: 60px;
}

.legend img{
    margin-right: 15px;
    max-width: 15px;
}

.fast_search input{
    margin-right: 10px;
    padding-left: 5px;
    padding-right: 5px;
    font-style: italic;
    flex: 1;
}

.fast_search button{
    border: 0;
    background: #a2192b;
    color: #fff;
    text-transform: uppercase;
    max-width: 80px;
    flex: 0 0 80%;
}

.main .fast_search, .index .fast_search{
    margin-bottom: 20px;
}

.fast_search .zoom{
    height: 25px;
    position: absolute;
    top: 5px;
    left: 1px;
    cursor: pointer;
}

.fast_search .micro{
    height: 25px;
    position: absolute;
    top: 5px;
    right: 1px;
    cursor: pointer;
}

.index .capture{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.index .capture .block{
    width: 48%;
    font-size: 12px;
}

.index .nav{
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.index .nav h2{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}

.index .tabs{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.index .tabs .tab{
    flex: 0 1 0px;
}

.two_columns{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.two_columns .main{
    flex: 2;
    padding-right: 30px;
    flex-direction: column;
}

.two_columns .sub{
    flex: 0 1 32%;
}

.country_head_card{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.country_head_card .flag{
    width: 50px;
}

.country_head_card .stats{
    width: 100%;
    border: 1px solid #000;
    padding: 10px;
    margin-bottom: 10px;
}

.country_head_card .stats .stat_row{
    display: flex;
    justify-content: space-between;
}

.country_head_card p{
    font-size: 12px;
}

.bold{
    font-weight: bold;
}

.object_cards{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    /*max-height: 500px;*/
    /*height: 200px;*/
    align-items: flex-start;
}

.object_cards .col{
    /*flex: 0 1 32%;*/
}

.object_cards .card_with_head{
    display: flex;
    flex-direction: column;
    /*flex: 0 0 32%;*/
    margin-bottom: 30px;
    margin-right: 20px;
    width: 31%;
}

.card_with_head .head{
    font-weight: bold;
    font-size: 15px;
    color: #000;
    margin-bottom: 15px;
}

.card{
    display: flex;
    /*height: 250px;*/
    position: relative;
    padding: 25px 15px;
    justify-content: space-between;
    border-radius: 0;
    border: 0;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 25%);
}

.card.chart-line{
    height: 250px;
}

.card.chart-bar{
    height: 250px;
}

.card.list{
    min-height: 250px;
}

.card .intro_row{
    display: flex;
    margin-bottom: 30px;
}

.card .intro_row .type{
    display: flex;
    flex: 0 0 50px;
    background-color: #29b473;
    color: #fff;
    justify-content: center;
    align-items: flex-end;
    margin-top: -25px;
    font-size: 20px;
}

.card .intro_row .fast_search{
    margin-left: 10px;
}

.card .content_row{
    display: flex;
    justify-content: space-between;
}

.card .content_row ul{
    list-style: none;
    padding-left: 10px;
    margin: 0;
    font-size: 15px;
}

.card .content_row ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #a2192b; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}



.card .more{
    justify-content: flex-end;
    display: flex;
}

.card_holder{
    display: none;
}

.simple_stats{
    display: flex;
    border: 1px solid #000;
    padding: 20px;
    flex-direction: column;
    margin-bottom: 20px;
}

.simple_stats .stat_row{
    display: flex;
    justify-content: space-between;
}

.page_head h2{
    color: #fff;
    background: #000;
    font-size: 22px;
    width: fit-content;
    padding: 5px;
}

.neuro_prefix{
    font-size: 24px;
    color: #000;
}

.neuro_prefix .neuro_tag{
    font-weight: 900;
    text-transform: uppercase;
}

.neuro_prefix .neuro_for{
    font-weight: 300;
}

.main .page_head{
    margin-bottom: 20px;
}

.high .card{
    height: 350px;
}

.function_card .more{
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.function_card .intro_row .type{
    font-weight: bold;
}

.function_card .form_row textarea{
    width: 100%;
}

.function_card .button_row{
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.hide{
    display: none;
}


/*NAV MENU*/
.logo-bar{
    padding: 15px 50px;
    display: flex;
    background: #fff;
    height: 90px;
}

.logo-bar .logo{
    padding: 3px 0;
    display: flex;
    align-items: flex-end;
}

.logo-bar .logo a{
    display: flex;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    align-items: center;
}

.logo-bar .logo span{
    font-size: 12px;
    font-weight: 300;
    margin-left: 15px;
    font-family: Roboto, sans-serif;
    line-height: 15px;
}

.logo-menu{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex: 2;
}

.logo-menu .phone{
    line-height: 26px;
}

.logo-menu .phone a{
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
}

.logo-menu .menu-list ul{
    list-style: none;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 14px;
    margin: 0;
}

.logo-menu .menu-list li{
    display: inline-block;
    margin-left: 30px;
}

.logo-menu .menu-list a{
    text-decoration: none;
}

.info-bar {
    padding: 11px 40px;
    height: 40px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-bar .menu-list ul{
    list-style: none;
    font-size: 11px;
    line-height: 11px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.info-bar .menu-list li{
    display: inline-block;
    margin: 0 20px;
}

.info-bar .menu-list a{
    text-decoration: none;
    color: #a2192b;
}

.search-bar{
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    background: #e3e3e3;
    height: 60px;
}

.search-bar form{
    display: flex;
    height: 40px;
}

.search-bar form input{
    height: 100%;
    width: 500px;
    max-width: 100%;
    margin-right: 5px;
    font-style: italic;
    padding-left: 10px;
    padding-right: 10px;
}

.search-bar form button{
    min-width: 110px;
    height: 40px;
    background: #a2192b;
    color: #fff;
    border: 0;
    text-transform: uppercase;
    font-size: 15px;
}

.search-bar .search-stats{
    display: flex;
    font-size: 20px;
    color: #000;
}

.search-stats .stat{
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.search-stats .stat span{
    margin-left: 5px;
}

/*NAV MENU*/


.object_search{
    height: 30px;
    /*display: flex;*/
    margin-bottom: 15px;
    font-size: 14px;
    display: none;
}

.object_search input{
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 10px;
    flex: 2;
    font-style: italic;
}

.object_search button{
    text-transform: uppercase;
    color: #fff;
    background: #a2192b;
    max-width: 80px;
    border: 0;
    flex: 1;
}

.intro_text{
    font-size: 15px;
    line-height: 20px;
    color: #000;
}

.object_stats{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.object_stats .stat_head{
    background: #817F85;
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
}

.object_stats .stat_row{
    display: flex;
    height: 35px;
    margin-bottom: 5px;
}

.object_stats .stat_row .stat_label{
    font-size: 17px;
    color: #000;
    background: #eceded;
    flex: 3;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.object_stats .stat_row .stat_value{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    background: #d9d9d9;
    flex: 1;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.results{
    flex-direction: column;
    color: #a2192b;
}

.result h3{
    font-size: 16px;
    margin-bottom: 20px;
}

.result.card_with_head{
    margin-bottom: 20px;
    width: 100%;
    /*asd*/
}

.result .card{
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.result .card_row{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.result_stats{
    margin-bottom: 0;
    font-size: 15px;
    color: #000;
    font-weight: bold;
}

.result_stats li{
    margin-left: 60px;
    margin-right: 0;
}

/*.result_link{*/
    /*display: block;*/
/*}*/

.type_badge{
    width: fit-content;
    color: #817F85;
    background: #ededed;
    border: 0;
    font-size: 12px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    padding: 0 10px 0 16px;
}

.type_badge::before{
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 100%;
}

.badge_journals::before{
    background: #F05A28;
}

.badge_authors::before{
    background: #EC0000;
}

.badge_organisations::before{
    background: #29B473;
}



/*.hover-scale:hover{*/
    /*transform: scale(1.01);*/
    /*color: inherit;*/
/*}*/

.white-spinner{
    color: #fff !important;
}

.main_hero{
    /*width: calc(100% + 100px);*/
    width: 100%;
    /*max-width: 1280px;*/
    height: 100%;
    max-height: 265px;
    background: url("/images/bg.jpg");
    background-position: center;
    padding: 30px 50px;
}

.main_hero .intro_text{
    color: #fff;
    font-size: 17px;
    margin-bottom: 25px;
}

.search_module{
    display: flex;
    flex-direction: row;
}
.search_module .s_selector{
    flex: 0 0 190px;
}

.s_selector select{
    width: 100%;
    height: 40px;
    font-size: 15px;
    padding: 0 25px;
    text-transform: lowercase;
    border: 0;
    /*background: #d9d9d9;*/
    background: url(/svg/arrow.svg) no-repeat right #d9d9d9;
    -webkit-appearance: none;
    background-position-x: 90%;
}

.search_module .s_input{
    flex: 2;
}

.s_input input{
    width: 100%;
    height: 40px;
    padding: 0 25px;
    font-size: 15px;
    font-style: italic;
    border: 0;
}

.search_module .s_button{
    flex: 0 0 40px;
    background: #a2192b;
    border: 0;
}

.s_button img{
    max-width: 15px;
}

.main_hero .s_button{
    flex: 0 0 65px;
}

.main_hero .s_input input, .main_hero .s_selector select{
    height: 65px ;
}

.search_examples{
    color: #fff;
    font-size: 15px;
    /*padding-left: 190px;*/
    display: flex;
    margin-top: 25px;
}

.search_examples ul{
    /*list-style: none;*/
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
}

.search_examples ul li{
    float: left;
    margin-left: 10px;
    margin-right: 20px;
}

.search_examples a{
    color: #fff;
}

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

.search_container{
    width: calc(100% + 100px);
    background: #ededed;
    padding: 15px 50px;
    margin: 0 -50px;
    margin-bottom: 25px;
}

.page-link{
    border-radius: 0 !important;
    color: #a2192b;
}

.page-link:hover{
    color: #212529;
}

.page-link:focus{
    color: #a2192b;
    outline-color: #a2192b !important;
    box-shadow: 0 0 0 .25rem rgba(162, 25, 43,.25) ;
}

.active .page-link{
    background: #a2192b !important;
    border-color: #a2192b !important;
}

#item_ids{
    list-style: none;
    padding: 0;
    margin: 0;
}

.more_head{
    font-weight: bold;
    font-size: 15px;
    color: #000;
    margin-bottom: 15px;
}

.elpub_head.logo-bar{
    background: #a2192b;
    padding: 15px 40px;
    padding-bottom: 8px;
    height: 90px;
}

.elpub_head .nav{
    line-height: 23px;
}

.elpub_head img{
    max-width: 145px;
}

.elpub_head .logo{
    align-items: baseline;
}

.elpub_head .logo p{
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 0;
    margin-left: 19px;
    font-weight: 300;
}

.elpub_head .logo-menu{
    flex-direction: column;
    justify-content: flex-end;
}

.elpub_head .nav li{
    margin-left: 30px;
}

.elpub_head .nav a{
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.elpub_head .phone{
    margin-bottom: 14px;
}

.elpub_head .phone a{
    display: inline-block;
}

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

.elpub-nav{
    padding: 8px 40px;
    background: #f6f6f6;
}

.elpub-nav .nav{
    /*padding-left: 2px;*/
}

.elpub-nav a{
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
}

.elpub-nav li{
    margin-right: 40px;
}

.search-line{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 40px;
    height: 60px;
    text-align: left;
    background: #e3e3e3;
    flex-wrap: wrap;
}

.search-line input{
    height: 40px;
    width: 500px;
    max-width: 100%;
    vertical-align: top;
    margin-right: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    font-style: italic;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Arial;
}

.search-line button{
    display: inline-block;
    min-width: 110px;
    height: 40px;
    background: #a2192b;
    color: #fff;
    border: 0;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 10px;
}

.search-line .search-stats {
    font-size: 20px;
    line-height: 25px;
    color: #000;
    float: right;
    padding: 10px 0;
}

.search-line .search-stats-info {
    margin-left: 20px;
}

.elpub_footer{
    display: flex;
    background: #d9dadb;
    padding: 20px 40px;
    font-size: 13px;
    line-height: 14px;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.elpub_footer .address p{
    margin: 20px 0;
}

.footer_list{
    -webkit-columns: 2;
    columns: 2;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_list a{
    margin-bottom: 15px;
    display: inline-block;
    color: #000;
    line-height: 16px;
}

.footer_list a:hover{
    color: #0a58ca;
}

.elpub_footer .stamp{
    margin: 20px 0;
}

#menu-toggle{
    display: none;
}

.elpub_options{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.elpub_options a{
    height: 80px;
    border: 0;
    border-radius: 0;
    text-transform: uppercase;
    width: 100%;
    font-size: 25px;
    font-weight: bold;
    color: #a2192b;
    background: #f6f6f6;
    position: relative;
    text-align: center;
}

.elpub_options a:hover{
    color: #0066ff;
}

.elpub_options .consult{
    display: block;
    width: 100%;
    max-width: 777px;
    padding: 25px;
}

.elpub_options .connect{
    display: block;
    max-width: 374px;
    width: 100%;
    line-height: 20px;
    padding: 20px;
}


.elpub_options .consult:before{
    content: '';
    display: inline-block;
    width: 51px;
    height: 56px;
    background: url(../images/headphones.png) 0 0 no-repeat;
    position: absolute;
    left: 40px;
    top: 12px;
    padding-right: 20px;
}

.elpub_options .consult:hover:before{
    background-position: 0 100%;
}

.elpub_options .connect .smaller{
    font-size: 21px;
    text-transform: none;
    font-weight: 400;
}

.elpub_options .connect:before{
    content: '';
    display: inline-block;
    width: 42px;
    height: 48px;
    background: url(../images/bell.png) 0 0 no-repeat;
    position: absolute;
    left: 20px;
    top: 15px;
    padding-right: 20px;
}

.elpub_options .connect:hover:before{
    background-position: 0 100%;
}

@media (min-width: 1300px) {
    .elpub-nav .nav{
        padding: 0 10px;
    }
}

@media (max-width: 800px) {
    .search-line{
        height: auto;
        padding: 10px 15px;
    }

    .search-line form{
        width: 100%;
    }

    .search-line input{
        max-width: 65%;
    }

    .search-line button{
        max-width: 30%;
        width: 100%;
        min-width: auto;
    }

    .search_module .s_selector{
        flex: 0 0 45%;
    }

    .card_with_head{
        width: 100% !important;
        margin-right: 0 !important;
    }

    .fast_search {
        display: none;
    }

    .elpub_head{
        flex-direction: column;
        height: auto !important;
    }

    .elpub_footer{
        flex-direction: column;
    }

    .grid{
        padding: 20px 15px !important;
    }

    .search_container{
        width: calc(100% + 30px);
        margin: 0 -15px;
        padding: 15px;
    }

    .search-stats{
        font-size: 16px !important;
    }

    .logo-bar{
        padding: 15px !important;
    }

    .elpub-nav{
        padding: 0 15px;
        background: #f6f6f6;
    }

    .elpub-nav .nav {
        flex-direction: column;
    }

    .elpub-nav .nav li{
        padding: 10px 0;
    }

    .elpub-nav a{
        font-size: 13px;
    }

    .two_columns{
        flex-direction: column;
    }

    .two_columns .main{
        padding: 0;
    }

    .two_columns .sub{
        flex: 1;
    }

    #menu-toggle{
        display: block;
    }

    .elpub_head .logo-menu{
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .elpub_head .logo-menu .phone{
        margin: 0;
    }

    .elpub_head .logo-menu .phone a{
        font-size: 20px;
    }

    .elpub_head .logo-menu .nav{
        flex-direction: column;
        display: none;
        margin-top: 10px;
    }

    .elpub_head .logo-menu .nav li{
        margin: 0;
    }

    #red_menu{
        display: none;
    }

    #red_menu.show{
        display: flex;
        width: 100%;
    }

    #grey_menu{
        display: none;
    }

    #grey_menu.show{
        display: flex;
    }

    .elpub_head img{
        max-width: 90px;
    }

    .main_hero{
        width: 100%;
        box-sizing: content-box;
        padding: 30px 15px;
    }

    .main_hero .intro_text{
        font-size: 14px;
    }

    .main_hero .s_input input, .main_hero .s_selector select {
        height: 40px;
    }

    .main_hero .s_selector{
        flex: 0 0 35%;
    }

    .search_examples a, .search_examples span{
        font-size: 14px;
    }

    .search_examples{
        flex-direction: column;
    }

    .search_examples ul li{
        margin-left: 0;
    }

    .s_selector select, .s_input input{
        padding: 0 5px;
        font-size: 12px;
    }

    .main_hero .s_button{
        flex: 0 0 40px;
    }

    .main_hero .search_examples{
        padding: 0;
    }

    .elpub_options{
        flex-direction: column;
    }

    .elpub_options a{
        margin-bottom: 15px;
    }

    .elpub_options .consult{
        padding: 10px 100px;
        font-size: 21px;
    }

    .elpub_options .connect{
        max-width: inherit;
    }

    .elpub_options .connect:before{
        left: 40px;
    }

}

@media (max-width: 450px) {
    .result .card_row span{
        font-size: 12px;
        width: 60%;
    }
}

html, body{
    height: 100%;
}

body{
    display: flex;
    flex-direction: column;
}

#app{
    flex: 1 0 auto;
}

.elpub_footer{
    flex-shrink: 0;
}



.bg_red{
    background: #a2192b;
}

.bg_light_grey{
    background: #f6f6f6;
}

.bg_grey{
    background: #e3e3e3;
}

.bg_dark_grey{
    background: #d9dadb;
    border-top: 1px solid #a2192b;
}

