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;
    min-height: 1400px;
}


/*           */

.inner {
    display: flex;
}

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

.center_box_img {
    display: flex;
    justify-content: center;
}

.bold {
    font-weight: bold;
    color: #7a7a7a;
    font-size: 14px;
}

.txt {
    margin: -8px 13px;
}

.txt-small {
    color: #7a7a7a;
    font-size: 80%;
}

.center_box__texts>p {
    color: #7a7a7a;
    margin: 12px 12px;
    font-size: 14px;
    text-align: justify;
}

.title {
    font-weight: bold;
    font-size: 17px;
    margin: 0px 12px;
    text-align: center;
}

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

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

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

.peer_ol {
    margin: auto;
    padding-left: 20px;
    margin-top: 10px;
    width: 90%;
}

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

.peer_p {
    margin-top: 10px;
}

.in_ol {
    padding-left: 30px;
}

.diver-line {
    margin: auto;
    width: 100%;
}

.center_box_img .banner {
    height: 100%;
    width: 97%;
    object-fit: cover;
    transition: .2s linear;
    margin-bottom: 10px;
}

.center_box_img .banner:hover {
    transform: scale(1.05);
}


/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 80px;
    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 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 25px;
    border: 1px solid #888;
    width: 30%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.btn_div {
    display: flex;
    align-items: center;
    justify-content: center;
}

#myBtn {
    vertical-align: middle;
    background-color: #2f6db2;
    border: none;
    border-radius: 2px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    padding: 7px 10px;
    height: 38px;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

.close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-body {
    padding: 2px 16px;
}


/* Peer review form */

.reviewer_h1 {
    font-size: 20px;
    font-weight: bold;
}

.reviewer_hr {
    width: 20%;
    margin-top: 5px;
    background-color: #2f6db2;
    padding: 1.5px;
}

.reviewer_h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 5px;
}

#flname,
#lname,
#title,
#organization,
#email {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    outline: none;
}

#peer_submit {
    background-color: #2f6db2;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

#peer_submit:hover {
    background-color: #3b8ced;
}

.warning {
    color: red;
}

.file-input {
    border: solid 1px #cccccc;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 10px;
}

.file-input__label {
    font-size: 14px;
    padding: 3px;
}

input[type=file]::file-selector-button {
    padding: 5px;
    background-color: #2f6db2;
    color: #fff;
    border: none;
    border-radius: 3px;
}

input[type=file]::file-selector-button:hover {
    background-color: #3b8ced;
}


/* Success */

.success-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110em;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.success-container {
    border: solid 5px #4caf50;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    width: 600px;
    transform: translate(-50%, -50%);
    position: fixed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.xmark_div {
    float: right;
}

.xmark_div .fa-xmark {
    color: #4caf50;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.success-modalbox.success {
    border-radius: 2px;
    background: #fff;
    padding: 25px 25px 15px;
    text-align: center;
}

.success-modalbox.success.animate .success-icon {
    -webkit-animation: fall-in 0.75s;
    -moz-animation: fall-in 0.75s;
    -o-animation: fall-in 0.75s;
    animation: fall-in 0.75s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.success-modalbox.success h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #4caf50;
    padding: 40px;
}

.success-modalbox.success .success-icon {
    position: relative;
    margin: 0 auto;
    margin-top: -75px;
    background: conic-gradient(#4caf50 3.6deg, #ededed 358deg);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon::before {
    content: "";
    position: absolute;
    height: 85px;
    width: 85px;
    border-radius: 50%;
    background-color: #fff;
}

.success-modalbox.success .success-icon .fa-check {
    font-size: 2.8em;
    color: #4caf50;
    text-align: center;
    padding-top: 5px;
    z-index: 100000;
}

@media only screen and (max-width: 770px) {
    .inner {
        flex-direction: column;
    }
    table {
        width: 100%;
    }
    .center-box {
        width: 85%;
        margin: 0 auto;
    }
}