:root {
    --light-blue: #BED4FF;
    --light-blue-alpha: #BED4FF3F;
    --datk-blue: #001A5E;
    --violet: #708BE2;
    --violet-2: #A1B3EC;
    --violet-3: #BED4FF;
    --violet-hover: #C5D8FF;
    --green: #00BA9D;
    --red: #FF585A;
    --grey: #EDEDED;
    --grey2: #878787;
    --grey4: #817F85;
    --orange: #F05A28;
    --dark-green: #1B7B4E;
    --blue: #1B75BB;

    --alegreya-font: 'Alegreya Sans', sans
}

body{
    font-family: var(--alegreya-font);
}

body.index_page{
    background: url("/images/bg_blue.webp");
    background-size: cover;
}

input:focus{
    outline: none;
}

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

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

.grid.w2500{
    max-width: 2500px;
}

.anti_grid{
    margin: -20px -50px;
}

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

.content_container.w2500{
    max-width: 2500px;
    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: var(--datk-blue);
    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;
}

.light_head{
    font-size: 17px;
    font-weight: bold;
    color: var(--violet-2);
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

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

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

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

.object_cards .card_with_head.wide_card{
    width: 100%;
}



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

.card{
    display: flex;
    /*height: 250px;*/
    position: relative;
    padding: 15px 25px;
    justify-content: space-between;
    border-radius: 0;
    border: 0;
}

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

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

.wide_card .chart-bar{
    height: 1000px;
}

.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: 700;
    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%;
    border-radius: 15px;
    border: 1px solid var(--grey2);
    padding: 15px;
}

.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: var(--light-blue);
    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: center;
    justify-content: flex-end;
    flex: 2;
    padding-right: 67px;
    font-family: var(--alegreya-font);
    font-size: 16px;
    font-weight: 700;
}

.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: 85px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.logo-menu .menu-list a{
    text-decoration: none;
    color: var(--datk-blue);
}

.logo-menu .menu-list a:hover{
    text-decoration: none;
    color: var(--red);
}

.login-bar{
    display: flex;
    display: none!important;
    align-items: center;
    justify-content: center;
    background: var(--datk-blue);
    margin-right: -50px;
    margin-bottom: -15px;
    margin-top: -15px;
    width: 100%;
    max-width: 170px;
    font-family: var(--alegreya-font);
    font-size: 16px;
    font-weight: 700;
}

.login-bar a{
    display: block;
    color: #fff;
    text-transform: uppercase;
}

.login-bar:hover {
    background: var(--red);
}

.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: var(--datk-blue);
}

.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: var(--datk-blue);
    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: var(--datk-blue);
    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;
    border-radius: 15px 15px 0 0;
}

.stat_head.total{
    margin-bottom: 10px;
}

.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: var(--datk-blue);
}

.result_link{
    color: var(--datk-blue);
}

.result_link:hover{
    color: var(--red);
}

.result h3{
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

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

.result .card, .result.card{
    border: 1px solid var(--grey2);
    border-radius: 15px;
}

.result .card_row{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--datk-blue);
}

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

.text-dark-blue{
    color: var(--datk-blue);
}

.violet_select{
    background: var(--violet-2);
    border-radius: 60px;
    height: 60px;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    border: 0;
}

.main_hero{
    /*width: calc(100% + 100px);*/
    width: 100%;
    /*max-width: 1280px;*/
    height: 100%;
    /*max-height: 265px;*/
    /*background: url("/images/bg_blue.webp");*/
    background-position: center;
    padding: 200px 50px;
    display: flex;
    justify-content: center;
}

.hero_search {
    display: flex;
}

.hero_search .hero_logo{
    max-width: 317px;
    margin-right: 21px;
}

.main_hero .intro_text{
    color: var(--violet);
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: bold;
    max-width: 540px;
    margin-left: 40px;
}

.hero_input{
    flex: 2;
}

.search_module{
    display: flex;
    flex-direction: row;
    max-width: 600px;
    background: #fff;
    border-radius: 60px;
}
.search_module .s_selector{
    flex: 0 0 175px;
}

.s_selector select{
    width: 100%;
    height: 40px;
    font-size: 13px;
    font-weight: 400;
    padding: 0 25px;
    border: 0;
    border-radius: 60px;
    background: var(--violet-3);
    text-transform: uppercase;
    text-align: center;
    /*background: url(/images/13.svg) no-repeat right #d9d9d9;*/
    /*-webkit-appearance: none;*/
    /*background-position-x: 90%;*/
}

.s_selector option{
    text-transform: uppercase;
}

.search_module .s_input{
    flex: 2;
}

.s_input input{
    width: 100%;
    height: 40px;
    padding: 0 25px;
    font-size: 15px;
    font-style: italic;
    border: 0;
    color: var(--grey4);
    font-weight: 400;
}

.s_button{
    flex: 0 0 40px;
    background: var(--green);
    border: 0;
    border-radius: 60px;
}

._s_button{
    flex: 0 0 60px;
    background: var(--green);
    border: 0;
    border-radius: 60px;
    height: 60px;
}

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

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

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

.search_examples{
    color: var(--violet);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    margin-top: 12px;
    margin-left: 40px;
}

.search_examples ul{
    /*list-style: none;*/
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--violet);
}

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

.search_examples a{
    font-style: italic;
    color: var(--violet);
}

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

.search_container{
    background: #ededed;
    padding: 20px 40px;
    margin-bottom: 25px;
    border-radius: 15px;
}

.page-link{
    border-radius: 0 !important;
    color: var(--datk-blue);
}

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

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

.active .page-link{
    background: var(--datk-blue) !important;
    border-color: var(--datk-blue) !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: var(--datk-blue);
    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: var(--datk-blue);
    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: var(--violet-2);
    padding: 20px 40px;
    font-size: 13px;
    line-height: 14px;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.elpub_footer .address{
    height: 100%;
    display: flex;
    align-items: center;
}

.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: var(--datk-blue);
    line-height: 16px;
}

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

.elpub_footer .stamp{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--datk-blue);
}

#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: var(--datk-blue);
    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%;
}

.panel{
    background: var(--grey);
    border-radius: 15px;
    padding: 30px;
}

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

.block_column .description{
    font-size: 15px;
    margin-bottom: 15px;
}

.block_column .description.second{
    margin-top: 15px;
}

.block_column .light_head{
    margin-top: 50px;
}

.block_column textarea{
    width: 100%;
    height: 150px;
    border-radius: 15px;
    border: 1px solid var(--grey2);
    padding: 15px;
}

a.result:hover{
    color: var(--red);
}

.block_column select{
    width: 100%;
}

.block_column:nth-child(1){
    flex: 2;
}

.block_column:nth-child(2) {
    flex: 0 1 60px;
    margin-left: 20px;
    padding-top: 90px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.results_container{
    margin-top: 20px;
}

#spinner.hide{
    display: none;
}

.card.single_line{
    flex-direction: row;
    align-items: center;
}

a.result.card_with_head{
    display: block;
}

.card.single_line h3{
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

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

.results_heading span{
    color: #817F85;
}

.results_heading span:nth-child(2){
    width: 10%;
    text-align: right;
    font-size: 24px;
    padding-right: 15px;
}

.card.single_line span{
    width: 10%;
    text-align: right;
    font-size: 25px;
    font-weight: 700;
    color: #000;
}

.action_button{
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: 15px;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 21px;
}

.custom-file-input.form-control{
    border-radius: 15px;
    color: var(--grey4);
    font-style: italic;
}

.filter_table{
    padding: 30px;
    border-radius: 15px;
    background: var(--grey);
}

.filter_table .heading{
    font-size: 24px;
    font-weight: 700;
}

.filter_table .filter_type .head{
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    color: #001A5E;
}

.filter_table .filter_type{
    border-bottom: 1px dashed #878787;
    margin-bottom: 10px;
    color: var(--datk-blue);
}

.filter_table ul{
    list-style: none;
    padding: 0;
}

.filter_type input[type=checkbox]{
    border-radius: 0;
}

.filter_type input[type=checkbox]:checked{
    background-color: var(--violet);
    border: #a2192b;
}

.filter_type input[type=range]::-webkit-slider-thumb{
    background-color: #a2192b;
}

.filter_type .col-sm-10{
    display: flex;
    align-items: center;
}

.filter_type .col-sm-10 input{
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.journal_selection span:nth-child(2){
    text-align: right;
}

.filter_table .action_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter_table .action_button:hover{
    background-color: var(--red);
}

.upload_form .custom-file{
    margin: 15px 0;
}

.article_stats{
    width: 100%;
}

.card.green{
    border-right: 5px solid green;
}

.card.red{
    border-right: 5px solid red;
}

.card.yellow{
    border-right: 5px solid yellow;
}

.results_decode{
    display: flex;
    flex-direction: column;
    font-size: 10px;
    /*justify-content: flex-end;*/
}

.results_decode span{
    margin-bottom: 5px;
}

.yellow_border{
    text-align: right;
    border-right: 5px solid yellow;
    padding-right: 5px;
}

.green_border{
    text-align: right;
    border-right: 5px solid green;
    padding-right: 5px;
}

.card.p25{
    padding: 25px 15px;
}

.sub_menu{
    display: flex;
    flex-direction: column;
}

.sub_menu .sub_menu_item{
    display: block;
    padding: 22px 15px;
    color: var(--datk-blue);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--grey);
    border: 2px solid var(--grey);
    border-radius: 15px;
    margin-bottom: 5px;
}

.sub_menu .sub_menu_item:hover{
    border: 2px solid var(--violet-2);
}

.sub_menu_item.active{
    background: var(--violet-hover);
    border: 2px solid var(--violet-hover);
}

.about_head{
    font-weight: bold;
    font-size: 18px;
}

.about_ul{
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 18px;
}

.services{
    position: relative;
}

.services:after{
    content: " ";
    background: url("/svg/arr_down.svg");
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
    position: absolute;
    right: -25px;
    top: 0;
}

#services_options{
    display: none;
    position: absolute;
    left: -10px;
    list-style: none;
    background: var(--light-blue);
    padding-top: 40px;
    padding-left: 0;
    width: 425px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 2;
}

#services_options a.active{
    background: 0;
    border: 0;
    color: var(--red);
}

#services_options li a:hover{
    color: var(--datk-blue);
}

#services_options li a.active:hover{
    color: var(--red);
}

#services_options.show{
    display: block;
}

#services_options li{
    margin: 0;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
}

#services_options li:hover{
    background: #ffffff3f;
}

.mobile_menu{
    display: none;
}

#menu__toggle {
    opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
    left: 0 !important;
}
.menu__btn {
    position: fixed;
    top: 27px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--datk-blue);
    transition-duration: .25s;
}
.menu__btn > span::before {
    content: '';
    top: -8px;
}
.menu__btn > span::after {
    content: '';
    top: 8px;
}
.menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: var(--light-blue);
    transition-duration: .25s;
    overflow: auto;
}
.menu__item {
    display: block;
    padding: 12px 24px;
    color: var(--datk-blue);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
}

.menu__item.active{
    color: var(--red);
}
.menu__item:hover {
    background-color: #CFD8DC;
}

.hamburger-menu{
    height: 60px;
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 10;
}

.hamburger-menu .logo img{
    max-width: 80px;
}

.hamburger-menu .logo{
    position: fixed;
    right: 20px;
    top: 12px;
}

#services_items{
    display: none;
}

#services_items.show{
    display: block;
}

#cs{
    height: 60px;
    width: 100%;
    position: relative;
    border: 0;
    border-radius: 60px;
    background: var(--light-blue);
    z-index: 1;
    /*text-align: left;*/
    /*padding-left: 35px;*/
    text-align: center;
}

.search_module #cs{
    flex: 0 0 175px;
    height: auto;
}

#cs.open:before{
    content: "";
    position: absolute;
    background: var(--light-blue);
    top: 50%;
    left: 0;
    height: 40px;
    width: 100%;
    z-index: -1;
    opacity: 1;
}

#cs #cs_drop{
    position: absolute;
    left: 0;
    top: 50%;
    background: var(--light-blue);
    width: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-top: 30px;
    z-index: -2;
    display: none;
    max-height: 280px;
    overflow: overlay;
}

#cs #cs_drop .cs_item{
    padding-left: 35px;
    padding-top: 15px;
    padding-bottom: 15px;
}

#cs #cs_drop.show{
    display: block;
}

#cs .cs_item:hover{
    /*background-color: var(--light-blue-alpha);*/
    background: #ffffff3f;
}

#cs .cs_item:last-child:hover{
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}


#cs .cs_item.hide{
    display: none;
}

#cs .cs_item.journal{
    color: var(--orange);
}

#cs .cs_item.organisation{
    color: var(--blue);
}

#cs .cs_item.author{
    color: var(--dark-green);
}

#cs #cs_qtype:after{
    content: none;
    background: url("/svg/arr_down.svg");
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
    position: absolute;
    right: 21px;
    top: 37%;
}


#cs #cs_qtype.open:after{
    content: " ";
    background: url("/svg/arr_up.svg");
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
    position: absolute;
    right: 21px;
    top: 37%;
}

.search_module .s_button:hover{
    background-color: #FF585A;
}

.panel ._s_button:hover{
    background-color: var(--red);
}

.upload_form .action_button:hover{
    background-color: var(--red);
}

.progress{
    width: 100%;
    overflow: initial;
    justify-content: flex-end;
    background: linear-gradient(90deg, rgba(245,10,10,1) 0%, rgba(234,244,53,1) 50%, rgba(0,255,57,1) 100%);
}

.progress .progress-bar{
    float: right;
    overflow: initial;
    background: #e9ecef;
    position: relative;
}

.progress .progress-label{
    position: absolute;
    font-size: 13px;
    top: -18px;
    left: -7px;
    color: #000;
    font-weight: bold;
}

@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;
        margin-top: 60px;
    }

    .search_container{
        width: 100%;
        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-reverse;
    }

    .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: fit-content;
        box-sizing: content-box;
        padding: 30px 15px;
    }

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

    .block_columns{
        flex-wrap: wrap;
    }

    .block_column:nth-child(1){
        flex: 1 100%;
    }

    .block_column:nth-child(2){
        margin-left: 0;
        padding-top: 10px;
    }

    .logo-menu{
        padding-right: 15px;
    }

    .login-bar{
        margin-right: -15px;
    }

    .logo-menu .menu-list li{
        margin-left: 25px;
    }

    .hero_search{
        flex-direction: column;
        align-items: center;
    }

    .hero_search .hero_logo{
        margin: 0;
        margin-bottom: 20px;
    }

    .anti_grid{
        margin:-20px -15px;
    }

    .intro_text, .search_examples{
        font-size: 12px !important;
    }

    .mobile_menu{
        display: block;
    }

    .desktop_menu{
        display: none;
    }

}

@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{

}

