html,
body {
    font-family: "Poppins", sans-serif;
    color: #333;
    overflow-x: hidden;
}

.wrapper {
    max-width: 2560px;
}

.main-wrapper {
    background: #efefef;
}

.fw-semibold {
    font-weight: 600;
}

.fw-medium {
    font-weight: 500;
}

.text-primary {
    color: #1e4a31 !important;
}

.text-sub {
    color: #acacac !important;
}

.w-6 {
    width: 30px;
}

/* Btn */

.btn-primary {
    background: #1e4a31;
    color: #fff;
    border: 1px solid #1e4a31;
}

.btn-primary:hover {
    background: transparent;
    color: #1e4a31;
    border: 1px solid #1e4a31;
}

/* Nav */

/* Nav Main */

nav.nav-main {
    background: #1e4a31;
    height: 70px;
    border-radius: 0px 0px 10px 10px;
}

.nav-main .nav-logo {
    left: 30px;
}

.nav-main .nav-menu a {
    text-decoration: none;
    color: #fff;
    margin: 0 20px;
}

.icon-bar {
    right: 30px;
    width: 25px;
    color: #fff;
}

.times-icon {
    color: #fff;
    top: 30px;
    right: 30px;
    width: 30px;
}

/* Sidebar */

.sidebar {
    background: #1e4a31;
    z-index: 50;
    top: 0;
    transition: 0.3s;
    left: -110%;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    margin: 20px 0;
    font-size: 18px;
}

.sidebar a:hover,
.sidebar a.active {
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: #872f27;
    text-decoration-thickness: 3px;
}

.sidebar.show {
    left: 0;
}

/* Filter */
.tab-filter {
    margin: 0 50px;
}

.tab-filter:last-child {
    margin-right: 0;
}

.select-filter {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    outline: none;
}

.select-filter::placeholder,
.input-group input::placeholder {
    color: #acacac !important;
}

.search-input {
    cursor: auto !important;
}

/* Nav Journal */

.nav-top-journal {
    height: 100px;
    background: rgba(239, 239, 239, 0.5);
}

span.umy-logo {
    font-size: 65px;
    color: #872f27;
}

/* Top Journal */
.top-journal-wrapper {
    width: inherit;
}

.sm-top-journal {
    border-radius: 15px;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.1));
    display: none;
}

/* Cards Group */

.cards-group {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 15px;
}

.cards-group img {
    width: 40px;
}

.cards-group-row {
    display: grid;
    grid-row-gap: 15px;
}

.cards-group-row img {
    width: 30px;
}

.card-count-journal {
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.1));
    border-radius: 10px;
}

/* Pie Chart */

canvas#doughnutChart {
    width: 150px !important;
    height: 150px !important;
}

/* Card Journal */

.card-journal {
    background: #e8e8e8;
    border-radius: 10px;
}

.card-journal a {
    text-decoration: none;
    transition: 0.3s;
}

.card-journal a:hover {
    color: #661b14;
}

.journal-thumbnail {
    border-radius: 10px;
    min-width: 300px;
}

.journal-thumbnail img {
    border: 5px solid #e8e8e8;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    max-height: 300px;
}

.card-journal-title {
    color: #872f27;
}

.card-journal-info a {
    text-decoration: none;
}

.card-journal-info a:not(:first-child) {
    margin: 0 0 0 50px;
}

.eissn-text p {
    color: #8b8b8b;
    font-size: 14px;
}

.card-journal-status {
    background: #dbdbdb;
    border-radius: 10px;
}

a.load-more {
    text-decoration: none;
    transition: 0.3s;
}

a.load-more:hover {
    color: #872f27 !important;
}

/* Header Title */

.header-title .text-sub {
    color: #607d8b !important;
}

/* Journal Filter Group */

.journal-filter-group .tab-filter {
    margin: 0;
}

/* Page Evaluasi */

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group input {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
    outline: none;
}

/* Block question */

.block-question {
    background: #dbdbdb;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

textarea {
    border-radius: 10px;
    outline: none;
    resize: none;
}

.block-question hr {
    height: 2px;
    background: #1e4a31;
    opacity: 1 !important;
}

.question-group:last-child hr {
    display: none;
}

/* Custom Checkbox */

.radio-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 5px;
}

.radio-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.radio-container input:checked ~ .checkmark {
    background-color: #1e4a31;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Circular Progress Bar */
.progress-text {
    font-weight: 700;
    font-size: 50px;
    transform: translate(-50%, -50%);
}

/* Responsive */
@media screen and (max-width: 1440px) {
    .nav-main .nav-menu {
        display: none;
    }

    .icon-bar {
        position: absolute;
        visibility: visible !important;
    }

    .nav-main .nav-menu a:first-child {
        margin-left: 150px;
    }

    .tab-filter {
        margin: 0 20px;
    }
}

@media screen and (max-width: 1366px) {
    .tab-filter:first-child {
        margin-left: 0;
    }

    .tab-filter-group {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .nav-main .nav-menu a:first-child {
        margin-left: 20px;
    }

    .tab-filter:first-child {
        margin-left: 20px;
    }

    .lg-top-journal {
        display: none;
    }

    .sm-top-journal {
        display: block;
    }
}

@media screen and (max-width: 992px) {
    .nav-main .nav-logo {
        left: unset;
    }

    .nav-top-journal .nav-logo {
        transform: scale(0.7);
    }

    .cards-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-group > .card-count-journal:last-child {
        grid-area: 2 / 2 / span 1 / span 1;
    }

    .tab-filter:first-child {
        margin-left: 0;
    }

    .tab-filter-group {
        margin-top: 20px;
    }

    canvas#doughnutChart {
        width: 250px !important;
        height: 250px !important;
    }
}

@media screen and (max-width: 768px) {
    canvas#doughnutChart {
        width: 250px !important;
        height: 250px !important;
    }
}

@media screen and (max-width: 720px) {
    .tab-filter {
        flex-grow: 1;
    }

    .tab-filter select {
        width: 100%;
    }

    .tab-filter:nth-child(2) {
        margin-right: 0;
    }

    .tab-filter:last-child {
        margin: 15px 0 0;
    }
}

@media screen and (max-width: 540px) {
    .cards-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-group > .card-count-journal:nth-child(3) {
        grid-area: 3 / 1 / span 1 / span 2;
    }

    .cards-group > .card-count-journal:last-child {
        grid-area: 4 / 1 / span 1 / span 2;
    }

    .tab-filter:nth-child(2) {
        margin-left: 0;
    }

    .card-journal-info > a:last-child {
        margin-left: 0;
    }
}

@media screen and (max-width: 430px) {
    .tab-filter:first-child {
        width: 100%;
        margin-right: 0;
    }

    .tab-filter:nth-child(2) {
        margin-top: 15px;
    }
}
