@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --theme-color: #e9b75e ;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.header-logo {
    display: flex;
    width: 280px;
}

.header-logo > a {
    display: flex;
    width: 100%;
}

.header-logo > a > img {
    width: 100%;
}

.header-wrapper-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    position: relative;
}

.header-bottom-menu > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.header-bottom-menu > ul > li > a {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.header-bottom-menu > ul > li > a:hover {
    color: var(--theme-color);
}

.header-wrapper-bottom {
    display: flex;
    border-top: 1px solid rgba(0,0,0,.1);
    padding: 1rem 0;
    margin: 1rem 0;
    padding-top: 2rem;
}

.top-banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.6rem;
    padding: 5.5rem 0;
}

.top-banner-text > strong {
    color: #fff;
    font-size: 35px;
    width: 60%;
    letter-spacing: 2px;
    font-weight: 500;
}

.top-banner-text > span {
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 4px;
}

.top-banner-text > p {
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 500;
}

.top-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home-btn-wrapper-contain > a {
    color: #666;
    background-color: #fff;
    box-shadow: 0 5px 0 #e3e3e3;
    border-radius: 3px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    gap: 1rem;
    font-weight: 500;
    transition: all .2s ease-in-out;
}

.home-btn-wrapper-contain > a:hover {
    top: 3px;
    box-shadow: 0 2px 0 #e3e3e3;
}

.home-btn-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-btn-wrapper {
    background-color: var(--theme-color);
    padding: 1.5rem 0;
}

.home-btn-wrapper-contain {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-btn-wrapper-text > span {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.page-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

.page-content span {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.page-content {
    padding: 2rem 0;
}

.page-content-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.page-content-image > img {
    width: 60%;
}

.footer-wrapper {
    background-color: #222222;
    padding: 1.5rem;
}

.footer-text > span {
    display: flex;
    width: 100%;
    color: #999999;
    font-size: 14px;
    font-weight: 300;
}

.page-content span > p {
    margin: 0 0.5rem;
}

.page-content > ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-content > ul > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 0.5rem;
}

.page-content > ul > li > span {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}

.page-content > ul > li > p {
    display: flex;
    width: 50%;
    justify-content: center;
}

.page-content > ul > li:first-child {
    border-top: 1px solid rgba(0,0,0,.1);
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 100%;
    font-size: 1.25rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

.inputfile-1 + label {
    color: #000;
    background-color: #fff;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
    opacity: 0.8;
}

.form-group-input {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.form-group-input-content {
    width: 100%;
}

.form-group-input-content .error {
    font-size: 13px;
    color: red;
    padding-left: 0.5rem;
    margin: 0.3rem 0;
}

.form-group-input input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: 0;
    border-radius: 0 !important;
}

.form-group-input input:focus {
    border-color: #000;
}

.form-group-input-content.danger input {
    border-color: red;
}

.form-group-input label {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-group-label label {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group-input input[type="text"] {
    height: 45px;
    padding: 1rem;
    font-size: 15px;
}

.header-right-logo {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    gap: 1rem;
}

.header-right-logo > a {
    display: flex;
    width: 150px;
}

.header-right-logo > a > img {
    width: 100%;
    object-fit: contain;
}

.header-left-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.right-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.right-logo-wrapper > a {
    width: 160px;
}

.right-logo-wrapper > a > img {
    width: 100%;
}

.right-logo-wrapper:last-child {
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,.1);
}

.header-left-logo > a {
    display: flex;
    width: 150px;
}

.header-left-logo > a > img {
    width: 100%;
}

.form-group.form-group-wrapper {
    display: flex;
    gap: 1rem;
}

.form-group-contain {
    width: calc(50% - (1rem) / 2);
}

.mobile-header-wrapper {
    display: none;
}

.form-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
}

.form-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 0;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    box-shadow: none;
    font-size: 19px;
    color: #fff;
    transition: .2s ease-in-out;
}

.form-btn > button:hover {
    background-color: #b07d23;
}

.page-wrapper {
    background-size: contain;
}

.page-content .home-ul > li > p {
    justify-content: flex-start;
    width: 100%;
}

.board-list-wrapper {
    display: flex;
    gap: 1rem;
}

.board-list {
    width: calc(25% - (1rem * 3) / 4);
}

.board-list > ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dashboard-logo {
    display: flex;
    width: 140px;
    height: 140px;
}

.dashboard-logo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#user-table th,
#user-table td {
    text-align: start;
}

#user-table td > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
}

#user-table th span,
#user-table td span {
    font-size: 14px;
}

input[type="checkbox"] {
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background: none;
    background-color: #f0f0f0;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    opacity: 0.5;
    color: transparent;
}

input[type="checkbox"]:hover {
    opacity: 1;
}

input[type="checkbox"]:checked {
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
    opacity: 1;
}

input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

input[type="checkbox"]:checked:before {
    border-color: #fff;
}

.dt-paging-button.current {
    background-color: var(--theme-color) !important;
    border-color: transparent !important;
}

.dashboard-wrapper form {
    padding: 0 2rem;
    padding-bottom: 0.5rem;
}

#user-table_wrapper {
    height: 100%;
}

.dt-length > label {
    padding-left: 0.5rem;
}

.dt-layout-row.dt-layout-table {
    height: calc(100% - 110px) !important;
    padding: 0;
    border: 1px solid rgba(0,0,0,.1);
}

.dt-layout-row {
    height: calc(55px - .5rem);
    padding: 0;
}

.dt-layout-cell {
    padding: 0 !important;
    height: 100%;
}

.login-page-contain {
    display: flex;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    width: 60%;
}

.login-page-wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-page-form .form-group > label {
    font-size: 14px;
    padding-left: 0.5rem;
    margin-bottom: .5rem;
    font-weight: 500;
    color: var(--theme-color);
    position: relative;
    display: flex;
    padding-left: 1rem;
}

.login-page-form .form-group .form-group-input > input {
    width: 100%;
    height: 50px;
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    outline: 0 !important;
    font-size: 13px;
    font-weight: 400;
}

.login-page-form .form-group .form-group-input > input:focus {
    border-color: var(--theme-color);
}

.login-page-form {
    display: flex;
    width: 100%;
}

.login-page-form form {
    width: 100%;
}

.login-page-form .form-group:not(:last-child) {
    margin-bottom: 1.5rem;
}

.login-form-btn > button {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border: none;
    outline: 0;
    background-color: var(--theme-color);
    border-radius: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    transition: .2s ease-in-out;
}

.login-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-btn > button:hover {
    opacity: .7;
}

.login-pege-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-pege-title > span {
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-color);
    width: 60%;
    text-align: center;
}

.login-page-left {
    width: 50%;
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login-page-right {
    width: 50%;
    background-color: #f0f0f0;
}

.login-page-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.login-page-image > img {
    width: 360px;
}

.login-page-form .form-group .form-group-input {
    position: relative;
}

.login-page-form .form-group .form-group-input > input {
    width: 100%;
    height: 50px;
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    outline: 0 !important;
    font-size: 13px;
    font-weight: 400;
}

.login-page-form .form-group .form-group-input > input:focus {
    border-color: var(--theme-color);
}

.show-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.show-password > i {
    font-size: 20px;
    color: #666;
}

.success-contain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div#success-image {
    width: 300px;
}

.success-wrapper {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.success-text > span {
    font-size: 25px;
    color: #00C985;
    font-weight: 600;
    text-align: center;
}

.success-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.success-text > a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    padding: 1rem;
    color: #444;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: .2s ease-in-out;
}

.success-text > a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.success-text > p {
    width: 60%;
    text-align: center;
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.dt-layout-cell.dt-start .dt-length {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 250px;
    width: 100%;
}

.delete-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.3rem 1rem;
    font-size: 14px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
}

.delete-btn > button:hover {
    opacity: .7;
}

.logout-btn {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.logout-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.7rem 1rem;
    font-size: 14px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
    width: 150px;
}

.logout-btn > button > i {
    font-size: 15px;
}

@media screen and (max-width:993px) {
    .header-wrapper {
        display: none;
    }

    .mobile-header-wrapper {
        display: flex;
        flex-direction: column;
    }

    .mobile-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }

    .mobile-header-top-left,
    .mobile-header-top-right {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .mobile-header-top-left > a {
        display: flex;
        width: 100px;
    }
    
    .mobile-header-top-left > a > img {
        width: 100%;
    }
    
    .mobile-header-top-right > a {
        display: flex;
        width: 100px;
    }
    
    .mobile-header-top-right > a > img {
        width: 100%;
    }

    .mobile-header-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        border-top: 2px solid var(--theme-color);
        padding-left: 0;
    }
    
    .mobile-header-logo {
        width: 200px;
    }
    
    .mobile-header-logo > a {
        display: flex;
        width: 100%;
    }
    
    .mobile-header-logo > a > img {
        width: 100%;
    }
    
    .mobile-heade-menu-btn {
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color);
        border-radius: 5px;
    }
    
    .mobile-heade-menu-btn > i {
        color: #fff;
        font-size: 29px;
    }

    .mobile-header-contain {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100%;
        background-color: #fff;
        z-index: 9;
        width: 50%;
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease-in-out 0s;
    }

    .mobile-header-contain.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-header-remove {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }
    
    .mobile-header-contain > ul > li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        transition: all 0.3s ease-in-out 0s;
    }
    
    .mobile-header-contain > ul > li > a {
        display: flex;
        padding: 1rem;
        color: #000;
        font-size: 13px;
        font-weight: 500;
        width: 100%;
        text-decoration: none;
    }
    
    .mobile-header-contain > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .megamenu-overlay {
        position: fixed;
        background: rgba(0, 0, 0, 80%);
        inset: 0;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .megamenu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-header-center > a {
        display: flex;
        width: 130px;
    }
    
    .mobile-header-center > a > img {
        width: 100%;
    }
    
    .mobile-header-center {
        position: absolute;
        top: 10px;
        right: 260px;
    }

    .login-page-contain {
        width: 80%;
    }

    .login-page-image > img {
        width: 250px;
    }

    #user-table_wrapper {
        overflow: auto;
    }
}

@media screen and (max-width:769px) {
    .home-btn-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .home-btn-wrapper {
        padding: 1rem;
    }

    .form-group-input input#file-1 {
        width: 10%;
    }
    
    .board-list-wrapper {
        flex-wrap: wrap;
    }

    .board-list {
        width: calc(50% - (1rem) / 2);
    }

    div.dt-container .dt-search {
        float: left;
    }
    
    div.dt-container div.dt-layout-row {
        display: block;
    }

    div.dt-container div.dt-layout-cell {
        display: block !important;
    }

    div.dt-container div.dt-layout-row.dt-layout-table {
        margin-top: 3rem !important;
    }

    .dt-layout-row.dt-layout-table {
        border: none !important;
    }

    div.dt-container div.dt-layout-cell.dt-start {
        text-align: start !important;
    }
    
    .dt-container .dt-length {
        text-align: start !important;
    }
}

@media screen and (max-width:553px) {
    .top-banner-text > p {
        font-size: 12px;
    }
    
    .top-banner-text > span {
        font-size: 15px;
    }
    
    .top-banner-text > strong {
        font-size: 15px;
        width: 100%;
    }

    .home-btn-container {
        padding: 0;
    }

    .home-btn-wrapper-contain > a {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .home-btn-wrapper-contain {
        flex-direction: column;
        width: 100%;
    }

    .page-content-image > img {
        width: 100%;
    }

    .footer-container {
        padding: 0;
    }
    
    .footer-text > span {
        font-size: 12px;
    }

    .mobile-header-top,
    .mobile-header-top-left {
        gap: 1rem;
    }

    .mobile-header-top-left > a,
    .mobile-header-top-right > a  {
        width: 80px;
    }

    .mobile-header-contain {
        width: 95%;
    }

    .page-content span > p {
        font-size: 13px;
    }

    .form-group-input {
        flex-direction: column;
    }
    
    .form-group.form-group-wrapper {
        flex-direction: column;
    }
    
    .form-group-contain {
        width: 100%;
    }

    .form-btn {
        width: 100%;
    }

    .page-content > ul > li > span,.page-content > ul > li > p {
        width: 100%;
        justify-content: flex-start;
    }
    
    .page-content > ul > li {
        flex-direction: column;
    }

    .top-banner-text {
        padding: 2.5rem 0;
    }

    .board-list {
        width: 100%;
    }

    .mobile-header-center {
        position: relative;
        top: unset;
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        width: 100%;
        right: unset;
        padding: 0 1rem;
        padding-bottom: 0.5rem;
    }

    .login-page-contain {
        flex-direction: column;
        width: 90%;
    }
    
    .login-page-left {
        width: 100%;
    }
    
    .login-page-right {
        width: 100%;
    }
    
    .login-pege-title > span {
        width: 100%;
    }

    .delete-btn {
        width: 100%;
    }

    .dt-container .dt-search {
        float: left;
    }

    div#user-table_wrapper {
        overflow: auto;
    }

    .dashboard-header {
        justify-content: flex-start;
        padding: 0 .5rem;
    }
    
    .logout-btn {
        right: 10px;
    }
    
    .logout-btn > button {
        padding: .7rem 0;
        width: 120px;
    }
}