/* poppins */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* roboto */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wdth,wght@75..100,100..900&display=swap");

/* rock salt  */

@import url("https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap");

/* Montserrat */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* outfit  */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* fontowsome  */

@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef);
:root {
    --primery: #3687F2;
    --secondary: #1E1E1E;
    --gray: #727272;
    --skyBlue: #F3F8FE;
    --black: #000000;
    --offWhite: #f9f7ff;
    --green: #166534;
    --white: #ffffff;
    --transition: 0.3s all ease;
    --border: 1px solid #C5C5C5;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    padding: 0;
    margin: 0;
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
}

h1,
h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--secondary);
}

h2 {
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary);
}

p {
    color: var(--gray);
}


/* comp classes  */

.site-btn {
    background-color: var(--primery);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 115px;
    font-size: 16px;
    border-radius: 32px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    border: 1px solid var(--primery);
    color: var(--white);
    overflow: hidden;
    transition: 0.3s all ease;
    padding: 11.5px 30px;
    transition: var(--transition);
}

.site-btn:hover {
    color: var(--primery);
}

.site-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 0;
    margin: auto;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
    transition: var(--transition);
}

.site-btn:hover::before {
    width: 100%;
}

.btn-2 {
    background-color: transparent;
    color: var(--primery);
    border-color: var(--primery);
}

.btn-2:hover {
    color: var(--white);
}

.btn-2::before {
    background-color: var(--primery);
}

.btn-4 {
    background-color: var(--white);
    color: var(--primery);
}

.btn-4:hover {
    color: var(--white);
    border-color: var(--white);
}

.btn-4::before {
    background-color: var(--primery);
}

.btn-5 {
    border-color: var(--white);
}

.wrapper {
    max-width: 1170px;
    margin: auto;
}

.bg-sblue {
    background-color: #F3F8FE;
}

.buttons {
    gap: 10px;
    display: flex;
}

.padding-100 {
    padding: 100px 0;
}

.margin-50 {
    margin: 50px 0;
}

.static-card {
    border: var(--border);
    padding: 24px;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hover-card::before {
    content: "";
    background-color: var(--primery);
    width: 100%;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 0;
    transition: 0.3s all ease;
}

.hover-card:hover::before {
    height: 100%;
}

.hover-card :is(p,
h3,
h4) {
    transition: 0.3s all ease;
}

.hover-card:hover :is(p,
h3,
h4) {
    color: var(--white);
    transition: 0.3s all ease;
}

.static-card h3 {
    margin: 25px 0 8px;
}

.avtar-img {
    border-radius: 50%;
    width: 56px;
    aspect-ratio: 1;
    display: inline-flex;
    background-color: #D7E8FF;
    justify-content: center;
    align-items: center;
}

.avtar-img img {
    max-width: 32px;
}

.title p {
    margin-top: 5px;
}

.chain {
    position: relative;
    z-index: 1;
}

.chain::before {
    content: "";
    background-image: url(/assets/images/chain.png);
    background-size: 100% 100%;
    width: 74%;
    height: 1px;
    top: 37px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.static-card.style-2 {
    text-align: center;
    border: unset;
    padding: 0;
}

.hover-card.style-2:hover .avtar-img {
    background-color: var(--white);
}

.hover-card.style-2:hover .avtar-img img {
    filter: drop-shadow(0px 0px 3px #3687F2);
}

.static-card.style-2 .avtar-img {
    background-color: var(--primery);
    width: 70px;
    transition: 0.3s all ease;
}

.static-card.style-2 .avtar-img img {
    max-width: 32px;
    transition: 0.3s all ease;
}

.static-card.style-2 p {
    max-width: 343px;
    margin: auto;
    font-size: 20px;
}

.bg-primery {
    background-color: var(--primery);
}

.bg-primery-before {
    position: relative;
    z-index: 1;
}

.bg-primery-before::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 35%);
    background-color: var(--primery);
}

.large-btn {
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: var(--white);
    width: auto;
}

.img-white-bg {
    padding: 12px 12px 15px;
    border-radius: 23px;
    background-color: var(--white);
    box-shadow: 0px 5.76px 48.92px 0px rgba(0, 0, 0, 0.12);
    max-width: 220px;
    margin-left: auto;
}

.choices {
    display: flex;
    gap: 20px;
}

.choices button {
    width: 100%;
    border-radius: 12px;
    padding: 22px 10px;
    border: unset;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.green {
    color: #166534;
    background-color: #BDFCD3;
}

.red {
    background-color: #FED2D2;
    color: #991B1B;
}

.gray {
    background-color: #DEDEDE;
    color: #1E1E1E;
}

.choices button i {
    font-size: 35px;
}

.hov-top {
    transition: var(--transition);
}

.hov-top:hover {
    transform: translateY(-4px);
}

.progress-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 16px;
}

.persentage:not(:last-child) {
    margin-bottom: 20px;
}

.persentage span,
.persentage p {
    color: #727272;
    font-size: 20px;
}

.persentage .progress {
    height: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.persentage .progress span {
    display: block;
}

.persentage .progress span.gray {
    background-color: var(--secondary);
}

.persentage .progress span.green {
    background-color: #166534;
}

.persentage .progress span.red {
    background-color: #991B1B;
}

.flat-input {
    width: 20px;
    padding: 0;
    margin-left: 3px;
    outline: unset !important;
    height: unset;
    border: unset;
    color: var(--gray);
    font-size: 20px;
    background-color: transparent;
}

.total p {
    font-size: 20px;
}

.yellow {
    color: #FACC15;
}

.static-card.reviews {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
}

.static-card.reviews .text-card p {
    font-size: 20px;
    margin: 10px 0 15px;
}

.user-profile {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-profile img {
    width: 70px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.user-profile h4 {
    color: var(--secondary);
    font-size: 20px;
}

.user-profile p {
    font-size: 18px;
}

.stars i {
    font-size: 18px;
}

.m-bottom {
    margin-bottom: 40px;
}

.bottom-content .text p {
    margin-top: 10px;
    font-size: 16px;
}

.inner-buttns button {
    min-width: 230px;
}

.white-text :is(h1,
p,
h2,
h3,
span) {
    color: var(--white);
}

.static-form {
    box-shadow: 0px 4.17px 35.42px 0px rgba(0, 0, 0, 0.12);
    padding: 24px;
    background-color: var(--white);
    border-radius: 16px;
}

.check-field .form-check-input {
    border-radius: 3px;
}

.check-field .form-check-input:checked {
    background-color: var(--primery);
    border-color: var(--primery);
}

.check-field label {
    font-size: 14px;
    color: var(--secondary);
}

.static-fields label {
    font-weight: 500;
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 8px;
}

.static-fields :is(input,
textarea) {
    border-color: #C7C7C7;
    padding: 10px 20px;
}

.round-8 {
    border-radius: 8px;
}

.static-fields :is(input,
textarea)::placeholder {
    color: #C7C7C7;
}


/* header  */

header {
    padding: 25px 0;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
}

.dropdown-menu.show {
    z-index: 1051;
}

.header-shadow {
    box-shadow: 0px 0px 10px 0px var(--primery);
    background-color: var(--white);
}

header .navbar-brand span {
    background-image: url(../images/logo-white.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-width: 270px;
    height: 40px;
    display: inline-flex;
}

header.header-shadow .navbar-brand span {
    background-image: url(../images/logo.svg);
}

.navbar-nav {
    gap: 22px;
}

header .nav-item .nav-link {
    color: var(--lightBlack);
    font-size: 14px;
}

header .navbar-toggler {
    padding: 0;
    margin: 0;
    border: unset;
    box-shadow: unset !important;
}

header .navbar-toggler .navbar-toggler-icon {
    background-image: url(/assets/images/hamburger.svg);
    transition: 0.08s all;
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url(/assets/images/closs-icon.svg);
}

header.header-shadow .navbar-toggler .navbar-toggler-icon {
    background-image: url(/assets/images/hamburger2.svg);
    transition: 0.08s all;
}

header.header-shadow .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url(/assets/images/closs-icon2.svg);
}

header .btn-5:hover {
    border-color: #0d6efd;
}


/* banner  */

.banner {
    padding: 150px 0 100px;
}

.banner .text p {
    margin: 20px 0 45px;
}


/* qr section  */

.qr-section {
    padding-bottom: 60px;
}

.qr-section .text h2 {
    color: var(--white);
}

.qr-section .text p {
    color: var(--white);
    margin: 12px 0 45px;
    font-weight: 300;
}


/* form section  */

.mail-box.v2 {
    position: relative;
    max-width: 500px;
}

.mail-box.v2 label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primery);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    margin: auto;
}

.mail-box.v2 label img {
    max-width: 21px;
}

.cust-input {
    border-radius: 40px;
    height: 50px;
}

.pl-54 {
    padding-left: 54px;
}

.cust-input::placeholder {
    color: var(--gray);
}


/* footer  */

footer .text .logo img {
    max-width: 260px;
}

footer .text :is(p,
span) {
    font-size: 18px;
}

footer .text-3 a span {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 15px;
}

footer .text a span i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--white);
    color: #0d6efd;
    font-size: 16px;
}

footer .text p {
    margin: 20px 0;
}

footer .text-1 {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

footer .text-1 h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

footer .text-1 a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    transition: var(--transition);
    font-size: 20px;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.copy-right {
    margin-top: 32px;
    padding-top: 30px;
    border-top: 1px solid #8EBFFF;
}

footer {
    padding: 100px 0 40px;
}

footer a {
    color: var(--white);
}

.btn-gray {
    border-radius: 5px;
    border-color: #C3C3C3;
    background-color: transparent;
    color: #C3C3C3;
    min-width: unset;
    padding: 15px !important;
}

.devider {
    margin: 0;
}

.btn-gray:hover {
    color: var(--white);
}

.btn-gray::before {
    background-color: #C3C3C3;
}


/* dashboard screens  */

main.dashboard {
    min-height: 100vh;
}

.dashboard {
    background-color: #F9FBFF;
    padding-bottom: 20px;
}

.dashboard .site-btn {
    gap: 8px;
}

.dashboard .site-btn i {
    font-size: 18px;
}

.dashboard .navbar-brand {
    max-width: 60px;
}

.dashboard .navbar-toggler-icon {
    background-image: url(../images/hamburger2.svg) !important;
}

.dashboard .navbar {
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    padding: 0 16px;
    background-color: var(--white);
}

.dashboard .header-shadow .navbar {
    box-shadow: unset;
}

.dashboard .header-shadow {
    padding: 0;
}

.dashboard .navbar-nav {
    gap: 20px;
}

.dashboard .navbar-nav>li>a {
    color: #2F2F2F;
    font-size: 15px;
    padding: 22px 0 !important;
    border-bottom: 4px solid transparent;
}

.dashboard .navbar-nav li a.active {
    border-color: var(--primery);
    color: var(--primery);
}

.user-profile-nav img {
    max-width: 40px;
}

.dashboard .nav-link {
    display: flex;
    gap: 4px;
    align-items: center;
}

.dashboard .dropdown-toggle-cust {
    position: relative;
}

.dashboard .dropdown-toggle-cust::after {
    content: url(../images/chavron-down-icon.svg);
    transition: var(--transition);
}

.dashboard .dropdown-toggle-cust.show::after {
    transform: rotate(180deg);
}

.user-profile-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-profile-nav h3 {
    font-size: 15px;
    font-weight: 600;
}

.user-profile-nav p {
    font-size: 12px;
    color: #2F2F2F;
}

.dashboard .user .nav-link {
    gap: 20px;
}

.dashboard .mob-content {
    display: flex;
    gap: 20px;
}

.dashboard .mob-content img {
    max-width: 40px;
}

.dashboard .mob-content .user .nav-link {
    gap: 10px;
}

.main-content {
    padding-top: 125px;
}

.cust-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bg-style-white {
    background-color: var(--white);
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

.icon-h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-h3 span {
    width: 32px;
    aspect-ratio: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #E0EDFF;
    font-size: 16px;
}

.icon-h3 i {
    color: var(--primery);
}

.icon-h3.small i {
    font-size: 17px;
}

.orderd-list {
    background-color: #E0EDFF;
    padding: 12px 20px;
    border-radius: 5px;
    margin: 20px 0 50px;
}

.orderd-list ul {
    padding-left: 12px;
}

.orderd-list ul li {
    color: var(--gray);
    font-size: 15px;
}

.orderd-list ul li::marker {
    color: var(--primery);
    font-size: 19px;
    line-height: 1.4;
}

.btn-3 {
    background-color: #E0EDFF;
    border-color: transparent;
    color: var(--primery);
}

.btn-3:hover {
    border-color: var(--primery);
}

.btn-6 {
    background-color: #F3F4F6;
    color: #333333;
    border-color: transparent;
}

.btn-6:hover {
    border-color: var(--primery);
}

.last-btns .site-btn:first-child {
    margin-bottom: 12px;
}

.check-list ul {
    list-style-type: none;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-list ul li {
    position: relative;
    font-size: 18px;
    color: var(--gray);
}

.check-list ul li::before {
    background-image: url(../images/check-icon.svg);
    background-size: 100% 100%;
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -30px;
}

.two-col-section .text p {
    font-size: 20px;
    margin: 25px 0;
}

.editer-text h2 {
    font-size: 25px;
    color: #BABABA;
    font-weight: 500;
}

.editer-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.avtar {
    border-radius: 28px;
    background-color: #E0EDFF;
    color: var(--primery);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    font-size: 13px;
    gap: 5px;
}

.dot {
    display: inline-flex;
    width: 8px;
    height: 8px;
    background-color: var(--primery);
    border-radius: 50%;
}

.editer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background-color: #ECF4FE;
    color: var(--primery);
    margin-top: 25px;
    border-radius: 6px;
    border: unset;
    width: 100%;
    outline: unset !important;
}

.drag-content .text span {
    font-size: 14px;
}

.ql-font-roboto {
    font-family: 'Roboto', sans-serif;
}

.ql-font-poppins {
    font-family: 'Poppins', sans-serif;
}


/* li {
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px;
    margin-bottom: 12px;
    text-align: left;
    cursor: grab;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
} */

#main-content {
    flex: 1;
    overflow-y: auto;
}

.ql-container {
    height: 100%;
    min-height: 300px;
}

.ql-snow .ql-editor img {
    max-width: 70px;
}

#imageInput {
    display: none;
}

#signatureModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1070;
}

#signatureModalContent {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

canvas {
    border: 1px solid #ccc;
}

.modal-buttons {
    margin-top: 10px;
    text-align: right;
}

.modal-buttons {
    display: flex;
    gap: 10px;
}

.modal-buttons button {
    padding: 7px 15px;
    min-width: unset;
}

.ck-editor__main .ck-editor__editable {
    min-height: 300px;
}

@media (max-width:1400px) {
    .dashboard h3 {
        font-size: 18px;
    }
    .dashboard .site-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    .orderd-list ul li {
        font-size: 14px;
    }
    .orderd-list {
        padding: 12px 18px;
    }
}


/* @mediaQuery  */

@media (max-width:1199px) {
    h1,
    h2 {
        font-size: 40px;
    }
    .static-card {
        padding: 18px;
    }
    .static-card h3 {
        font-size: 20px;
    }
    .static-card p {
        font-size: 15px;
    }
    .static-card.reviews .text-card p {
        font-size: 16px;
    }
    .user-profile img {
        width: 60px;
    }
    .chain::before {
        display: none;
    }
    .qr-section .text p br {
        display: none;
    }
    footer .text :is(p,
    span) {
        font-size: 14px;
    }
    /* dashboard  */
    .dashboard .navbar {
        padding: 15px;
    }
    .dashboard .navbar-nav {
        gap: 0;
        margin-top: 20px !important;
    }
    .dashboard .navbar-nav>li>a {
        padding: 10px !important;
        display: inline-flex;
    }
}

@media (max-width: 991px) {
    h1,
    h2 {
        font-size: 30px !important;
    }
    .banner h1 {
        font-size: 28px !important;
    }
    .title p br {
        display: none;
    }
    p {
        font-size: 14px;
    }
    .site-btn {
        padding: 10px 15px;
    }
    header {
        padding: 18px 0;
    }
    .static-card.reviews .text-card p {
        font-size: 14px;
    }
    .bottom-content .text p {
        font-size: 14px;
    }
    footer .text :is(p,
    span) {
        font-size: 14px;
    }
    footer p br {
        display: none;
    }
    .two-col-section .text p,
    .check-list ul li {
        font-size: 14px;
    }
    .check-list ul li::before {
        width: 20px;
        height: 20px;
    }
    .cust-input {
        height: 40px;
    }
    .static-fields label {
        font-size: 14px;
    }
    .static-form {
        padding: 16px;
    }
    footer .text .logo img {
        max-width: 200px;
    }
    footer .text-3 a span {
        margin-bottom: 6px;
        gap: 5px;
    }
    footer .text a span i {
        width: 25px;
        font-size: 14px;
    }
    .social-links {
        gap: 10px;
    }
    /* dashboard  */
    .dashboard header.header-shadow {
        padding: 0;
    }
    .last-btns {
        display: flex;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    p br {
        display: none;
    }
    h1,
    h2 {
        font-size: 25px !important;
    }
    .banner {
        padding: 100px 0 50px;
    }
    .static-card.style-2 p {
        font-size: 16px;
    }
    .qr-section {
        padding: 50px 0;
    }
    .m-bottom {
        margin: 0;
    }
    .navbar-collapse {
        padding: 10px 16px;
        background-color: var(--white);
        position: absolute;
        z-index: 1050;
        top: 75px;
        width: 100%;
        left: 0;
    }
    .navbar {
        position: unset;
    }
    .site-btn {
        padding: 9px 15px;
        font-size: 14px;
    }
    .banner .text p {
        margin: 10px 0 20px;
    }
    .static-card h3 {
        margin: 14px 0 6px;
    }
    .static-card.style-2 .avtar-img {
        width: 60px;
    }
    .static-card.style-2 .avtar-img img {
        max-width: 30px;
    }
    .img-white-bg {
        margin: auto;
    }
    .qr-section .text p {
        margin: 12px 0 20px;
    }
    .vot-section h2 {
        font-size: 25px !important;
    }
    .choices {
        flex-direction: column;
    }
    .choices button {
        padding: 10px;
    }
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .bg-primery-before::before {
        height: 100%;
    }
    footer {
        padding: 50px 0 20px;
    }
    footer .text-1 {
        gap: 7px;
    }
    footer .text-1 h3 {
        margin-bottom: 5px;
    }
    footer .text :is(p,
    span) {
        font-size: 16px;
    }
    .padding-100 {
        padding: 50px 0;
    }
    .navbar-collapse .btns {
        flex-direction: column;
        align-items: start;
    }
    .large-btn {
        padding: 12px 18px;
    }
    .choices button i {
        font-size: 22px;
    }
    .choices button,
    .total p {
        font-size: 16px;
    }
    .persentage span {
        font-size: 16px;
    }
    header .navbar-brand span {
        min-width: 200px;
    }
    .navbar-brand {
        display: flex;
    }
    /* dashboard */
    .dashboard .navbar-brand {
        max-width: 35px;
    }
    .main-content {
        padding-top: 100px;
    }
    .cust-title {
        flex-direction: column;
        align-items: start !important;
    }
    .dashboard .mob-content img {
        max-width: 30px;
    }
    .user-profile-nav h3 {
        font-size: 14px;
    }
    .user-profile-nav p {
        font-size: 11px;
    }
    .dashboard .mob-content {
        display: flex;
        gap: 10px;
    }
    .dashboard .navbar {
        padding: 10px 12px;
    }
    .dashboard .navbar-collapse {
        position: static;
        padding: 0;
    }
    .dashboard .navbar-toggler-icon {
        width: 25px;
        height: 25px;
    }
    .dashboard .navbar-nav>li>a {
        padding: 5px !important;
        border-width: 3px;
    }
    .last-btns {
        flex-direction: column;
        gap: 0;
    }
    .user-profile-nav :is(h3,
    p,
    ),
    .user .dropdown-toggle-cust::after {
        display: none;
    }
    .bg-style-white {
        padding: 12px;
    }
    .buttons {
        gap: 5px;
    }
    .btn-gray {
        padding: 10px !important;
    }
    .ql-container {
        min-height: 200px;
    }
}