@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {

    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    font-size: 14px;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Kanit', sans-serif;
    background: #0f1012;
    min-height: 100vh;
    color: #fff;
}

body.unscrollable{
    overflow: hidden;

}

.side-nav-content {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    min-width: 280px;
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #27272a;
}
/* 
/* width */
::-webkit-scrollbar {
    width: 3px;
  }

/* Track */
::-webkit-scrollbar-track {
background: #0f1012;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 50px;
}




.navbar {
    background: #18181b;
    padding: 18px;
}

.navbar-brand img {
    width: 120px;
}

header{
    z-index: 99;
    position: relative;
    width: 100%;
}

main{
    min-height: calc(100vh - 80px);
}

.bread {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.breadcrumbs {
    margin: 0;
    white-space: nowrap;
}

.page-title-n {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.breadcrumbs .breadcrumb-page {
    font-size: 13px;
    font-weight: 500;
    color: #a1a1aa;
    text-decoration: none;
}

.page-title-n h1 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 32px;
}

.breadcrumbs i {
    margin: 0 0.5rem;
    color: #a1a1aa;
    font-size: 10px;
}


.menu-title {
    color: #edca85;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}


.aio {
    display: flex;
    width: 100%;
}

body.loading{
    overflow: hidden;
}

body.loading .pending-loader{
    display: flex;
}

.pending-loader {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #0f1012;
    z-index: 99;
}

.server-profile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.server-profile .server-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    background: #18181b;
    border-radius: 50px;
    font-size: 22px;
    color: #edca85;
}

.server-title h6{
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
}

.server-title p{
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
    margin-bottom: 0px;
}

.sidenav {
    width: 280px;
    min-width: 280px;

    position: relative;
}

button.dropdown-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #a1a1aa;
    gap: 10px;
}

button.dropdown-item i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;

}

.container.page-content {
    padding: 40px;
}

.sidenav-list {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.sidenav-list .line {
    display: flex;
    gap: 10px;
    width: 100%;
}


.user-box {
    background: #18181b;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    width: 100%;
    color: #dadada;
    border-width: 1px;
    border-style: solid;
    border-color: #18181b;
    transition: all 0.3s ease-in-out;
}

.user-box i{
    width: 26px;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #edca85;
    font-size: 18px;
}

a.user-box:hover{
    text-decoration: none;
    color: #dadada;
    border-color: #edca85;
}

.sidenav-items-container{
    margin: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}


.sidenav-item {
    position: relative;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #a1a1aa;
    padding-right: 0px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.sidenav-item.active::before {
    background: #edca85;
}

.sidenav-item i {
    margin-right: 12px;
    width: 20px;
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #a1a1aa;
    transition: color 0.3s ease-in-out;
}

.btn-ancher.dropdown-toggle::after{
    display: none;
}

table .dropdown{
    display: inline-flex;
}


.sidenav-item.active i, .sidenav-item:hover i {
    color: #edca85;
}

.sidenav-item.active {
    color: #edca85;
    background: #18181b;
}

.sidenav-item:hover{
    color: #edca85;
}


.sidebar-heading img{
    margin: 10px auto 10px auto;
    height: 50px;
    display: block;
}


.burger-container{
    display: none;
}

.burger-container.active .fa-bars{
    display: none !important;
}

.burger-container.active .fa-times{
    display: block !important;
}

.burger-container .fa-bars{
    display: block;
}

.burger-container .fa-times{
    display: none;
}


.custom-table {
    background: #0f1012;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
}

.custom-table thead tr th {
    background: #edca85 !important;
    padding: 0.75rem 0.875rem !important;
    font-size: 14px;
    font-weight: 500;
    border-color: #edca85;
    color: #0f1012;
}


.custom-table thead tr th:first-child {
    border-top-left-radius: 8px;
}

.custom-table thead tr th:last-child {
    border-top-right-radius: 8px;
}

.custom-table tbody tr td {
    padding: 0.75rem 0.875rem !important;
    font-size: 14px;
    font-weight: 500;
    border-color: #2a3243;
    vertical-align:middle;
}


.custom-table tbody tr td:last-child .actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.custom-table tbody tr td .actions a{
    color: #edca85;
}

.custom-table tbody tr td .actions a:hover{
    color: #74a8e5;
}

.custom-table tbody tr:nth-child(even) {
    background: #18181b;
}

.btn-ancher {
    background: none;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    padding: 0px !important;
    width: fit-content !important;
    min-width: auto;
    margin-right: 10px;
}

.message-box {
    background: #18181b;
    border-radius: 8px;
    padding: 16px;
    width: 80%;
}

.message-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.message-wrapper.admin .message-box {
    background: #0f1012;
    border: 1px solid #27272a;
}

.message-profile-wrap{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;;
}

option {
    background: #0f1012;
}

.message-profile-wrap h5{
    margin: 0;
}

.message-wrapper.admin {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}

.message {
    margin: 0px;
    max-width: 100%;
    word-wrap: break-word;
}

span.message-date {
    display: block;
    width: 80%;
    text-align: right;
    padding: 3px 8px;
    color: #a1a1aa;
}

.btn-ancher:hover {
    color: #fff;
}

.dash-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row !important;
    background: #18181b;
    padding: 20px;
}

.dash-card .dash-card-title h6{
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0px;
}

.dash-card .dash-card-title p{
    font-size: 0.8rem;
    font-weight: 400;
    color: #a1a1aa;
    margin-bottom: 0px;
}

.dash-card i {
    color: #edca85;
    font-size: 24px;
}


.dash-card-user-profile i.user{
    font-size: 40px;
    margin: auto;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}



@media screen and (max-width: 768px){

    .burger-container{
        position: absolute;
        right: 0;
        top: 0;
        margin: 12px 25px;
        color: white;
        font-size: 24px;
        display: block !important;
    }

    #sidebar{
        display: none;
    }



    
}



.btn-nav {
    color: white;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
}

nav .btn-nav {
    background: #0f1012;
}

.page-content .btn-nav {
    background: #18181b;
}

.btn-nav i {
    color: #a1a1aa;
    transition: color 0.3s ease-in-out;
    font-size: 18px;
}

.btn-nav:hover, .btn-nav:hover i {
    color: white;
}

.card-title{
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
    padding: 20px;
}

a.small-ancher {
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 7px;
}

.secret {
    filter: blur(4px);
    transition: .3s;
}
.secret:hover {
    filter: none;
}

.toggle-sidenav{
    display: none;
    background: #18181b;
    color: #a1a1aa;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}


.user-drop-down{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5px 15px;
    flex-direction: column;
    border-bottom: 1px solid #292929;
    margin-bottom: 10px;
}

.card-plus {
    background: #18181b;
    padding: 5px 10px;
}

.sidenav-list img{
    width: 120px;
    margin: auto;
}
.sidenav-list a {
    text-decoration: none;
}
.card-plus i {
    color: #edca85;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


.card-text .card-text-item {
    margin-bottom: 3px;
    color: #a1a1aa;

}

.card-text .card-text-item span {
    color: #ffffff;
    font-weight: 500;
}

.labels-group {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.version_select_group{
    display: none;
    width: 100%;
}

.label-card {
    width: 275px;
    background: #141417;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #edca854d;
}

.label-card-lg{
    width: 250px !important;

}

.label-card img{
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.label-card h6 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
}

.label-card p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
}

.labels-group input[type="radio"] {
    display: none;
}

.labels-group input[type="radio"]:checked + .label-card {
    border: 1px solid #edca85;
}

.radio-card-wrapper input[type="radio"] {
    display: none;
}

.radio-card-wrapper input[type="radio"]:checked + .card {
    border: 2px solid #edca85;
    background: #097066;
}

.radio-card-wrapper .card {
    border: 2px solid #7178f800;
}

.vertical-card {
    width: 100% !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    padding-right: 0px;
    border: 1px solid #27272a00;
}

.vertical-card > * {
    width: 105px;
    text-align: left;
}

.vertical-card > p > span {
    color: #ffffff;
    font-weight: 500;
}


@media screen and (max-width: 991px){
    .side-nav-mobile-control{
        display: flex;
    }
    .sidenav,.side-nav-content{
        position: fixed;
        margin-left: -100%;
        width: 100%;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        top: 0;
        left: 0;
        height: 100%;
        background: #0f1012;
        padding: 20px;
    }

    .sidenav.active .side-nav-content{
        margin-left: 0;
    }

    .sidenav.active .side-nav-content{
        height: 100vh;
        overflow-y: auto;
    }

    .page-content{
        width: 100%;
        padding: 20px !important;
    }

    .toggle-sidenav{
        display: block;
    }

    .navbar-mobile-list{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        margin-top: 20px;
        gap: 10px;
    }

}

@media screen and (max-width: 767px){
    .vertical-card > .plan {
        display: none;
    }
}

.input_copy_wrapper {
    position: relative;
}

.input_copy_wrapper .copy_btn{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.copy_btn{
    background: none;
    color: #a1a1aa;
    font-size: 14px;
    cursor: pointer;
    border: none;
    padding-inline: 10px 20px;
}

.copy_btn .fa-check{
    display: none;
    color: #4caf50;
}

.copy_btn.copied .fa-check{
    display: block;
}

.copy_btn.copied .fa-copy{
    display: none;
}

.up-wow{
    background: #edca85;
    color: #0f1012;
    text-align: center;
    padding: 10px;
}

.up-wow p{
    margin: 0px;
}

.up-wow a{
    color: #0f1012;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    background: none;
    border: none;
    color: #0f1012;
    padding: 0px 5px;
}

.title-spaced {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 20px;
}

.custom-card i {
    font-size: 60px;
    color: #edca85;
    margin-bottom: 20px;
}

.custom-card .title {
    margin-bottom: 5px;
    font-size: 16px;
}

.custom-card .sub-title {
    font-size: 14px;
    color: #a1a1aa;
}

.custom-card a{
    height: fit-content;
    padding: 5px 30px;
    margin-top: 20px;
}

.card-plus .card-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 0px;
}

.card-plus .card-title h4{
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 0px;
}

.card-plus .card-title h5{
    font-size: 24px;
    color: #edca85;
    margin-bottom: 0px;
}

.card-plus hr{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 25px;

}


.pricing-box{
    padding: 30px;
    position: relative;
    transition: 0.5s;
}

.pricing-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    transform: matrix(1, 0, 0, -1, 0, 0);
    transition: 0.3s;
    background: linear-gradient(224deg, #18181b7a, #18181b);
    border-radius: 15px;
    border: 1px solid #edca854d;
}

.pricing-box:hover::after {
    border: 1px solid #edca85;
}


.pricing-box h3{
    background: linear-gradient(to right, #d8ac58 0%, #ffe2a8 50%, #d8ac58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 36px;
}

.pricing-box h3 span{
    color: #edca85;
    font-weight: 600;
}

.pricing-box > p{
    color: #ffffffa1;
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.pricing-box .pricing-features{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pricing-box .pricing-features .feature{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 0px;
}

.pricing-box .pricing-features .feature i{
    color: #edca85;
    font-size: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #34322c;
    border-radius: 50%;
}

.pricing-box .pricing-features .feature p{
    color: #ffffffa1;
    font-size: 16px;
    margin: 0px;
}

.pricing-box .pricing-features .feature p span.lighty{
    color: #ffffff;

}

.pricing-box .price {
    color: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    text-transform: uppercase;
}
.pricing-box .price p{
    color: #ffffffa1;
    font-size: 16px;
    text-transform: capitalize;
    margin: auto 0;
    margin-left: 8px;
}

.feature-text {
    font-weight: 200;
    margin-left: 10px;
}

.feature-text .imp-text{
    font-weight: 400;
    color: #fff !important;
}

.pricing-box a{
    position: relative;
    z-index: 2;
    margin-top: 20px;
    width: 100%;
}

.labels-group input[type="radio"]:disabled+ .label-card {
    filter: grayscale(1);
    background: none;
    cursor: no-drop;
}