html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.container {
    border: none;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.show-modal {
    display: block !important;
}

.inner {
    display: flex;
}

.center-box {
    border: none;
    margin: auto;
    width: 60%;
    min-height: 1400px;
    margin-top: 10px;
    padding: 10px;
}

.accordion {
    border: solid 3px #187BB4;
    width: 100%;
    color: #006fb7;
    padding: 7px;
    position: relative;
    text-align: center;
    outline: none;
    font-size: 15px;
    font-weight: bold;
    transition: 0.4s;
    cursor: pointer;
    background-color: white;
}

.accordion:hover {
    background-color: #006fb7;
    color: #fff;
}

.panel {
    background-color: white;
    overflow: hidden;
    font-size: 15px;
    max-height: 0;
    transition: max-height 0.6s ease-out;
}

.mailinfo {
    border: none;
    background-color: #fff;
    color: #0070ab;
    cursor: pointer;
    margin-left: 50px;
}

.mailinfo_active,
.mailinfo:hover {
    color: #0383d8;
}

.mailinfo_panel {
    background-color: white;
    overflow: hidden;
    font-size: 15px;
    max-height: 0;
    transition: max-height ease-out;
    position: absolute;
    margin-left: -125px;
    max-width: 300px;
    padding: 3px;
    visibility: hidden;
}

.mailinfo_panel>h1,
h3 {
    padding: 15px;
}

.mailinfo_panel>h1 {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

.emails {
    font-weight: 700;
    font-size: 13px;
    color: #006fb7;
}


/* Form */

.panel>p {
    padding: 7px;
    text-align: justify;
}

.title1 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.title2 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
    color: #006fb7;
}

.artcle-hr {
    border: none;
    border-bottom: 1px solid #787878;
    margin-top: 10px;
}

.blue-txt {
    color: #05537f;
    font-weight: bold;
    font-size: 14px;
}

.a-link {
    color: #787878;
    text-decoration: none;
    font-size: 13.5px;
}

.authors_txt {
    color: #787878;
    font-size: 13.5px;
    display: flex;
    align-items: center;
}

.authors_txt>.a-link,
.mailinfo {
    margin-left: 5px;
}

.authors_txt>.blue-txt,
.mailinfo {
    margin-top: 5px;
}

.text {
    color: #787878;
    font-size: 13.5px;
}

.lang_badge {
    border-radius: 10px;
    background-color: #d1dade;
    color: #5e5e5e;
    font-family: 'Open Sans';
    font-size: 11px;
    font-weight: 600;
    padding-top: 2px;
    padding-bottom: 3px;
    padding-left: 8px;
    padding-right: 8px;
    text-shadow: none;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text1,
.fas {
    color: rgb(201, 199, 199);
    font-size: 13px;
}

.button-div {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btn {
    border: none;
    background-color: #006fb7;
    padding: 7px;
    border-radius: 4px;
    color: white;
    width: 100%;
    margin: 5px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover,
.cntr-btn:hover {
    background-color: #3b8ced;
    transition: 0.5s;
}

.fa-circle {
    font-size: 3px;
    display: flex;
    align-items: center;
}

.views {
    align-items: center;
    display: flex;
    white-space: pre-wrap;
}


/* Citation modal */

#citation-modal {
    display: none;
}

#copyText {
    border: solid 1px #c3e6cb;
    border-radius: 4px;
    background-color: #d4edda;
    color: #155724;
    opacity: 0;
    padding: 6px;
    width: 80px;
    margin: 15px auto;
    text-align: center;
}

.grey-box {
    width: 100%;
    padding: 45px;
    text-align: center;
    background-color: #e6e9ec;
    margin-top: 10px;
}

[id*="myInput"] {
    border: none;
    width: 101%;
    background-color: #e6e9ec;
    outline: none;
    margin: auto;
    font-size: 14px;
    text-align: center;
}

.italic {
    font-style: italic;
    font-size: 14px;
}

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

.cntr-btn {
    border: none;
    background-color: #006fb7;
    padding: 7px;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}


/* Send Modal */


/* Form */

.name,
.post,
.email {
    margin: 5px;
    color: #7a7a7a
}

.red_color {
    color: red;
}

#send-modal {
    width: 60%;
    margin: auto;
    display: none;
}

#send-modal form {
    flex-direction: column !important;
    padding: 20px;
}

#fname,
#post,
#submit,
#email {
    width: 100%;
    padding: 8px;
    border: 1px solid rgb(82, 78, 78);
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    cursor: pointer
}

#submit {
    background-color: #187bb4;
    color: white;
    padding: 8px !important;
}


/* Share modal */

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

#Share-modal {
    display: flex;
    width: 70%;
    margin: 50px auto;
}

.icon_cont:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.share-list {
    display: flex;
    border: none;
    width: 120px;
}

.icon_cont {
    background-color: #395692;
}

.fb-share-link {
    cursor: auto;
}

.fb-back {
    background-color: #395692;
    cursor: pointer;
}

.twit-back {
    background-color: #1c9eed;
    cursor: pointer;
}

.lnin-back {
    background-color: #0070ab;
    cursor: pointer;
}

.logo {
    float: left;
    height: 44px;
    width: 50%;
    display: flex;
    align-items: center;
}

.Facebook {
    background-color: #4365af;
}

.Twitter {
    background-color: #43acee;
}

.Linkedin {
    background-color: #1680b9;
}

.share-text {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}


/* Material modal */

#Matrics_modal {
    max-width: 600px;
    max-height: 400px;
}

.Matrics_title {
    font-size: 18px;
    font-weight: bold;
    color: #006fb7;
    padding: 15px;
}

.num_size {
    font-size: 16px;
    font-weight: bold;
    color: #0383d8;
}

.view_count {
    color: #0383d8;
    font-weight: bold;
    font-size: 13px;
    padding-left: 15px;
}


/* .............. */

.fab {
    margin: 0 auto;
    color: white;
}

.bold {
    font-weight: bold;
    font-size: 15px;
}

.artc-title {
    font-weight: bold;
    font-size: 15px;
    margin-top: 20px;
    color: #006fb7;
}

.artc-title-2 {
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

.artc-italic-title {
    font-weight: bold;
    font-style: italic;
    font-size: 15px;
    margin-top: 10px;
}

.artc-title-h4 {
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.artc-title-q {
    font-weight: bold;
    margin: 5px;
    font-size: 17px;
    text-align: center;
    color: #787878;
    margin-top: 20px;
}

.descr-paragraphs {
    color: #787878;
    font-size: 13.5px;
    margin-top: 20px;
    text-align: justify;
    text-justify: inter-word;
    text-indent: 30px;
}

.descr-paragraphs-italic {
    color: #787878;
    font-size: 13.5px;
    font-style: italic;
    text-align: justify;
    text-justify: inter-word;
}

.descr-ol {
    color: #787878;
    padding-left: 50px;
}

.descr-ol-li {
    font-size: 13.5px;
}

.bibl-li {
    color: #787878;
    font-size: 13.5px;
    margin-top: 10px;
    text-align: justify;
    text-justify: inter-word;
}

ol {
    margin-left: 20px;
}

.hr2 {
    border: none;
    border-bottom: solid 1px black;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 35%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    z-index: 10000000;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#myBtn {
    color: #347bcf;
    font-size: smaller;
    cursor: pointer;
    vertical-align: super;
    text-decoration: none;
    background-color: #fff;
    border: none;
}

.cnote {
    padding: 10px;
    position: relative;
    word-wrap: break-word;
    color: #787878;
    font-size: 14px;
    text-indent: 0px;
    cursor: auto;
    align-items: center;
}

.footnote {
    color: #347bcf;
    font-size: smaller;
    cursor: pointer;
    vertical-align: super;
    text-decoration: none;
}

.pclass {
    margin: 10px;
    padding: 10px;
    position: relative;
    word-wrap: break-word;
    color: #787878;
    font-size: 13.5px;
    text-indent: 0px;
    cursor: auto;
    align-items: center;
}

.footnote .pclass {
    z-index: -1;
    opacity: 0;
    position: absolute;
    margin-left: -120px;
    margin-top: 26px;
    border: solid 0.1px grey;
    border-radius: 5px;
    max-width: 255px;
    height: fit-content;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 2s ease;
}

.pclass:before {
    content: '';
    border: solid 0.1px grey;
    position: absolute;
    width: 10px;
    height: 10px;
    margin: -16px 100px;
    background: #fff;
    transform: rotate(45deg);
    border-right: none;
    border-bottom: none;
}

.footnote:hover .pclass {
    z-index: 9;
    opacity: 1;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 1s ease;
}

.pclass2 {
    margin: 10px;
    padding: 10px;
    position: relative;
    word-wrap: break-word;
    color: #006fb7;
    font-weight: bold;
    font-size: 13.5px;
    text-indent: 0px;
    cursor: auto;
    align-items: center;
}

.footnote2 .pclass2 {
    z-index: -1;
    opacity: 0;
    position: absolute;
    margin-left: -140px;
    margin-top: 50px;
    border: solid 5px #006fb7;
    border-radius: 5px;
    max-width: 255px;
    height: fit-content;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 2s ease;
}

.pclass2:before {
    content: '';
    border: solid 5px #006fb7;
    position: absolute;
    width: 10px;
    height: 10px;
    margin: -21px 25px;
    background: #fff;
    transform: rotate(45deg);
    border-right: none;
    border-bottom: none;
}

.footnote2:hover .pclass2 {
    z-index: 9;
    opacity: 1;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 1s ease;
}

.pclass3 {
    margin: 10px;
    padding: 10px;
    position: relative;
    word-wrap: break-word;
    color: #444444;
    font-weight: bold;
    font-size: 13.5px;
    text-indent: 0px;
    cursor: auto;
    align-items: center;
}

.footnote3 .pclass3 {
    z-index: -1;
    opacity: 0;
    position: absolute;
    margin-left: 20px;
    margin-top: 10px;
    border: solid 3px #444444;
    border-radius: 5px;
    width: 220px;
    height: fit-content;
    background-color: #f4f4f4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 2s ease;
}

.pclass3:before {
    content: '';
    border: solid 3px #444444;
    position: absolute;
    width: 8px;
    height: 8px;
    margin: 6px -17px;
    background: #f4f4f4;
    transform: rotate(-45deg);
    border-right: none;
    border-bottom: none;
}

.footnote3:hover .pclass3 {
    z-index: 9;
    opacity: 1;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 1s ease;
}

.gen_link {
    color: #3b8ced;
    text-decoration: none;
    word-wrap: break-word;
    font-size: 13.5px;
}

.Matrics_button {
    background-color: #006fb7;
    color: #fff;
    padding: 3px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    width: 30%;
    margin-top: 10px;
    cursor: pointer;
}

.count_div_box {
    width: 97%;
    display: flex;
    justify-content: space-between;
}

.logoCrossref {
    width: 60px;
    height: 60px;
}

.ft3_a {
    text-decoration: none;
    color: #444444;
    font-weight: bold;
    font-size: 16px;
    margin-left: 25px;
}

.fa-quote-right {
    color: #444444;
    font-weight: bold;
    font-size: 15px;
    padding-right: 25px;
}

.Matrics_button:hover {
    background-color: #2189ce;
}


/* New cite styles function */

.cite-style-div {
    width: 100%;
    display: flex;
}

.tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.tab button {
    border: none;
    border-bottom: solid 1px #006fb7;
    background-color: #fff;
    color: #006fb7;
    width: 12%;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.tab button:hover {
    background-color: #006eb72a;
    border: solid 1px #006fb7;
    border-bottom: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tab button.active {
    background-color: #006eb72a;
    border: solid 1px #006fb7;
    border-bottom: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}

.topright {
    float: right;
    cursor: pointer;
    font-size: 24px;
    margin-top: 3%;
    margin-right: 2%;
}

.topright:hover {
    color: #006fb7;
}

#listenCont {
    background-color: rgb(255, 255, 255);
    position: fixed;
    width: 151px;
    height: fit-content;
    display: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#btnSpeak,
#voiceList,
#btnStop {
    border: solid 3px #006fb7;
    background-color: #fff;
    color: #05537f;
    padding: 4px;
    outline: none;
    width: 100%;
    cursor: pointer;
}

#voiceList,
#btnSpeak {
    border-bottom: none !important;
}


/* Scroll design */

#voiceList::-webkit-scrollbar {
    width: 5px;
}

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

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

#btnSpeak:hover,
#voiceList:hover,
#btnStop:hover {
    background-color: #4babea4c;
    transition: .5s;
}


/* Accordion */

.articles_info_accordion {
    background-color: #006fb7;
    border-radius: 5px;
    border: none;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    padding: 7px;
    width: 98.5%;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.7s;
    outline: none !important;
    margin-left: 0.9%;
    margin-top: 5px;
    text-align: center;
}

.articles_info_accordion::after {
    font-size: 20px;
    font-weight: bold;
    content: '\002B';
    float: right;
}

.articles_info_accordion.active::after {
    font-size: 20px;
    font-weight: bold;
    float: right;
    content: '\2212';
}

.articles_info_accordion.active {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    transition: 0ms;
}

.articles_info_panel {
    padding: 0 10px;
    width: 98.5%;
    margin-left: 0.9%;
    background-color: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.similar_articles {
    font-size: 14px;
    padding: 1px;
    text-decoration: none;
    color: #3b8ced;
}

.smilars_hr {
    border: none;
    border-bottom: dotted 2px gray;
    width: 100%;
}

.similar_articles_ol {
    margin-left: 40px;
}

.rtrnBtn {
    position: absolute;
    border: solid 2px gray;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 14px;
    align-items: center;
    text-align: center;
    align-content: center;
    margin: 10px 0 0 -50px;
}

.fa-angle-up {
    color: gray;
    font-size: 10px;
    line-height: 10px;
}

.artc-note-ol {
    margin: 0 0 0 50px;
}

@media only screen and (max-width: 1100) {
    .footnote .pclass {
        margin-left: -180px;
    }
    .pclass::before {
        margin: -16 160px;
    }
}

@media only screen and (max-width: 770px) {
    .inner {
        flex-direction: column;
    }
    .left-side {
        display: none;
    }
    .center-box {
        width: 100%;
    }
    .tab {
        flex-direction: column;
    }
    .tab button {
        width: 100%;
    }
    .button-div {
        flex-direction: column;
    }
    .btn {
        width: 95%;
        margin: 12px auto;
    }
    [id*="myInput"] {
        max-Width: 100%;
    }
    .footnote .pclass {
        margin-left: -180px;
    }
    .pclass::before {
        margin: -16 160px;
    }
}