.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 10px;
}

.tab-item {
    border-radius: 10px;
    color: #FFF;
    padding: 10px 60px;
    text-transform: uppercase;
    border: 1px solid #ffc010;
    background: none;
    transition: 300ms;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.tab-item.active {
    background: #ffc010;
    color: #000;
}

.login-form {
    max-width: 450px
}

.login-form .form-group:last-child {
    margin-top: calc(26px + 1rem);
}

.captcha {
    border-radius: 4px;
    cursor: pointer;
}

.nav-login, .nav-user {
    display: none;
}

.nav-login.show, .nav-user.show {
    display: initial;
}

.nav-user span {
    vertical-align: middle;
}

.nav-user .space {
    margin: 0 8px;
}

.avatar {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    vertical-align: middle;
}

.username {
    font-size: 20px;
    vertical-align: middle;
}

.logout {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.offcanvas-menu form input, .offcanvas-menu form select {
    width: 100%;
    background: inherit;
    border: 1px solid #2d3547;
    padding: 7px 10px;
    color: #fff;
}

.offcanvas-menu form select option {
    background: #00081b;
}

.offcanvas-menu .form-control:focus {
    background-color: initial;
    color: #fff;
}

.offcanvas-menu .order-btn {
    position: relative !important;
    border: none;
    right: 0;
    background: #ffc010;
    top: 0;
    cursor: pointer;
    color: #010f2e;
    padding: 6px 10px;
    border-radius: 4px;
    width: 100%;
    margin-top: 16px;
}

.information-area{
    display: none;
}
.information-area.show{
    display: block;
}
.information-box {
    background: #9494941a;
    padding: 8px;
    backdrop-filter: blur(6px);
}

.info-more {
    color: #ffc010;
}

.info-more:hover {
    padding-left: 5px;
}
.article-detail.breadcrumb-area{
    align-items: flex-end!important;
    margin-bottom: 20px;
}

.info-title {
    height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.art-tags {
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid;
    padding: 2px 4px
}
.art-desc{
    border-bottom: 1px solid #c7c2c9;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 24px;
}