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 1px;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.inner {
    display: flex;
}

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

.title {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.center-box li {
    font-size: 14px;
}

.gen_link {
    color: #3b8ced;
    text-decoration: none;
}

.bold-txt {
    font-weight: bold;
    font-size: 14px;
}

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

[id*="Authors_ol"] {
    margin: auto;
    padding-left: 20px;
    margin-top: 10px;
}

.Authors_li,
.Authors_p {
    font-size: 14px;
    color: #7a7a7a;
    text-align: justify;
}

.Authors_p {
    margin-top: 10px;
}

.in_ol {
    padding-left: 30px;
}

.accordion {
    border: solid 1px #055380;
    border-radius: 4px;
    margin-top: 10px;
    background-color: #f0f0f0;
    color: #055380;
    cursor: pointer;
    padding: 6px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: bolder;
    transition: 0.4s;
}

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

.accordion:hover::after {
    color: #fff !important;
}

.active {
    max-height: 100% !important;
}

.accordion:after {
    content: '\002B';
    font-weight: bold;
    color: #055380 !important;
    font-size: 18px;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
    color: #fff;
}

.panel {
    padding: 0 40px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.license-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120% !important;
    margin-left: -70px;
    margin-top: 200px;
}

.license-l-2 {
    width: fit-content;
}

@media only screen and (max-width: 750px) {
    .inner {
        flex-direction: column;
    }
    .license-box {
        margin: auto;
        width: 100% !important;
    }
    .center-box {
        max-width: 100%;
    }
}