/**
 * @Project NUKEVIET 4.x
 * @Author CNTT - Hậu Giang <cntt@gmail.com>
 * @Copyright (C) 2024 CNTT - Hậu Giang. All rights reserved
 * @License: Not free read more http://nukeviet.vn/vi/store/modules/nvtools/
 * @Createdate Sun, 12 May 2024 18:19:06 GMT
 */

/* admin */
form.form-hanhchinh input[type="text"] {
    border: none;
    padding: 4px 8px;
}

/* client */
ul.nav-hanhchinh li button {
    background-color: transparent;
    border: none;
    padding: 6px;
    margin-bottom: 8px;
    font-size: 1.5rem;
    transition: border all 1s;
}

ul.nav-hanhchinh .active {
    border-top: 2px darkred solid;
    padding: 4px 8px 4px 8px;
    font-weight: 800;
}

.tab-hanhchinh * {
    text-align: justify;
}
.tab-hanhchinh h* {
    text-align: left;
}

.flex-container {
    display: flex;
}

.flex-container.end {
    justify-content: end;
}

.wrapper {
    display: grid;
    grid-template-columns: 350px auto;
    gap: 8px;
}

.wrapper .item {
    padding: 12px;
}

.wrapper label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-bold {
    font-weight: 500;
    font-size: 12pt;
}

.w-100 {
    width: 100%;
}

.flex-wrapper-column {
    display: flex;
    flex-direction: column;
}

.flex-wrapper-column.gap-3 {
    gap: 3;
}

input[type="file"] {
    margin-top: 12px;
}

input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}

input[type="file"]::before {
    content: 'Đính kèm tệp tin';
    display: inline-block;
    background: linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}

input[type="file"]:hover::before {
    border-color: black;
}

.input[type="file"]:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.nav.hanhchinh button {
    border: none;
    padding: 4px 8px;
    background-color: transparent;
    transition: .5ms ease-in;
}

.nav.hanhchinh button.active[aria-selected=true] {
    border-top: 2px darkred solid;
    color: black;
}

.tab-content h3 {
    color: black;
    text-align: center;
}

.scroll {
    overflow: scroll;
    height: 50vh;
}

.scroll::-webkit-scrollbar {
    display: none;
}