@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: 'Kanit', sans-serif !important;
    background-color: #191b1c;
    font-size: 16px;
    min-height: 100vh;
    color: #fff;
}

.pricing-card {
    background: #25282a;
    color: #EEEEEE;
    border-radius: 10px;
    height: 100%;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}

.pricing-card > * {
    z-index: 2;
}



.pricing-card:hover {
    border: 1px solid #2cc4ef;
}



.pricing-card .text-side {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.pricing-card .text-side h4{
    font-size: 28px;
    margin: 0;
}


.pricing-card .text-side i{
    font-size: 30px;
    background-image: linear-gradient(to right, #56adff 0%, #0ef0ff 50%, #56adff 100%);
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card .card-title{
    text-align: center;
    color: #a1a1a1;
    font-weight: 300;
    font-size: 20px;
}

.list-unstyled li i{
    margin-right: 8px;
    color: #ffffff;
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
}

.list-unstyled li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: 300;
}

.list-unstyled{
    margin-top: 30px;
}

.card-price{
    margin: 0px;
    font-size: 50px;
    color: #fff;
    text-align: center;
}

.card-price .period{
    font-size: 14px;
    color: #d1d1d1;
    font-weight: 300;
}

.hero img{
    height: 400px;
}

.side-nav{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #25282a;
    margin-right: 0px;
    z-index: 2;
    position: relative;
    padding: 10px;
}

a{
    text-decoration: none;
}

.nav-item{
    font-size: 19px;
    color: #EEEEEE;
    transition: all 300ms ease-in-out;
}

.nav-item:hover{
    color: #2cc4ef !important;
    text-shadow: 0 0 10px #303030;

}

.nav-active{
    color: #2cc4ef;
    text-shadow: 0 0 10px #303030;
    font-weight: 700;
}

  .card-info{
      text-align: left !important;
  }

  .btn-action{
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    padding: 3px 10px;
    border-radius: 10px;
    color: #EEEEEE;
    text-transform: uppercase;
  }
  .btn-action:hover{
    background: #ada6ff;
  }

  .nav-img-cont{
    
    margin-right: 40px;
  }

  .nav-title{
    margin: 0px;
    background: #EEEEEE;
    color: #bababa;
    font-weight: 700;
    text-align: left;
    text-transform: none;
    padding: 15px;
    padding-left: 20px;
    font-size: 16px;

    }


.nav-item i{ 
    margin-right: 10px;
}

.warn{
    width: fit-content;
    text-align: center;
    margin: auto;
    padding: 10px 40px;
    
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    border: 2px solid #2cc4ef;
    border-radius: 6px;
    color: black;
}


.btn btn-primary{
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    border: none;
    border-radius: 5px;
    width: 300px;
    outline: none;
    padding: 10px;
    color: #EEEEEE;
    font-size: 20px;
    transition: all 300ms ease-in-out;
    font-weight: 600;
    height: 45px;
    
}

  .btn btn-primary:hover{
    box-shadow: inset 0px -50px #EEEEEE;
    color: #2cc4ef;
  }

  .btn-lighter{
    background: #ebe8ff;
    padding: 5px 10px;
    border-radius: 5px;
    color: #3c21f7;
    font-size: 17px;
    font-weight: 300;
    transition: all 300ms ease-in-out;
    border: none;
  }
  .btn-lighter:hover{
    box-shadow: inset 0px -50px #3c21f7;
    color: #EEEEEE;
  }

.download-href{
    font-weight: 700;
    color: #2cc4ef;
    padding: 4px 10px;
    background: #303030;
    border-radius: 3px;
}
.download-href:hover{
    font-weight: 700;
    color: #EEEEEE;
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 5px;
  }
  

  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.308); 
    border-radius: 3px;
  }
   

  ::-webkit-scrollbar-thumb {
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%); 
    border-radius: 3px;
  }
  

  ::-webkit-scrollbar-thumb:hover {
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%); 
    cursor: pointer;
  }

  ::-webkit-scrollbar-corner {
    background-color: #3d3d3d00;
    }

    
.new-form{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}


.fields{
    display: inline-flex;
    margin-left: 20px;
    flex-wrap: wrap;
    flex-direction: column;
}
textarea{
    background: #25282a;
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    outline: none;
    padding: 20px;
    color: white;
    font-size: 20px;
    white-space: nowrap;
    overflow: auto;
}
label{
    color: #EEEEEE;
}
select{
    background: #191b1c;
    border: none;
    border-radius: 5px;
    width: 300px;
    outline: none;
    padding: 12px;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    width: 100%;
}
input[type=file]{
    background: #191b1c;
    border: none;
    border-radius: 5px;
    width: 300px;
    outline: none;
    padding: 12px;
    color: white;
    font-size: 16px;
    margin: 5px 0px 0px 0px;
}

.text-area{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.formcont{
    display: inline-flex;
    flex-direction: column;
    vertical-align: top;
}


input#rpass + input#pass {
    display:none;
} 
input#rpass:checked + input#pass {
    display:block;
} 

input#rfile + input#file {
    display:none;
} 
input#rfile:checked + input#file {
    display:block;
} 


input#rself + input#self {
    display:none;
} 
input#rself:checked + input#self {
    display:block;
} 

.paste{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0px;
    background: #25282a;
    border: 1px dashed grey;
    width: 90%;
    color: white;
    border-top: none;
}


.paste:first-child {
    border-top: 1px dashed grey;

}

.paste-cont a{
    color: #4585e4;
    font-weight: 800;
    cursor: pointer;
}
.paste-cont a:hover{
    color: #619aee;
}

.paste-cont{
    width: 25% !important;
    text-align: center;
}


.navbar-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.navbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #25282a;
}

.div-block {
    margin-right: -33px
}

.div-block.mobile-menu {
    display: none
}

.nav-menu {
    min-width: 0
}

a.navbar-brand {
    display: flex;
    align-items: center;
    align-content: center;

}
a.navbar-brand h4 {
    color: #ffffff;
    font-size: 26px;
    margin: 0;
    font-size: 24px;
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a.navbar-brand i{
    font-size: 26px;
    background: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    color: #fff !important;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 5px;
    font-size: 17px;
    text-shadow: 0 0 20px black;
    margin-right: 12px;
}

a.navbar-brand span{
    color: #EEEEEE;
    font-weight: 400;
}

a.navbar-brand:hover{
    color: #2cc4ef;
}

.nav-link{
    font-weight: 600;
    color: #EEEEEE;
    margin: 0px 4px;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 5px;
    padding: 3px 12px;
    display: inline-block;
}

.nav-link:hover, .nav-link.nav-active{
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
}

.CodeMirror {
    width: 100%;
    background: #25282a;
    border-radius: 8px;
    color: #fff;
}

.CodeMirror-gutters {
    background-color: #25282a;
}

.CodeMirror-gutters {
    border-right: 1px solid #3f3f3f;
}

.form-check-input:checked {
    background-color: #2cc4ef;
    border-color: #2cc4ef;
}

label small{
    font-size: 14px;color: #ffffff36;text-align: center;margin-bottom: 15px;
}
.rself_input, .rfile_input, .rpass_input{
    display: none;
}

.form-check-input {
    box-shadow: none !important;
}
.form-switch .form-check-input:focus:not(:checked) {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e") !important;
}





.file-input-wrapper {
    background-color: #191b1c !important;
    border: 1px dashed #2c3033!important;
    padding: .75rem;
    border-radius: .5rem;
    text-align: center;
    transition: background-color .2s ease;
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.file-input-wrapper>input[type="file"] {
    font-size: 40px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-input-wrapper>.btn-file-input {
    background: #25282a;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
    font-size: 16px;
    color: #b4aebc;
    margin: 0;
    font-weight: 400;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.file-input-wrapper>.btn-file-input p{
    font-size: 16px;
    color: #b4aebc;
    margin: 0px;
    font-weight: 400;
}


.CodeMirror-cursor {
    border-left: 1px solid #fff;
}

.inf-cont{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 30px;
}

.super{
    height: auto;
    margin-bottom: 10px;
    width: unset;
    padding: 30px;
    background: #222831;
    border-radius: 5px;
    margin-right: 40px;
}

.pass{
    margin: auto;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

[type=button], [type=reset], button {
    border: 0;
    cursor: pointer;
    box-shadow: none;
}

@media screen and (max-width: 768px){
    .navbar-wrapper {
        flex-wrap: wrap;
    }
}


.btn-primary {
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    border: #2cc4ef;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 300ms ease-in-out;
    text-shadow: 0 0 20px black;
}

.btn-primary:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}


a.colored-link {
    color: #2cc4ef;
}


a.colored-link:hover {
    color: #2cc4ef;
}

.login-page .card h1 {
    line-height: 26px;
    font-size: 40px;
    margin-bottom: 30px;
}



/* table */
.table-container {
    border-radius: 12px;
}

table {
    border-collapse: collapse;
    width: 100%;
}


/* table-radious */
table tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

table tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

/* style tr, td, th */
tr th {
    color: #fff;
    background-color: #2cc4ef;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

tr td {
    color: #c7c7c7;
    font-size: 16px;
    font-weight: 500;
}

th,
td {
    padding: 16px;
    text-align: center;
}


/* even and odd color */
tbody tr:nth-child(odd) {
    background-color: #191b1c;
}

tbody tr:nth-child(even) {
    background-color: #25282a;
}



.actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.btn-ancher {
    background: none;
    border: none;
    color: #2cc4ef;
}

.btn-ancher:hover {
    color: #2cc4ef;
}


.dropdown-menu {
    background: #191b1c;
    border: 1px solid #34383b;
}

.dropdown-item {
    color: #c7c7c7;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-item:hover, .dropdown-item.nav-active{
    background: #25282a;
    color: #fff;
}


.form-control:disabled {
    color: grey;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

td.multi-td {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-group {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px 0px 0px 0px;
}

.banner-group a{
    margin: 0px 5px 0px 5px;
}

.banner-group a img{
    width: 440px;
    height: 110px;
}

@media (max-width: 801px){
    .banner-group a img{
        width: 90vw;
        height: 22.5vw;
        margin-bottom: 20px;
    }

}

.hero {
    padding: 80px 0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    min-height: 85px;
    transition: font-size 0.3s;
}


section.features .features-card{
    background: #25282a;
    color: #EEEEEE;
    border-radius: 10px;
    height: 100%;
    padding: 32px 24px;
    position: relative;
    transition: all 300ms ease-in-out;
}

section.features .features-card:hover {
    border: 1px solid #2cc4ef;
    animation: scalelight 5s ease-in-out;
}

@keyframes scalelight {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.06);
    }
    10% {
        transform: scale(1.04);
    }
    95% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

.pricing-card::before, .features-card::before{
    background-image: linear-gradient(to bottom right, rgb(45 200 248 / 0.05), transparent);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1 !important;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover::before, .features-card:hover::before{
    opacity: 1;
}

.pricing-card > *, .features-card > *{
    z-index: 2;
}


.cta {
    background-color: #007bff;
    color: white;
    padding: 80px 0;
}

section.faq{
    padding: 60px 0;
}


section.contact{
    padding: 100px 0;

}

footer{
    background: #25282a;
    color: #EEEEEE;
    padding: 20px 0;
}

footer p{
    text-align: center;
    font-size: 16px;
    margin: 0;
}

.user-info {
    flex: 1;
    display: flex;
    gap: 80px;
}

.user-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.user-img img {
    width: 120px;
}

/* <div class="user-info">
    <div class="user-info-list">
        <div class="user-info-item">
            <i class="fa-solid fa-user"></i>
            <span class="user-info-title">Username:</span>
            <span class="user-info-value"><?php echo $username; ?></span>
        </div> */


.user-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 18px;
}

.user-info-title {
    color: #fff;
    font-weight: 400;
}

.user-info-value {
    font-weight: 300;
    color: #c0c0c0;
}

.user-info-item i {
    font-size: 16px;
    color: #2cc4ef;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.user-actions {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
}

.user-actions a{
    width: 100%;
}


.card.card-info-item .card-text .card-value img {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
}

.card.card-info-item {
    padding: 12px 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 15px;
}

.card.card-info-item i {
    width: 40px;
    height: 40px;
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    border-radius: 10px;
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-shadow: 0 0 7px black;
    min-width: 40px;
}

.card.card-info-item .card-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card.card-info-item .card-text .card-title{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.card.card-info-item .card-text .card-value{
    font-size: 16px;
    font-weight: 300;
    color: #c0c0c0;
    line-break: anywhere;
}

.card-copy{
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.card-copy::before {
    content: "Copy";
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity 0.3s;
    z-index: 3;
    font-size: 14px;
    line-height: 12px;
    padding: 10px;
    text-transform: uppercase;
}

.card-copy.copied::before{
    content: "✅ Copied";
}

.card-copy::after {
    content: "Click to copy";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000ab;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}


.card-copy.copied::after{
    content: "✅ Copied";
}

.card-copy:hover::after {
    opacity: 1;
}

@media (max-width: 991px){
    .user-card{
        flex-direction: column;
    }

    .user-card .user-img{
        display: none;
    }

    .user-actions{
        flex-direction: row;
        margin-top: 20px;
    }

    .user-actions button, .user-actions a {
        min-width: 120px;
    }
}

@media (max-width: 768px){
    .user-info{
        flex-direction: column;
        gap: 0px;
    }

    .user-card{
        gap: 0px;
    }

    .user-card .user-img{
        display: none;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .buttons a{
        margin: 0 10px;
        margin-bottom: 10px;
    }

    .nav-item.dropdown{
        margin-bottom: 10px;
    }
}

.filter-btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.filter-btn-group button {
    background: #191b1c;
    color: #c0c0c0;
    border: none;
    cursor: pointer;
    flex: 5;
    padding: 12px 20px;
    text-align: center;
    transition: all 200ms ease-in-out;
    border-radius: 10px;
    color: #fff;
    transition: all 300ms ease-in-out;
    position: relative;
    overflow: hidden;
}

.filter-btn-group button > *{
    position: relative;
    z-index: 2;
}

.filter-btn-group button:hover{
    background-color: #3a3a3a;
    transform: translateY(-4px);
}

.filter-btn-group button::after {
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    opacity: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1 !important;
    transition: opacity 0.3s;
}

.filter-btn-group button.active::after {
    opacity: 1;
}

.filter-btn-group button.active{
    transform: translateY(-4px);
}

.filter-btn-group button.active i{
    background: none;
    color: #fff;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.filter-btn-group button.active .filter-btn-text p{
    color: #fff;
}


.filter-btn-group button i{
    font-size: 26px;
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.filter-btn-group button .filter-btn-text h4{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    z-index: 2;
    text-shadow: 0 0 20px black;
}

.filter-btn-group button .filter-btn-text p{
    font-size: 16px;
    font-weight: 300;
    color: #c0c0c0;
    margin: 0;
}

.week.filter-item .pricing-card::after {
    content: "Best Seller";
    position: absolute;
    top: 0;
    right: 0;
    background: #2cc4ef;
    color: #fff;
    padding: 4px 10px;
    border-bottom-left-radius: 10px;
    z-index: 9999;
}


.payment-card {
    background: #25282a;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.payment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.payment-card.danger .payment-card-header {
    background-color: #c137441a !important;
    color: #c13744 !important;
}

.payment-card.success .payment-card-header {
    background-color: #35974b1a !important;
    color: #35974b !important;
}

.payment-card.warning .payment-card-header {
    background-color: #c3b12c1a !important;
    color: #c3b12c !important;
}

.payment-card .payment-card-header .status {
    background: #0000004a;
    padding: 2px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.payment-card .card-body{
    padding: 25px;
    padding-bottom: 0px;
}

.payment-card .card-body .qr-code{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.payment-card .card-body .qr-code img{
    border-radius: 16px;
}

.info-item {
    background: #191b1c;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d1d1d1;
    font-weight: 300;
    margin-bottom: 12px;
    border-radius: 10px;
}

.info-item .info-item-title{
    color: #9d9d9d;

}

button.copy-btn {
    border: none;
    background: none;
    color: #2cc4ef;
}

.payment-card .card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: #191b1c;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 3px solid #25282a;
}

.payment-card .card-footer i{
    font-size: 14px;
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-card .card-footer span{
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-analytics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding-right: 16px;
}


.card-analytics i{
    font-size: 30px;
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


@media (max-width: 768px){
    .m-hide{
        display: none;
    }
    .m-show{
        display: block !important;
    }

    .hero img{
        height: auto;
    }
}

.m-show{
    display: none;
}

div.dt-container div.dt-length select{
    padding-right: 30px;
}

.sms-wrapper {
    display: flex;
}

.sms-wrapper .input-group-text {
    background: #191b1c;
    color: #b3b3b3;
    font-size: 15px;
    border: none;
    border-right: 2px solid #25282a !important;
    padding-inline: 14px;
}


.aio {
    display: flex;
    width: 100%;
}


.sidenav {
    width: 280px;
    min-width: 280px;

    position: relative;
}


.container.page-content {
    padding: 40px;
}

.side-nav-content {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    min-width: 280px;
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #27272a;
}


.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: #25282a;
    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: #25282a;
    transition: all 0.3s ease-in-out;
}

.user-box i{
    width: 26px;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #2cc4ef;
    font-size: 18px;
}

a.user-box:hover{
    text-decoration: none;
    color: #dadada;
    border-color: #2cc4ef;
}

.sidenav-items-container{
    background: #25282a;
    margin: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}


.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;
    margin-left: 10px;
}

.sidenav-item::before {
    height: 100%;
    content: "";
    background-color: #191b1c;
    width: 4px;
    opacity: 1;
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -10px;
    transition: background-color 0.3s ease-in-out;
}

.sidenav-item.active::before, .sidenav-item:hover::before {
    background-color: #2cc4ef;
}

/* first before top corder is rounder, last before bottom corner is rounder */
.sidenav-item:first-child::before {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.sidenav-item:last-child::before {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.sidenav-item.active, .sidenav-item:hover, .sidenav-item.active i, .sidenav-item:hover i {
    color: #2cc4ef;
    text-decoration: none;
}

.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;
}

.toggle-sidenav{
    display: none;
    background: #25282a;
    color: #fff;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}


@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: #191b1c;
        padding: 20px;
    }

    .sidenav.active .side-nav-content{
        margin-left: 0;
    }

    .sidenav.active .side-nav-content{
        height: 100vh;
        overflow-y: auto;
    }

    .page-content{
        width: 100%;
    }

    .toggle-sidenav{
        display: block;
    }

    .navbar-mobile-list{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        margin-top: 20px;
        gap: 10px;
    }

    nav{
        display: flex !important;
    }

    .sidenav.active .side-nav-content {
        margin-left: 0;
    }
}

body > nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #25282a;
    border-bottom: 1px solid #27272a;
    background: #25282a;
    height: 80px;
    display: none;
}

nav .container{
    padding-inline: 40px;
}

@media (max-width: 600px){
    nav .container{
        padding-inline: 0px;
    }
}

.product {
    background: #25282a;
    width: fit-content;
    margin: auto;
    margin-bottom: 30px;
    padding: 5px;
    border-radius: 10px;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product button {
    background: #25282a;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 200ms ease-in-out;
    border-radius: 10px;
    min-width: 120px;
}

.product button.active {
    background: #2cc4ef;
    color: #fff;
    text-shadow: 0 0 20px black;
}

@media (max-width: 1200px){
    .filter-btn-group{
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn-group button{
        flex: unset;
        display: block;
        min-width: 110px;
    }

    .product button{
        min-width: unset;
    }
}


@media (max-width: 568px) {
    .page-content {
       padding: 12px !important;
    }

    .card-body{
        padding: 25px 10px !important;
    }
}

.form-control:disabled, .form-select:disabled {
    color: #696969;
    background: #191b1c;
}

.form-control:disabled::placeholder, .form-select:disabled::placeholder {
    color: #696969;
}

.news-wrapper {
    margin: 0 auto;
}

.news-item {
    background-color: #25282a;
    border: 1px solid #333;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.title-section {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.news-item h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.news-item p {
    margin: 0;
}

.news-item-date small {
    font-size: 0.85rem;
    color: #a0a0a0;
}


.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.news-item-date{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.news-item-content h5{
    background-image: linear-gradient(to right, #2cc4ef 0%, #0ef0ff 50%, #2cc4ef 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-item-content{
    width: 100%;
}


.accordion-item {
    background: #25282a;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    color: #fff;
    cursor: pointer;
}


.accordion-button {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    width: 100%;
    padding: 0;
    cursor: pointer;
    padding: 15px;
}

.accordion-button:focus {
    outline: none;
}

.accordion-collapse {
    background: #191b1c;
    color: #c7c7c7;
    padding: 15px;
}

.accordion-body {
    font-size: 16px;
    font-weight: 300;
}