/* Header */

.navbar {
    position: relative;
}

.lang-switch {
    display: flex;
    position: absolute;
    right: 12%;
    top: 40%;
}

.Lang {
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    padding: 3px;
    color: #065682;
}

.langr {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#ge,
#us {
    width: 20px;
    height: 13px;
    margin-top: 7px;
}

.tooltiptextge {
    visibility: hidden;
    background-color: #006fb7;
    color: #fff;
    text-align: center;
    position: absolute;
    z-index: 1;
    width: 60px;
    top: 25px;
    right: 15px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: bold;
}

.tooltiptextus {
    visibility: hidden;
    background-color: #006fb7;
    color: #fff;
    text-align: center;
    position: absolute;
    z-index: 1;
    width: 60px;
    top: 25px;
    left: 70px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: bold;
}

.tooltip:hover .tooltiptextge,
.tooltip:hover .tooltiptextus {
    visibility: visible;
}

.geimport,
.usimport {
    opacity: 0.7;
}

.geimport:hover,
.usimport:hover {
    opacity: 1;
    transition: .4s;
}

input[type="checkbox"].toggle {
    opacity: 0;
    position: absolute;
    left: -9000px;
    top: -9000px;
}

input[type="checkbox"].toggle+label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 5px;
}

input[type="checkbox"].toggle+label::before {
    content: "";
    width: 2.05em;
    height: 1.1em;
    background-color: #006fb7;
    border-radius: 1em;
    transition: background-color 200ms ease-in-out;
}

input[type="checkbox"].toggle+label::after {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "";
    font-size: .5em;
    height: .9em;
    left: .2em;
    width: 1.8em;
    height: 1.8em;
    background-color: #fff;
    color: white;
    border-radius: 1em;
    transition: background-color 200ms ease-in-out, transform 200ms ease-in-out;
}

input[type="checkbox"].toggle:checked+label::after {
    transform: translateX(100%);
    background-color: #fff;
}

input[type="checkbox"].toggle:disabled+label {
    color: #777;
}

input[type="checkbox"].toggle:disabled+label::before {
    background-color: #CCC;
}

input[type="checkbox"].toggle:disabled+label::after {
    background-color: #777;
}

#preloaderCont {
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 30%;
    position: fixed;
    z-index: 10000000000000;
}

#preloader {
    border: 8px solid #187bb44b;
    border-radius: 50%;
    border-top: 8px solid #187bb4;
    width: 80px;
    height: 80px;
    -webkit-animation: spin .7s linear infinite;
    /* Safari */
    animation: spin .7s linear infinite;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#cookieNotice {
    border: 2px solid #006fb7;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px gray;
    width: 30%;
    position: fixed;
    bottom: 2%;
    left: 35%;
    background-color: #fff;
    padding: 20px;
    z-index: 1000000;
}

.title-wrap h4 {
    font-size: 16px;
    font-weight: bold;
    color: #006fb7;
}

.topright {
    float: right;
    cursor: pointer;
    margin-right: 2%;
    font-size: 24px;
    color: #006fb7;
}

.cookie_inf p {
    font-size: 13px;
    text-align: center;
}

.cookie_buttons_div {
    display: flex;
    justify-content: space-around;
    margin: auto;
    padding: 5px;
}

.cookie_btn {
    background-color: #006fb7;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.cookie_btn:hover {
    opacity: 0.8;
    transition: 0.5;
}

header {
    border-top: solid 6px #055380;
    border-bottom: solid 3px #055380;
    height: 140px;
}

#active {
    background-color: #187bb4;
    border: solid 2px #187bb4;
    color: white !important;
}

#header-images {
    display: flex;
    align-items: center;
    margin-left: 3%;
}

.header_scroll {
    height: 70px;
    opacity: 0.9;
}

.header_scroll_main_image {
    width: 50px;
    float: left;
    margin-left: -2%;
}

.header_scroll_title {
    width: 140px;
    position: relative;
    top: -7px;
    right: 10px;
}

.header_scroll_title_GE {
    width: 200px;
    position: relative;
    top: -7px;
    right: 10px;
}

.scroll_NavUl {
    float: right !important;
    margin: -20px 5px;
}

.Navbar-container {
    margin-top: 3.5%;
    margin-left: 2%;
}

.Navbar-container .NavUl {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

#header {
    position: fixed;
    top: 0;
    width: 1100px;
    height: 150px;
    z-index: 10;
    transform: translate(0, -250px);
    height: fit-content;
}

.head__cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Navbar-container .List-a {
    border: solid 2px white;
    color: #333333;
    text-decoration: none;
    display: block;
    padding: 0px 10px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.Navbar-container .List-a:hover {
    border: 2px solid #3b8ced;
    color: #3b8ced
}

input[type=text] {
    border: solid 1px rgb(194, 191, 191);
    padding: 3px;
    font-size: 13px;
    outline: none;
}

.search-button {
    float: right;
    padding: 3px;
    border: solid 1px rgb(194, 191, 191);
    border-left: none;
    border-radius: 0;
    width: 35px;
}

.fa-search {
    color: grey;
    font-size: 15px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.search-form {
    display: flex;
    justify-content: center;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #000000;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #3b8ced;
}

.sidenav .closebtn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 36px;
    background-color: #3b8ced;
    padding: 3px;
    color: #fff;
}

.sidenav_hr {
    margin: auto;
    width: 85%;
    border: none;
    border-bottom: solid 1px lightgray;
    margin-top: 5px;
}

.burger-menu {
    display: none;
}

.head__cont2 {
    background-color: #fff;
}

#main {
    transition: margin-right .5s;
    padding: 16px;
}

.inview {
    transform: translate(0, 0) !important;
    transition: all 0.5s ease;
}

.fa-circle-exclamation {
    font-size: 30px;
}


/* END-HEADER */


/* Footer */

footer {
    background-color: #f1f3f4;
    width: 100%;
    border-bottom: solid 0px #fff;
    padding: 25px;
}

.big_footer_cont {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.footer-title {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #006fb7;
}

.footer-li {
    color: #006fb7;
    font-size: 14px;
    text-decoration: none;
    margin-left: 10px;
}

#footer-icons {
    color: #006fb7;
}

.footer-li:hover {
    color: #4c95c5
}

.footer-ul {
    margin-top: 10px;
    list-style: none;
}

#footer_getwidth {
    width: 250px;
}

.copyright {
    border: none;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-list {
    display: flex;
}

.footer-list {
    display: flex;
    align-items: center;
}

.license-box {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-l-1 {
    width: 100px;
    text-align: center;
}

.license-l-2 {
    position: relative;
    top: 40px;
}

.license-a {
    text-decoration: none;
    color: #3b8ced;
    font-weight: bold;
    font-size: 14px;
}

.footer-p {
    font-size: 13px;
    font-style: italic;
    width: 270px;
    color: #006fb7;
    text-align: justify;
    text-justify: inter-word;
    margin-top: 5px;
}

.footer_img_div {
    display: flex;
}

.footer_img_1 {
    width: 30px;
    height: 30px;
}

.footer_img_2 {
    width: 70%;
    height: 20px;
    margin-top: 5px;
    margin-left: 5px;
}


/* Scroll up button  */

#topBtn {
    position: fixed;
    right: 30px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    line-height: 25px;
    border-radius: 5px;
    background: lightgrey;
    color: red;
    outline: none;
    border: none;
    cursor: pointer;
    display: none;
}

#topBtn:hover {
    background: #7f7f7f;
}

#btnScrollToTop:active {
    background: gray;
}

.fa-arrow-up {
    font-size: 25px !important;
    color: #fff !important;
}


/* Left Side bar */

table,
th,
td {
    border: 1px solid gray;
    color: #767676;
    border-bottom: solid 1px #6ec1e4;
    border-collapse: collapse;
    margin: 10px auto;
    width: 100%;
}

.Middle-links-title {
    font-weight: bold;
    margin-left: 5px;
    font-size: 13.5px;
}

.Middle-links {
    margin-left: 5px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #7a7a7a;
}

#accordion-btn {
    background-color: #f0f0f0;
    border: none;
}

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

.social-n-icons {
    margin-top: 40%;
    border: none;
    text-align: center;
}

.social-icons {
    width: 120px;
    object-fit: cover;
    transition: .1s linear;
}

.social-n-icons .social-icons:hover {
    transform: scale(1.1);
}

.linked {
    width: 140px;
}

.left-side {
    border: none;
    float: left;
    width: 200px;
    min-height: 500px;
    margin-left: 20px;
    margin-top: 10px;
}

.td-title {
    background-color: #006fb7;
    color: white;
}

.td-link {
    background-color: #f7f7f7;
}

.blue-button {
    border: none;
    background-color: #006fb7;
    color: white;
    width: 100%;
    height: 70px;
    margin-top: 5px;
    text-decoration: none;
    cursor: pointer;
}

#Lblue-btn-1,
#Rblue-btn-1 {
    background-color: #006fb7;
}

#Lblue-btn-2,
#Rblue-btn-2 {
    background-color: #0082d8;
}

#Lblue-btn-3,
#Rblue-btn-3 {
    background-color: #008fee;
}

#Lblue-btn-4,
#Rblue-btn-4 {
    background-color: #089cff;
}

.note_div {
    margin: auto;
    padding: 20px;
    position: sticky;
    width: 190px;
    top: 70px;
    z-index: 1;
    transform: translate(0, -4000px);
    height: 600px;
    background-color: #fff;
    overflow-y: scroll;
}


/* Scroll design */

.note_div::-webkit-scrollbar {
    width: 5px;
}

.note_div::-webkit-scrollbar-thumb {
    background: #006fb7;
}

.note_div::-webkit-scrollbar-thumb:hover {
    background: #0d94ef;
}

.note_title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #006fb7;
}

.note_ul {
    margin: 10px auto;
    list-style: none;
}

.note_li {
    margin-top: 10px;
    color: #006fb7;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    padding: 3px;
}

.note_a {
    text-decoration: none;
}

.note_li:hover {
    background-color: rgb(233, 231, 231);
}

.lft_hr {
    border: none;
    border-bottom: 1px solid lightgray;
}

.fa-square {
    font-size: 6px !important;
    color: #006fb7 !important;
    vertical-align: 3px !important;
}

.WW {
    transform: translate(0, 0) !important;
    transition: all 0.5s ease;
}

.nofees_box {
    width: 100%;
    margin: auto;
    text-align: center;
}

.nofees_img {
    margin-top: 120px;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.nofees_box .nofees_img:hover {
    transform: scale(1.1);
}

.doi_div {
    margin-top: -24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doi_img {
    width: 14%;
}


/* Right Side Bar */

#main_title {
    height: 32px !important;
}

.td-lans {
    text-align: center;
}

.right-side {
    border: none;
    float: right;
    width: 190px;
    min-height: 500px;
    margin-right: 20px;
    margin-top: 10px;
}

.box-deal-seal {
    width: 180px;
    margin: auto;
    text-align: center;
}

.deal-seal-icon {
    margin-top: 50px;
    width: 140px;
    object-fit: cover;
    transition: .2s linear;
}

.box-deal-seal .deal-seal-icon:hover img {
    transform: scale(1.1);
}

.fa-eye {
    font-size: 12px;
    color: #074670;
}


/* Header media queries */

@media only screen and (max-width: 1100px) {
    .Navbar-container {
        display: none;
    }
    #header {
        width: 100%;
        background-color: #f7f7f7;
    }
    .burger-menu {
        display: flex;
    }
    .burger-menu:hover {
        color: rgb(0, 0, 0) !important;
        transition: .5s;
    }
    .main-img {
        margin: 0 auto;
    }
    header {
        background-color: #065682;
        border: none;
    }
    .head__cont {
        background-color: #065682;
    }
    .sidenav-search {
        display: flex;
        margin: 40px;
    }
}

@media only screen and (max-width: 1024px) {
    #cookieNotice {
        width: 40%;
        bottom: 2%;
        left: 30%;
    }
}

@media only screen and (max-width: 768px) {
    #cookieNotice {
        width: 90%;
        bottom: 2%;
        left: 5%;
    }
    .lang-switch {
        top: 2%;
        right: 70%;
    }
}

@media only screen and (max-width: 770px) {
    footer {
        flex-direction: column;
        height: auto;
        padding: 0 40px;
        align-items: normal;
    }
    .big_footer_cont {
        flex-direction: column;
        align-items: center;
    }
    .footer-title {
        text-align: center;
    }
    .footer-center {
        text-align: center;
    }
    .footer__cont {
        margin-top: 25px;
    }
    #footer_getwidth {
        width: 200px;
        align-items: center;
    }
    .footer-p {
        width: 300px;
        text-align: justify;
        text-justify: inter-word;
    }
    .footer-issn {
        width: 300px;
        text-align: center;
    }
}

@media only screen and (max-width: 1100px) {
    #font {
        font-size: 13px;
    }
}

@media only screen and (max-width: 770px) {
    .left-side {
        width: 95%;
        margin: 0 auto;
    }
    table {
        width: 100%;
    }
    .social-n-icons {
        margin-top: 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-icons {
        width: 70%;
    }
    .doi_img {
        width: 4%;
    }
}

@media only screen and (max-width: 600px) {
    .doi_img {
        width: 7%;
    }
}

@media only screen and (max-width: 770px) {
    .right-side {
        width: 95%;
        margin: 0 auto;
    }
}