.new-container {
    max-width: 1850px;
    margin: auto
}

/*
-----------------------------------------------------------
Login page
-----------------------------------------------------------
*/
.account-pages .waves-effect {
    background-color: #2856b1;
    border-color: #2856b1;
}

.account-pages .waves-effect a {
    color: #fff;
}

.account-pages .waves-effect:hover {
    background-color: #fff;
}

.account-pages .waves-effect:hover a {
    color: #2856b1;
}

/*
-----------------------------------------------------------
Dashboard page
-----------------------------------------------------------
*/
.logo.logo-light img,
.logo.logo-dark img {
    width: 100%;
    max-width: 250px;
}

body[data-layout=horizontal] .topnav {
    margin: 11px 0 0;
}

.headernewbtn {
    background: #edf2fa !important;
    border-radius: 50px;
    padding: 11px 15px 6px;
    margin-top: 3px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.newquerybox h2 {
    font-weight: 700;
    color: #000;
    font-size: 35px;
}

.monthbox,
.monthbox span {
    font-size: 12px;
    color: #222;
    font-weight: 400;
}

.testi-slider .item {
    padding: 20px;
    height: 300px;
}

.testi-slider p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    padding: 6px 0;
}

.testi-slider ul {
    padding: 0;
    list-style: none;
}

.testi-slider ul li {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
}

/*
-----------------------------------------------------------
Dropdown Menu
-----------------------------------------------------------
*/
.profile {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: end;
}

/* menu (the right one) */
.menu {
    position: absolute;
    top: calc(100% + 24px);
    right: 16px;
    width: 140px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 300ms;
    border-radius: 10px;
}

.menu::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 14px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
    z-index: -1;
}

.menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* menu links */
.menu ul {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10;
    background: #fff;
    padding: 0;
    border-radius: 10px;
    margin: 0;
}

.menu ul li {
    list-style: none;
}

.menu ul li:hover {
    background: #eee;
}

.menu ul li a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    padding: 8px 5px;
    gap: 5px;
}

.menu ul li a i {
    font-size: 1.2em;
}

/*
-----------------------------------------------------------
Query Page
-----------------------------------------------------------
*/
.query-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #fff;
}

.query-card:hover {
    border: 1px solid #2456b0;
}

.query-card h5 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #000;
}

.query-card span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    padding: 2px 20px;
    border-radius: 40px;
}

.query-card span.orange-col {
    background: rgb(241, 170, 61);
}

.query-card span.red-col {
    background: rgb(182, 33, 33);
}

.query-card span.violet-col {
    background: rgb(94, 23, 235);
}

.query-card span.blue-col {
    background: rgb(0, 151, 178);
}

.query-card span.green-col {
    background: rgb(0, 153, 79);
}

.q-botm {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 30px
}

.query-btn {
    font-size: 11px;
    font-weight: 500;
    background: #fff;
    color: #222 !important;
    padding: 2px;
    border-radius: 40px;
    width: 47%;
    text-align: center;
    border: 1px solid #fff;
}

.query-btn:hover {
    border: 1px solid #2456b0;
}

.q-buk {
    background: #fff;
    border-radius: 20px;
    padding: 27px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #222 !important;
    border: 1px solid #eee;
}

.q-buk:hover {
    border: 1px solid #2456b0;
}

/*
-----------------------------------------------------------
Query Page - Table Design
-----------------------------------------------------------
*/
.query-table {
    background: #fff;
    border-radius: 20px;
    border: none !important;
    padding: 0px 0px 25px;
}

.query-table tbody th {
    padding: 15px 15px 10px;
}

.query-table tbody tr {
    border: none;
    border-bottom: 1px solid #5370b040 !important;
}

.query-table tbody td {
    /* border: none;
    border-right: 1px solid #5370b040;
    border-radius: 20px; */
}

.query-table tbody td:last-of-type {
    border-right: none;
}

.query-table tbody td ul {
    padding: 0;
    list-style: none;
}

.query-table tbody td ul li {
    font-size: 12px;
    padding: 2px 0;
}

.query-table tbody td ul li strong i {
    display: inline-block;
    font-size: 10px;
    line-height: 18px;
    padding: 0 4px 0 0;
    vertical-align: top;
    color: #222;
}

.query-table tbody td .table-link {
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgb(39, 85, 176);
    line-height: 13px;
}

.query-table tbody td .table-link.orange-col {
    background: rgb(241, 170, 61);
}

.query-table tbody td .table-link.black-col {
    background: rgb(0, 0, 0);
}

.query-btns {
    text-align: center;
    display: block;
}

.radius a {
    color: white;
}

.act-link {
    width: 30px;
    height: 30px;
    line-height: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;

}

.act-link.green-col {
    background: rgb(0, 153, 79);
}

.act-link.black-col {
    background: rgb(0, 0, 0);
}

.act-link.red-col {
    background: rgb(182, 33, 33);
}

.act-link i {
    color: #fff;
    font-size: 14px
}

/* ======================================================================================= */

.statues {
    width: 92px;
    border-radius: 31px;
    color: white;
    margin-left: 105px;
    background-color: orange;
    border: none;
}

.top-header-query-form h4 {
    color: black;
    font-size: 23px;
    justify-content: space-between;
    align-items: center;
    align-items: self-start;
}

#exampleFormControlSelect1 {
    font-size: 12px;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
    font-size: 12px;
    color: #000;
}

.form-select option {
    font-size: 12px;
    color: #000;
    border-radius: 10px;

}

.form-control {
    border-radius: 9px;
}

.card-body h5 {
    font-size: 24px;
    color: #000;
}

.col input {
    font-size: 12px;
}

.col ::selection {
    font-size: 12px;
}

.form-label {
    font-size: 13px;
}

.qbottom span {
    float: right;
    padding-right: 15px;
}

.qbottom a {
    padding-left: 12px;
}


.fst section,
input,
date {
    font-size: 10px;
    height: 10px;
}

/*  */

.fst .form-select {
    font-size: 13px;
    color: #000;

}

.fst .form-control {
    font-size: 13px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #000;
    /* background-color: rgb(214, 205, 194); */

}

.top .card {
    border-radius: 12px;
}

.top .card-body {
    border-radius: 12px;
    line-height: 30px;
}

.qbottom {
    background-color: white;
    border-radius: 12px;
    padding-bottom: 10px;
    height: 130px;
}

.qbottom h5 {
    color: #000;
    padding: 7px;
    font-size: 23px;

}

.qbottom a {
    text-decoration: none;
    list-style: none;
    color: #000;
}

.card .form-select,
input {
    font-size: 13px;
    height: 50px;
    margin-top: 7px;
}

.card .form-control {
    color: #000;
}

.top .button {
    margin-bottom: 3px;
}

/* =================six-page===================== */
.container-six {
    padding: 5px;
    margin-top: 5px;
    height: 28rem;
    width: 98%;
    background-color: #fefdfd;
    border-radius: 17px;
    margin-left: 14px;

}

.sixpage {
    display: flex;
    margin: 5px;
    margin-top: 30px;
    justify-content: space-between;
}

.sixpage p {
    font-weight: 500px;
}

.sixpage p a {
    width: 75px;
    height: 29px;
    border-radius: 17px;
    border: 1px solid black;
    color: #090909;
    font-size: 11px;
    padding: 5px;
}

.sixpage ul {
    list-style: none;
    margin: 0px;
    padding: 0;
    margin-top: 10px;
}

.sixpage ul li {
    list-style: none;
    margin: 0px;
    display: inline;
    margin-right: 16px;
}

.sixpage ul li a {
    width: 97px;
    height: 37px;
    border-radius: 17px;
    background-color: #2456b0;
    border: none;
    font-size: 13px;
    text-decoration: none;
    color: #f9f6f6;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    font-weight: 600;
}

@media (max-width: 1320px) {
    .sixpage ul li a {
        /* width: 100%; */
        margin-top: 10px;
    }
}

.sixpage a.active {
    background-color: #fff;
    border: 1px solid black;
    color: #000;
}


.bottum {
    background-color: rgb(243 244 247);
    border-radius: 9px;
}

.sixpage p {
    margin-bottom: 0;
    color: #000;
    margin-left: 30px;
    font-size: 13px;
}

.switch {
    display: inline-block;
}

.switch input {
    display: none;
}

.switch label {
    display: block;
    width: 62px;
    height: 18px;
    border-radius: 15px;
    border: 1px solid #252424;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 30px;
}

.switch label::after {
    content: "";
    display: inherit;
    width: 30px;
    height: 16px;
    border-radius: 12px;
    background: #1d1c1c;
    transition: 0.3s;
}

.switch input:checked~label {
    border-color: #1b1919;
}

.switch input:checked~label::after {
    translate: 30px 0;
    background: #389715;
}

.int {
    margin: 5px;
    padding: 10px;
    display: flex;
    border-radius: 9px;
}

.int1 {
    margin: 5px;
    padding: 10px;
    display: flex;
    border-radius: 9px;
}

.int a {
    height: 29px;
    width: 99px;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: rgb(0, 151, 178);
    color: #fff;
    font-weight: 600;
}

.int p {
    margin-left: 18px;
    font-size: 16px;
    color: black;
    margin-top: 5px;
    font-weight: 500;
}

.int .date {
    margin-left: 140px;
    margin-top: 5px;
    font-size: 12px;
}

.int .date1 {
    margin-left: 170px;
    margin-top: 5px;
    font-size: 12px;
}

.int .date1 em {
    font-style: normal;
    margin-left: 6px;

}

.int .date em {
    margin-left: 6px;
    font-style: normal;
}

.lst-p {
    margin-left: 15px;
    margin-bottom: 0px;
    font-size: 15px;
    padding-bottom: 10px;
}

.list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.list {
    border: 0.5px solid rgb(189, 183, 183);
    float: right;
    margin-left: 56px;
    width: 80%;
    border-radius: 10px;
    padding: 15px;
    margin-top: 18px;
}

.cntl {
    margin-left: 20px;
}

.jh {
    padding: 0;
    margin: 0;
}

.jh li {
    list-style: none;
    margin-bottom: 14px;
    margin-left: 12px;
    font-size: 14px;
}

.rowls {
    border: 1px solid black;
}

.add-action .form-control {
    margin-left: 20px;
    width: 70%;
    background-color: rgb(243 244 247);
    font-weight: 500;
    color: #000;
}

.bottum {
    margin-top: 3.5rem;
}

.container-par {
    padding: 10px;
}

/* ==================seventh-page=============================== */
.left-seven {
    padding: 10px;
}

.left-seven input {
    width: 100%;
    border-radius: 9px;
    border: none;
    background-color: rgb(244, 246, 252)
}

.left-seven .body {
    width: 100%;
    height: 210px;
}

.left-seven button {
    height: 36px;
    width: 170px;
    border-radius: 8px;
    font-weight: 500;
    color: #fff;
    background-color: rgb(39, 85, 176);
    border: none;
    text-align: center;
}

.div {
    padding: 5px;
    display: inline-block;
    padding-top: 16px
}


.div2 {
    padding: 5px;
    display: inline-block;
    padding-top: 16px
}

.body {
    padding: 5px;
    display: inline-block;
    padding-top: 16px
}

.div2 button img {
    height: 15px;
    width: 15px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.left-seven button a {
    color: #fff;
    text-align: center;
    margin-top: 2px;
}

.fa-solid {
    font-size: 15px;
    color: #000;
    margin-left: 10px;
}

.btm-btn button {
    height: 36px;
    border-radius: 21px;
    margin: 4px;
    float: right;
    color: #fff;
    background-color: rgb(39, 85, 176);
    border: none;
    width: 95px;
}

.left-seven h4 {
    color: #000;
    padding-top: 5px;
}

.btm-btn button a {
    color: #fff;
}

.right-seven img {
    height: 27rem;
    width: 100%;
    border-radius: 13px;
}

.img-bg {
    position: relative;
}

.text-on {
    position: absolute;
    top: 85px;
    left: 59px;
    padding: 18px;
    height: 17rem;
    height: 15rem;
    width: 85%;
    background-color: rgb(253, 255, 210);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    color: #000;
}

.text-on p {
    padding: 10px;
    font-size: 13px;
}

.right-seven {
    padding: 10px;
}

.right-seven h4 {
    color: #000;

}

.body {
    position: relative;
}

.body-box {
    position: absolute;
    width: 100%;
    height: 180px;
    border-radius: 9px;
    background-color: rgb(244, 246, 252)
}

.body-box p {
    padding: 10px;
    color: #000;
}

.div4 {
    padding-top: 35px;
}

/*===============================BANNER============================================================*/
.left-menu h4 {
    color: #000;
    margin-top: 8px;
}

.right-menu button {
    height: 40px;
    width: 120px;
    border-radius: 9px;
    font-size: 14px;
    background-color: #5b73e8;

    margin-bottom: 10px;
    border: none;
    margin-right: 21px;
}

.right-menu span {
    margin-right: 5px;
}

.right-menu button a {
    list-style: none;
    text-decoration: none;
    color: rgb(249, 246, 246);
    margin-left: -13px;
}

.link {
    margin-top: 37px;
    color: #000;
    font-size: inherit;
    font-weight: 300;
}

.number {
    margin-top: 38px;
    color: #000;
    font-size: inherit;
    font-weight: 300;
}

.img img {
    height: 95px;
    /* width: 203px; */
    border-radius: 7px;
    margin: 8px 0px;
    object-fit: cover;
}

.tab-mang p {
    color: #323030;
}

/* ======================package================================== */
.top-head {
    margin-bottom: 16px;
}

.top-head .right {}

.search {
    position: relative;
    color: #aaa;
    font-size: 16px;
}

.mid {
    margin-left: 34rem;
}

.search {
    display: inline-block;
}

.search input {
    width: 250px;
    height: 32px;

    background: #fcfcfc;
    border: 1px solid #aaa;
    border-radius: 5px;
    box-shadow: 0 0 3px #ccc, 0 10px 15px #ebebeb inset;
}

.search input {
    text-indent: 32px;
}

.search .fa-search {
    position: absolute;
    top: 10px;
    left: 10px;
}

.search .fa-search {
    left: auto;
    right: 10px;
}

.left ul li {
    list-style: none;
    font-size: 17px;
    color: gray;
    text-decoration: none;
}

.left ul li a {
    color: gray;
}

.right-menu span {
    height: 40px;
    width: 120px;
}

.right button {
    height: 40px;
    width: 140px;
    border-radius: 9px;
    font-size: 14px;
    background-color: #7239ea;
    margin-right: 14px;
}

.right button a {
    color: white;
    list-style: none;
}

/* */
.link a {
    font-size: 16px;
}

.toggle-btmp {
    margin-top: 18px;
    font-size: inherit;
    margin-left: 13px;
}

.numberp {
    margin-top: 31px;
    color: #000;
    font-size: inherit;
    font-weight: 300;
    font-size: 16px;
}

.linkdc {
    margin-top: 37px;
    color: #4d4949;
    font-size: 15px;
    margin-left: 10px;
}

.linkp {
    margin-top: 37px;
    color: #4d4949;
    font-size: 14px;


}

/* ========================container-to-pack================================== */

.left h5 {
    color: #000;
    margin-left: 18px;
    margin-top: 15px;
    display: contents;
}

.right-pack button {
    height: 40px;
    width: 160px;
    border-radius: 9px;
    font-size: 13px;
    background-color: #7239ea;
}

.right-pack button a {
    color: white;
}

.head {
    margin-top: 10px;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 10px;
    padding-left: 10px;
}

.icoon-pack {
    margin-top: 35px;
    display: flex;
}

.number-pack {
    margin-top: 38px;
    font-size: 14px;
}

.link-pack {
    margin-top: 37px;
    font-size: 15px;
    font-weight: 400;
    color: black;
}

/* ==============================Q-Q================================ */

.right-Q-Q button {
    height: 40px;
    width: 145px;
    border-radius: 9px;
    font-size: 13px;
    background-color: #009ef7;
    margin-left: 66rem;
    border: none;
}

.right-Q-Q button a {
    color: #fcfbfb;
    margin-right: 10px
}

.right-Q-Q .fa-solid {
    margin-right: 10px;
}

/*================ banner button ==========================*/
/*Style 3*/
.switch {
    display: inline-block;
    height: 28px;
    position: relative;
    width: 50px;
}

.switch input {
    display: none;
}

.slider {
    background-color: #151515;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 20px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 20px;
}

input:checked+.slider {
    background-color: #009ef7;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.card-bodyb {
    margin-top: 30px;
}

.icoon {
    margin-top: 40px;
}

/* ==================selection================================= */
select {
    padding: 1rem;
    border: 1px solid var(--neutral-400);
    font-size: 1rem;
    color: darkslategray;
    margin-bottom: 10px;
}

.showing {
    padding: 1rem;
    min-inline-size: 10rem;
    font-size: 14px;
    margin-left: 16px;
    margin-top: 17px;
    color: gray;
}

.prev::before {
    content: " ";
    border-left: 2px solid #7c7373;
    border-bottom: 2px solid #7c7373;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    cursor: pointer;
    display: block;
    margin-right: 22px;
    margin-top: 10px;

}

.next::before {
    content: " ";
    border-right: 2px solid #6c6767;
    border-top: 2px solid #666262;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    cursor: pointer;
    display: block;
    margin-left: 22px;
    margin-top: 10px;

}

.sliding-pages ul {
    display: flex;
}

.sliding-pages ul li {
    list-style: none;
}

.sliding-pages {
    float: right;
    margin-left: 758px;
    margin-top: 30px;
}

.one {
    height: 30px;
    width: 30px;
    background-color: rgb(246, 242, 242);
    border-radius: 4px;
    margin-bottom: 25px;
    background-color: #009ef7;
}

.one p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    line-height: 31px;
}

.link-QQ {
    margin-top: 29px;
    font-size: 15px;
    font-weight: 400;

}

.link-QQ a {
    color: #009ef7;
    ;
}

.container-QQ {
    padding-left: 25px;
}

.title {
    width: 80%;
    color: gray;
    font-size: 14px;
}

/* -=================================QL==================================== */






/* ======================================================== */



.pagingno ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagingno ul li {
    list-style: none;
    margin: 8px;
    margin-bottom: 8px;
}

.pagingno ul li {
    height: 30px;
    width: 30px;
    border-radius: 4px;
    color: rgb(88, 84, 84);
    justify-content: center;
    line-height: 30px;
    text-align: center;
}

.pagingno ul li.active {
    background: #2456b0;
    color: white;
}

.form Filter_input {
    display: flex;
}

.form Filter_input h3 {
    margin-right: 60px;
}

.form Filter_input button {
    margin-right: 70px;
}

.landings button {
    margin-left: 66rem;
}

.query-table td p {
    height: 20px;
    width: 47px;
    background-color: #50cd89;
    color: white;
    border-radius: 7px;
    text-align: center;
    line-height: 20px;
}

.query-table td h4 {
    font-size: 14px;
}