/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.39,
* Autoprefixer: v10.4.19
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.39,
* Autoprefixer: v10.4.19
* Browsers: last 4 version
*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: Figtree, sans-serif;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    word-wrap: break-word;
    text-overflow: ellipsis;
}

:root {
    /* --main-color: rgb(22, 168, 22); */
    /* --main-color: rgba(26,46,68,255); */
    --main-color: #2675db;
    --profile-avater: #6e8675;
}
.caption-input {
    text-wrap: nowrap;
    font-size: 14px;
    color: #666 !important;
    padding-bottom: 10px;
}
body {
    background: #ddd !important;
}

#mj-dashboard {
    background: #ddd;
}

.mj-header {
    width: 100%;
}

.mj-header-main {
    background: white;
    /* box-shadow: 0 1px 10px 0 #ddd; */
    border-bottom: solid 1px #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 20;
}

.mj-head-divider {
    width: 84%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.text-pending {
    color: var(--main-color);
}
.mj-head-left {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px;
}

.mj-head-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: 1.4rem;
}

.mj-head-name i {
    color: var(--main-color);
}

.mj-head-search {
    position: relative;
}

.mj-head-search input {
    width: 250px;
    padding: 10px 15px !important;
    border: solid 1px #ccc;
    border-radius: 30px;
    outline: none;
}

.mj-head-search input:focus {
    border: solid 0.1px var(--main-color);
}

.mj-head-search i {
    position: absolute;
    right: 25px;
    top: 30%;
    color: var(--main-color);
}

.mj-head-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: 16px;
    -ms-flex-align: 16px;
    align-items: 16px;
    gap: 2rem;
}

.mj-head-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px;
}

.mj-head-links li {
    list-style: none;
    color: #444;
}

.mj-head-links li a {
    text-decoration: none;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    color: #444;
}

.mj-head-links li a:hover {
    color: var(--main-color);
}

.mj-head-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mj-header-dropdown {
    position: absolute;
    border: solid 1px #f4f4f4;
    background: white;
    top: 100%;
    min-width: 150px;
    padding: 10px 0;
    -webkit-animation: 0.3s dropdown both;
    animation: 0.3s dropdown both;
    display: none;
}

.mj-table-header {
    padding-bottom: 1rem;
    font-size: 1.2rem;
}

.mj-table-header h4 {
    font-weight: 400;
    color: #333;
}

@-webkit-keyframes dropdown {
    from {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes dropdown {
    from {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.mj-header-dropdown li {
    list-style: none;
    padding: 3px 20px;
}

.mj-header-dropdown li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.notification {
    position: fixed;
    width: 20%;
    background: white;
    top: 68px;
    right: 30px;
    height: 0vh;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow-y: scroll;
}

.notification::-webkit-scrollbar {
    display: none;
}

.mj-notification {
    position: relative;
    cursor: pointer;
}

.mj-notification span {
    position: absolute;
    background: var(--main-color);
    top: -10px;
    color: white;
    padding: 0 5px;
    font-size: 12px;
    border-radius: 50%;
    left: 5px;
}

.mj-notification i {
    font-size: 20px;
    color: #444;
}

.mj-user-btn {
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--main-color);
    font-size: 14px;
    padding: 5px 14px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.mj-header-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.mj-task-tab-link label {
    font-size: 13px;
    text-wrap: nowrap;
}

.active {
    /* color: var(--main-color) !important; */
    background: #ddd;
}

/* mj-create-task-body */
.mj-create-task-header {
    width: 100%;
    border-bottom: solid 1px #ddd;
    padding: 15px;
}

.mj-border {
    border-bottom: solid 1px #f4f4f4;
}

.mj-padding {
    padding: 25px !important;
}

.mj-form-grouping {
    margin-bottom: 25px;
}

.mt-top-top {
    margin-top: -1px !important;
}

.mj-form-grouping p {
    font-size: 12px;
    margin-top: -12px !important;
    color: #333;
}

.mj-form-footer {
    padding: 10px 25px;
    width: 100%;
    text-align: right;
}

.mj-form-footer button {
    padding: 8px 20px;
    border: none;
    border: solid 1px var(--main-color);
    background: var(--main-color);
    color: white;
    border-radius: 3px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

.mj-form-footer button:hover {
    background: white;
    color: #333;
}

.mj-form-total {
    margin: -12px 0;
}

.mj-form-total h4 {
    font-size: 20px;
}

.mj-form-link {
    position: absolute;
    top: 20%;
    right: 0px;
}

.mj-form-link a {
    background: var(--main-color);
    color: white !important;
    border-radius: 5px;
    padding: 12px 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.mj-input-pad {
    padding: 10px 15px !important;
    font-size: 12px;
}

.mj-form-rules {
    width: 100%;
    margin: auto;
}

.mj-form-rule-list {
    margin: 12px 0;
}

.mj-form-rule-list h4 {
    font-size: 11px;
    color: #333;
}

.mj-form-rule-list h4 span {
    font-weight: lighter;
}

.mj-form-headers {
    padding: 15px;
    border-bottom: solid 1px #f4f4f4;
}

.content {
    padding: 13px;
    background: rgba(255, 0, 0, 0.238);
    border-radius: 6px;
    font-size: 12px;
}

.mj-grid-upload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mj-col-upload-title h5 {
    font-size: 12px;
}

.mj-upload-block {
    background: #ddd;
    width: 100px;
    height: 75px;
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 6;
}

.mj-upload-block .clicker {
    margin: auto;
}

.clicker {
    text-align: center;
}

.clicker i {
    margin-bottom: 15px;
}

.clicker p {
    font-size: 10px;
}

.mj-upload-img {
    width: 100px;
    height: 75px;
    background: #222;
    border-radius: 5px;
    margin-top: 5px;
    position: relative;
    display: none;
    z-index: 10;
}

.mj-upload-img img {
    width: 100px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.mj-upload-img .mj-close {
    position: absolute;
    background: red;
    top: -8px;
    right: -3px;
    border-radius: 50%;
    padding: 0px 6px;
    padding-top: 4px;
    color: white;
    font-size: 11px;
    cursor: pointer;
}

/* .mj-login-bg */
.mj-login-bg {
    width: 100%;
    min-height: 100vh;
    /* background-image: url("./photos/3d-rendering-bunch-square-logos-main-social-media-apps_284880-216 (1).png");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat; */
    background: #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mj-form {
    width: 30%;
    /* min-height: 400px; */
    background: white;
    padding: 15px;
    margin: auto;
    border-radius: 10px;
}

.mj-form-header {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.mj-form-header h4 {
    font-size: 23px;
}

.mj-form-header p {
    font-size: 14px;
}

.vtu-form-padding-0 {
    padding: 0px !important;
}

.mj-form-body {
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
}

.form-padding-0 {
    padding: 0px !important;
}

.mj-form-body .form-group {
    margin-bottom: 16px;
    position: relative;
}

.mj-form-body .form-group input {
    width: 100%;
    padding: 13px;
    outline: none;
    border-radius: 4px;
    border: solid 1px #ddd;
    color: #444;
}

.mj-form-body .form-group select {
    width: 100%;
    padding: 13px;
    outline: none;
    border-radius: 4px;
    border: solid 1px #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #777;
    background: white;
}

.mj-form-body .form-group textarea {
    width: 100%;
    padding: 13px;
    outline: none;
    border-radius: 4px;
    border: solid 1px #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #777;
    background: white;
    resize: none;
}

.mj-form-body .form-group label {
    position: absolute;
    font-size: 14px;
    color: #777;
    padding: 0 5px;
    left: 10px;
    top: 30%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /* to make a text not pointed  */
    pointer-events: none;
}

.mj-form-body .form-group input:focus + label {
    top: -20%;
    background: white;
    font-size: 12px;
}

.font-weight {
    font-weight: normal !important;
}

/* if placeholder not empty label is up  */
.mj-form-body .form-group input:not(:-moz-placeholder-shown) + label {
    top: -20%;
    background: white;
}

.mj-form-body .form-group input:not(:-ms-input-placeholder) + label {
    top: -20%;
    background: white;
}

.mj-form-body .form-group input:not(:placeholder-shown) + label {
    top: -20%;
    background: white;
}

.mj-form-body .form-group select:focus + label {
    top: -20%;
    background: white;
    font-size: 12px;
}

.font-weight {
    font-weight: normal !important;
}

.mj-form-body .form-group select:not(:-moz-placeholder-shown) + label {
    top: -20%;
    background: white;
}

.mj-form-body .form-group select:not(:-ms-input-placeholder) + label {
    top: -20%;
    background: white;
}

.mj-form-body .form-group select:not(:placeholder-shown) + label {
    top: -20%;
    background: white;
}

.mb-5 {
    margin-bottom: 10px !important;
}

.mj-form-body .form-group a {
    text-decoration: none;
    font-size: 13px;
    color: #333;
}

.mj-form-body .form-group button {
    width: 100%;
    padding: 9px 0;
    border: none;
    outline: none;
    font-size: 16px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    background: var(--main-color);
}
.form-btn-buttton {
    padding: 9px;
    border: none;
    outline: none;
    font-size: 16px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    background: var(--main-color);
    margin-left: 10px;
}

.btn-small {
    width: auto;
}

.mj-form-body .form-group input:focus,
.mj-form-body .form-group select:focus,
.mj-form-body .form-group textarea:focus {
    border: solid 1.5px #aaa;
}

.text-center {
    text-align: center;
}

.mj-form-body .form-group p {
    color: #333;
    font-size: 15px;
    padding: 10px 0;
}

.row-line {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gap-20 {
    gap: 20px;
}

.col-icon {
    margin-top: 6px;
}

.col-icon i {
    font-size: 20px;
}

.text-facebook {
    color: rgb(75, 75, 235);
}

.text-twitter {
    color: rgb(75, 195, 235);
}

.text-github {
    color: #555;
}

.text-google {
    color: rgb(236, 93, 93);
}

@media screen and (max-width: 700px) {
    .mj-form {
        width: 90%;
    }
}

.mj-text-or {
    text-align: center;
    color: #333;
    margin: -10px 0;
}

.text-underline {
    text-decoration: underline !important;
}

.m--2 {
    margin-top: -10px;
}

.form-group p {
    font-size: 13px !important;
}

.grid {
    display: -ms-grid;
    display: grid;
}

.grid\:2 {
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px !important;
}

.grid\:3 {
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px !important;
}

.grid\:4 {
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px !important;
}

.grid\:5 {
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px !important;
}

.grid\:6 {
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr)
        15px minmax(0, 1fr);
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px !important;
}

.grid\:7 {
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr)
        15px minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 15px !important;
}

.gap\:20 {
    gap: 15px;
}

.d-none {
    display: none;
}

.card-title {
    padding: 4px 0;
    padding-bottom: 15px;
}

.card-title h4 {
    font-size: 17px;
    font-weight: 400;
}

.checkBox {
    position: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    width: 100% !important;
    margin-bottom: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkBox input {
    padding: 10px;
    accent-color: var(--main-bg-3d);
}

.checkBox span {
    font-size: 14px;
}

.errors-message {
    margin: -12px 0;
    margin-bottom: 8px;
    font-size: 14px;
    color: red;
}

/* mj-menu-icons */
.mj-menu-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mj-menu-icons a {
    text-decoration: none;
    color: #333;
}

.mj-menu-icons a i {
    font-size: 1.3rem;
    margin-right: 10px;
}

.mj-menu-icons a:hover {
    color: var(--main-color);
}

.mj-menu-logout {
    font-size: 13px;
    background: rgb(229, 14, 14);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
}

.mj-menu-logout:hover {
    color: white;
    text-decoration: none !important;
}

.mj-menu-body {
    padding: 15px;
}

.text-left {
    text-align: left !important;
    -webkit-box-pack: left !important;
    -ms-flex-pack: left !important;
    justify-content: left !important;
}

.mj-menu-link {
    padding: 15px !important;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* border-top: solid 1px #f4f4f4; */
    text-decoration: none;
    color: #333;
    text-transform: capitalize;
}

.mj-menu-link:hover {
    background: #efefef;
}

.mj-menu-link-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mj-menu-link-left i {
    margin-right: 10px;
}

.mj-menu-link-left span {
    font-size: 14px;
}

.mj-my-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

.mj-my-profile h5 {
    margin-top: -10px;
}

.mj-notification-blocks {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    cursor: pointer;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.mj-notification-blocks:hover {
    background: #efefef;
}

.mj-notification-blocks img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #efefef;
}

.mj-notification-blocks-content p {
    font-size: 12px;
    margin-bottom: 2px;
}

.mj-notification-blocks-content label {
    font-size: 12px;
    color: var(--main-color);
}

.mj-notification-blocks-content label i {
    font-size: 11px;
    color: var(--main-color);
}

.bg-fffed {
    background: #ddd !important;
    color: #333;
    padding: 4px 11px;
}

/* mj-form-fund-wallet-body */

.mj-form-fund-wallet-body {
    width: 100%;
    margin-top: 10px;
}

.mj-form-fund-wallet-body {
    min-width: 100% !important;
    background: red;
}

.mj-wallet-amount-funded {
    width: 100% !important;
    /* display: flex; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.mj-form-amount input {
    width: 100% !important;
    border: none;
}

.mj-d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 12px;
}

.text-wrap {
    text-wrap: nowrap;
}

.input-full {
    width: 100%;
}
.text-danger {
    color: red;
}

.mj-modal {
    width: 100%;
    height: 100vh;
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(0, 0, 0, 0.3);
}

.mj-modal-dialog {
    width: 400px;
    margin: auto;
    background: white;
    border-radius: 6px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.mj-delete {
    padding: 15px;
    text-align: center;
}

.mj-delete p {
    font-size: 18px;
}

.mj-delete i {
    background-color: #ff5252 !important;
    padding: 20px 24px;
    border-radius: 50%;
    font-size: 25px;
    color: white;
    margin-bottom: 10px;
}

.mj-modal-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    padding-bottom: 15px;
    gap: 12px;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
}

.mj-modal-buttons button {
    padding: 10px !important;
    width: 100% !important;
    font-size: 14px !important;
}

.mj-modal-buttons .mj-modal-bt {
    width: 100%;
}

.mj-modal-header {
    width: 100%;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: solid 1px #f4f4f4;
}

.mj-modal-header h4 {
    font-size: 20px;
}

.mj-modal-header i {
    padding: 10px 12px;
    font-size: 15px;
    cursor: pointer;
    background: #ddd;
    border-radius: 50%;
    color: #333;
}

.bg-danger {
    background: #dc3545 !important;
}

.mj-modal-body {
    padding-bottom: 5px;
    border-bottom: solid 1px #f4f4f4;
}

.mj-modal-footer {
    padding: 15px;
}

.mj-modal-bt button {
    width: 100%;
    border: none;
    background: var(--main-color);
    padding: 8px 0;
    color: white;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
}

.mj-modal-form {
    padding: 0px 15px;
}

.mj-modal-form .mj-form-grouping {
    margin-bottom: 0 !important;
}

.fade-modal {
    -webkit-animation: 0.3s modal both;
    animation: 0.3s modal both;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.width-10 {
    width: 10% !important;
}

.width-20 {
    width: 20% !important;
}

.width-30 {
    width: 30% !important;
}

.width-40 {
    width: 40% !important;
}

.width-50 {
    width: 50% !important;
}

.width-60 {
    width: 60% !important;
}

.width-70 {
    width: 70% !important;
}

.width-80 {
    width: 80% !important;
}

.width-90 {
    width: 90% !important;
}

.width-100 {
    width: 100% !important;
}

.btn-defualt {
    padding: 12px;
    border: none;
    background: var(--main-color);
    margin-left: 10px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.mj-modal-hide {
    display: none;
}

@-webkit-keyframes modal {
    from {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes modal {
    from {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.toast-success {
    background-color: #4caf50;
    color: #fff;
}

.toast-failed {
    background-color: #ff5252 !important;
}

.toast-warning {
    background-color: #ffc107;
}

.mj-toast-parent {
    bottom: 1rem;
    right: 2rem;
    position: fixed;
}

.Vue-Toastification__toast {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 12px;
    border-radius: 8px;
    -webkit-box-shadow:
        0 1px 10px 0 rgba(0, 0, 0, 0.1),
        0 2px 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow:
        0 1px 10px 0 rgba(0, 0, 0, 0.1),
        0 2px 15px 0 rgba(0, 0, 0, 0.05);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 280px;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    direction: ltr;
    color: white;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-animation: 0.3s bounceInLeft linear 1 forwards;
    animation: 0.3s bounceInLeft linear 1 forwards;
}

.toast-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

.toast-content i {
    font-size: 20px;
}

.toast-content p {
    font-size: 14px;
}

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.mj-btn-tbl {
    border: none;
    background: var(--main-color);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    padding: 3px 7px;
}

.mj-text-blue {
    color: rgb(75, 75, 235);
}

.mj-show-image-grid {
    display: block;
}

.mj-show-image-grid img {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    -o-object-fit: cover;
    object-fit: cover;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
}

/* sidenav */

.sidenav {
    /* background: white; */
    width: auto;
    height: 100%;
    position: fixed;
    /* top: 67px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 10;
}

.shadow-sm {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sidebar-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #eee;
    padding: 0 15px;
}

.sidebar-small-child {
    margin: auto;
    display: block;
}

.sidebar-small-child-list {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    background: white;
    margin: 15px 0;
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sidebar-small-child-list:hover {
    background: var(--main-color);
    color: white;
}

.sidebar-small-child-list i {
    margin: auto;
    font-size: 14px;
}

.sidebar-large {
    background: white;
    width: 0px;
    overflow: hidden;
    /* padding: 15px; */
    padding-top: 4.3rem;
}

.sidebar-large-header {
    padding: 13px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* background: #efefef; */
    border-bottom: solid #ddd 1px;
}

.sidebar-large-header h4 {
    font-weight: normal;
}

.sidebar-large-dismiss {
    cursor: pointer;
    font-size: 17px;
}

.d-block {
    display: block !important;
}

.sidebar-large-body-list {
}

.sidebar-large-body-list li {
    padding: 15px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
}

.sidebar-large-body-list li:hover {
    background: #efefef;
}

/* body */
/* main-content */

.main-content {
    width: 98%;
    margin: auto;
    padding-left: 4%;
    padding-top: 4.4rem;
    padding-bottom: 2rem;
}

.content-caption {
    margin-top: 20px;
    text-align: center;
}

.content-caption h4 {
    font-size: 1.2rem;
}

.vtu-welcome-card {
    width: 100%;
    margin: auto;
    background: white;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    padding: 25px;
    border-radius: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.vtu-welcome-card-content {
    width: 100%;
}

.vtu-welcome-card-content-scroll {
    width: 100%;
    overflow: scroll;
}

.vtu-welcome-card-content-scroll::-webkit-scrollbar {
    display: none;
}

.vtu-welcome-card-content h4 {
    text-transform: uppercase;
    margin-bottom: 12px;
}

.vtu-referal-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
}

.vtu-referal-link span {
    font-size: 14px;
    color: #555;
}

.vtu-referal-link h5 {
    font-size: 14px;
    color: #333;
}

.vtu-welcome-card-fund-btn {
    padding: 10px 0;
    margin-top: 12px !important;
}

.vtu-welcome-card-fund-btn a {
    text-decoration: none;
    color: #333;
    padding: 12px 20px;
    background: var(--main-color);
    border-radius: 10px;
    color: white;
    text-wrap: nowrap;
}

.text-dander {
    color: red !important;
}

.vtu-livetime-earning {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.vtu-livetime-earning-first i {
    padding: 15px !important;
    background: var(--main-color);
    color: white;
    font-size: 20px;
    border-radius: 10px !important;
}

.vtu-livetime-earning i {
    padding: 25px;
    background: var(--main-color);
    color: white;
    font-size: 20px;
    border-radius: 50%;
}

.vtu-livetime-earning-amount h4 {
    font-size: 18px;
}

.vtu-livetime-earning-amount h4 span {
    font-size: 12px;
}

.vtu-livetime-earnings-bottom {
    margin-top: 25px;
}

.mb-30 {
    margin-bottom: 10px;
}

.vtu-livetime-earnings-bottom-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.mt-resize-12 {
    margin-top: -7px;
    font-size: 14px;
}

/* vtu-account-balance-card */

.vtu-account-balance-card {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.vtu-account-balance-card-blc {
    margin: auto;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vtu-account-balance-card-balance p {
    font-size: 15px;
    margin-top: 15px;
}

.vtu-account-balance-card-blc i {
    padding: 25px;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 20px;
    color: white;
}

.vtu-amount-size-large {
    font-size: 2rem !important;
}

.vtu-account-balance-card-blc img {
    width: 90px;
    -o-object-fit: cover;
    object-fit: cover;
    height: 90px;
    border-radius: 50%;
    background: #efefef;
}

.vtu-table-defualt {
    border-collapse: collapse;
    width: 100% !important;
    text-align: left;
    overflow: scroll !important;
}

.vtu-welcome-card-content .vtu-table-defualt tr th,
.vtu-table-defualt tr td {
    padding: 10px;
    text-wrap: nowrap;
}

.text-success {
    color: green;
    font-size: 14px;
}

.vtu-tal-view {
    text-align: left;
    padding-top: 12px;
}

.vtu-tal-view a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
}

.vtu-tal-view a:hover {
    text-decoration: underline;
}

.vtu-form-full {
    width: 100%;
    padding: 0px !important;
}

.d-none {
    display: none;
}

/* .vtu-tab */
.grid-30-40 {
    -ms-grid-columns: 30% 15px 69.15%;
    grid-template-columns: 30% 69.15%;
    gap: 15px;
}

.vtu-tab {
    width: 100%;
    border-bottom: solid 1px #efefef;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.vtu-tab .vtu-tab-link {
    padding: 12px 0;
    cursor: pointer;
}

.vtu-tab-active {
    border-bottom: solid 2px var(--main-color);
    color: var(--main-color);
}

.vtu-funding-left-form {
    margin-top: 20px;
}

.mt-resize-30 {
    margin-top: -34px !important;
}

.btn-small {
    width: auto !important;
    padding: 10px 15px !important;
}

.vtu-funding-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.vtu-funding-right-img {
    margin: auto;
}

.vtu-funding-right-img img {
    width: 400px;
    margin-top: 10px;
}

.vtu-profile {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.vtu-profile img {
    border-radius: 50%;
    background: #efefef;
    width: 100px;
    height: 100px;
}

.vtu-edit-profile {
    width: 100%;
    background: white;
    border: solid 1px #ddd;
    padding: 12px 0;
    border-radius: 10px;
    color: #333;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.vtu-edit-profile:hover {
    background: var(--main-color);
    color: white;
}

.vtu-welcome-card-fund-profile {
    padding-top: 15px;
}

.vtu-welcome-card-fund-profile a {
    text-decoration: none;
}

.tab-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 20px 0;
    padding: 0 10px;
    border-radius: 10px;
}

.tab-button {
    background-color: #f1f1f1;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #333;
}

.tab-button.active-defualt {
    background-color: var(--main-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active-defualt {
    display: block;
}

.tab-button-form {
    width: 100%;
    padding: 10px;
    /* background-color: var(--main-color); */
    color: #333;
    border: none;
    cursor: pointer;
}

.tab-button-form:hover {
    background-color: var(--main-color);
    color: white;
}

.border-raduis-top-left {
    border-top-left-radius: 5px;
}

.border-raduis-top-right {
    border-top-right-radius: 5px;
}

.border-raduis-bottom-left {
    border-bottom-left-radius: 5px;
}

.border-raduis-bottom-right {
    border-bottom-right-radius: 5px;
}

.mj-mobile-header {
    display: none;
    z-index: 200;
}

.sideopenclose {
    position: relative;
}

.sideopenclose.timesIcon::before {
    content: "\f00d";
}

.mj-text-message-errors {
    color: red;
    margin-top: -12px;
    margin-bottom: 10px;
}

.mj-bg-white-btn {
    background: white !important;
    color: #333 !important;
    border: solid 1px #ddd;
}

.vtu-table-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.vtu-table-edit {
    color: var(--main-color);
    font-size: 15px;
}

.vtu-table-view {
    color: #333;
}

.vtu-table-trash {
    color: red;
}

.vtu-table-status {
    text-transform: lowercase;
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.vtu-table-status-active {
    background: rgb(9, 134, 9);
}

.vtu-table-status-approved {
    background: rgb(16, 199, 16);
}

.vtu-table-status-completed {
    background: rgb(12, 141, 12);
}

.vtu-table-status-success {
    background: rgb(12, 141, 12);
}
.vtu-table-status-successful {
    background: rgb(12, 141, 12);
}

.vtu-table-status-pending {
    background: var(--main-color);
}

.vtu-table-status-inactive {
    background: var(--main-color);
}

.vtu-table-status-rejected {
    background: rgb(194, 30, 30);
}

.vtu-table-status-failed {
    background: rgb(194, 30, 30);
}

.vtu-table-status-suspended {
    background: rgb(194, 30, 30);
}

.vtu-table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.vtu-table-search {
    /* width: 100%; */
}

.vtu-table-search input {
    width: 100%;
    padding: 12px;
    border: solid 1px #ccc;
    outline: none;
    border-radius: 10px;
    width: 300px;
}

.vtu-table-search input:focus {
    border: solid 1px var(--main-color);
}

/* Table Styles */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.vtu-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: Arial, sans-serif;
}

.vtu-table th,
.vtu-table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    text-wrap: nowrap;
}
.text-title {
    text-decoration: none;
    color: #333;
}

.vtu-table th {
    background-color: #f4f4f4;
    color: #333;
    text-transform: uppercase;
}

.vtu-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.vtu-table tbody tr:hover {
    background-color: #f1f1f1;
}

.vtu-table-status {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.vtu-table-status-pending {
    background-color: var(--main-color);
    color: white;
}

.vtu-table-status-approved {
    background-color: green;
    color: white;
}

.vtu-table-status-rejected {
    background-color: red;
    color: white;
}

.vtu-table-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.vtu-table-edit,
.vtu-table-view,
.vtu-table-trash {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.vtu-table-edit i,
.vtu-table-view i,
.vtu-table-trash i {
    font-size: 18px;
    color: #333;
}

.vtu-table-edit:hover i {
    color: #007bff;
}

.vtu-table-view:hover i {
    color: #28a745;
}

.vtu-table-trash:hover i {
    color: #dc3545;
}

/* Pagination Styles */
.pagination {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    color: #333;
}

.page-btn.active {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.page-btn:hover {
    background-color: #f0f0f0;
}

.assign-permission-head {
    width: 100%;
}

.assign-permission-head h4 {
    font-size: 20px;
}

.assign-permission-name {
    margin: 16px 0;
}

.assign-permission-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: wrap;
    flex-direction: wrap;
}

.assign-permission-flex h4 {
    font-weight: normal;
    font-size: 17px;
}

.assign-permission-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.assign-permission-checked {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.btn-proccessing {
    background: lightblue !important;
}
.mt-space {
    margin: 20px 0;
}
.mj-meter-name {
    background: lightblue !important;
    min-width: auto;
    padding: 10px;
    color: #333;
    border-radius: 10px;
}
.mt-space-12 {
    margin: 12px 0;
}

.voucher {
    background-color: white;
    border: 1px dashed black;
    padding: 10px;
    width: 100%;
    text-align: center;
    position: relative;
}
.bg-green {
    background: rgb(5, 243, 5) !important;
}
.header {
    font-weight: bold;
    margin-bottom: 10px;
}

.content-card {
    text-align: left;
    margin-bottom: 10px;
    background: white !important;
    text-wrap: nowrap;
}

.content-card p {
    margin: 5px 0;
    text-wrap: nowrap;
}
.class-network-logo {
    background: var(--main-color);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 13px;
    text-wrap: nowrap;
}
.class-grid-printed-card {
    gap: 0px !important;
    text-wrap: nowrap;
}
.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    text-wrap: nowrap;
}

.logo {
    width: 40px;
    text-wrap: nowrap;
}

.amount {
    font-size: 16px;
    font-weight: bold;
    text-wrap: nowrap;
}

.save-print-btn button {
    border-radius: 10px;
    background: green;
    padding: 10px 20px;
    border: none;
    color: white;
}

.code {
    font-size: 12px;
    font-style: italic;
    text-wrap: nowrap;
}
.text-red-message {
    background: #ffdde2;
    color: rgb(250, 89, 89);
    font-size: 15px;
    padding: 10px;
    border-radius: 10px;
}
.section-tags-links a {
    text-decoration: none !important;
    color: #333 !important;
}
/* Desktops and laptops ----------- */
@media only screen and (max-width: 1654px) {
    .mj-head-links {
        display: none;
    }

    .mj-head-search {
        display: none;
    }

    .mj-head-divider {
        width: 93%;
    }

    .mj-grid {
        padding-top: 4.1rem;
    }

    .mj-grid-container {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        width: 100%;
    }

    .mj-grid-30 {
        display: none;
    }

    .class-grid-2 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .grid\:3 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .form-change-password {
        width: 100%;
    }

    .mj-grid-avater-pro {
        width: 60px;
        height: 60px;
    }

    .mj-grid-avater-pro h4 {
        font-size: 1.5rem;
    }

    .mj-profile-detailed h4 {
        font-size: 1.2rem;
        font-weight: 400;
    }

    .mj-header-dropdown {
        right: 20px;
    }

    .mj-header-dropdown li a {
        font-size: 14px !important;
    }

    .mj-modal-dialog {
        width: 30%;
    }

    .class-grid-2 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    /* .sidenav {
        width: 0px;
        overflow: hidden;
    } */

    .main-content {
        width: 95%;
        padding-left: 5%;
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .d-block-mobile {
        display: block;
        gap: 0px;
    }

    .vtu-welcome-card {
        width: 100%;
        margin: 0px;
    }

    .second-section-mobile-bottom {
        margin-bottom: 20px;
    }

    .width-10 {
        width: 25% !important;
    }

    .width-20 {
        width: 35% !important;
    }

    .width-30 {
        width: 45% !important;
    }

    .width-40 {
        width: 55% !important;
    }

    .width-50 {
        width: 65% !important;
    }

    .width-60 {
        width: 60% !important;
    }

    .width-70 {
        width: 70% !important;
    }

    .width-80 {
        width: 80% !important;
    }

    .width-90 {
        width: 90% !important;
    }

    .width-100 {
        width: 100% !important;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (max-width: 1224px) {
    .mj-head-links {
        display: none;
    }
    .mj-login-bg {
        display: flex;
    }
    .mj-form {
        width: 70%;
    }
    .mj-head-search {
        display: none;
    }

    .mj-head-divider {
        width: 93%;
    }

    .mj-grid {
        padding-top: 4.1rem;
    }

    .mj-grid-container {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        width: 100%;
    }

    .mj-grid-30 {
        display: none;
    }

    #mj-scrollTop {
        height: 100%;
        padding-bottom: 3rem;
    }

    .mj-task-type {
        margin-top: 10px;
    }

    .mj-task-grids {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .mj-mobile-header {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px;
        border-top: 1px solid #ddd;
    }

    .mj-mobile-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 90%;
        margin: auto;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .mj-mobile-nav-icon {
        padding: 4px 0;
    }

    .mj-mobile-nav-icon i {
        font-size: 19px;
        color: #333;
    }

    .mj-mobile-nav-icon i:hover {
        color: var(--main-color);
    }

    .mj-form-footer {
        padding-bottom: 20px;
    }

    .class-grid-2 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .grid\:3 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .form-change-password {
        width: 100%;
    }

    .mj-grid-avater-pro {
        width: 60px;
        height: 60px;
    }

    .mj-grid-avater-pro h4 {
        font-size: 1.5rem;
    }

    .mj-profile-detailed h4 {
        font-size: 1.2rem;
        font-weight: 400;
    }

    .mj-header-dropdown {
        right: 20px;
    }

    .mj-header-dropdown li a {
        font-size: 14px !important;
    }

    .mj-modal-dialog {
        width: 90%;
    }

    /* Styles */
    .mj-mobile-header {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px;
        border-top: 1px solid #ddd;
    }

    .mj-mobile-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 90%;
        margin: auto;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .mj-mobile-nav-icon {
        padding: 4px 0;
    }

    .mj-mobile-nav-icon i {
        font-size: 19px;
        color: #333;
    }

    .mj-mobile-nav-icon i:hover {
        color: var(--main-color);
    }

    .mj-form-footer {
        padding-bottom: 20px;
    }

    .class-grid-2 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .grid\:2 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid\:3 {
        -ms-grid-columns: (minmax(0, 1fr)) [2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid\:4 {
        -ms-grid-columns: (minmax(0, 1fr)) [2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid\:5 {
        -ms-grid-columns: (minmax(0, 1fr)) [2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid\:6 {
        -ms-grid-columns: (minmax(0, 1fr)) [2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid\:7 {
        -ms-grid-columns: (minmax(0, 1fr)) [2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-30-40 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .sidenav {
        width: 0px;
        overflow: hidden;
    }

    .main-content {
        width: 90%;
        padding-left: 0%;
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .d-block-mobile {
        display: block;
        gap: 0px;
    }

    .vtu-welcome-card {
        width: 100%;
        margin: 0px;
    }

    .second-section-mobile-bottom {
        margin-bottom: 20px;
    }

    .width-10 {
        width: 50% !important;
    }

    .width-20 {
        width: 50% !important;
    }

    .width-30 {
        width: 50% !important;
    }

    .width-40 {
        width: 50% !important;
    }

    .width-50 {
        width: 50% !important;
    }

    .width-60 {
        width: 50% !important;
    }

    .width-70 {
        width: 50% !important;
    }

    .width-80 {
        width: 50% !important;
    }

    .width-90 {
        width: 50% !important;
    }

    .width-100 {
        width: 50% !important;
    }
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-width: 680px) {
    .mj-head-links {
        display: none;
    }
    .mj-login-bg {
        display: block;
    }
    .mj-head-search {
        display: none;
    }
    .mj-form {
        width: 100%;
        border-radius: 0px;
        min-height: 100vh;
    }

    .mj-head-divider {
        width: 93%;
    }

    .mj-grid {
        padding-top: 4.1rem;
    }

    .mj-grid-container {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        width: 100%;
    }

    .mj-grid-30 {
        display: none;
    }

    #mj-scrollTop {
        height: 100%;
        padding-bottom: 3rem;
    }

    .mj-task-type {
        margin-top: 10px;
    }

    .mj-task-grids {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .mj-mobile-header {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px;
        border-top: 1px solid #ddd;
    }

    .mj-mobile-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 90%;
        margin: auto;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .mj-mobile-nav-icon {
        padding: 4px 0;
    }

    .mj-mobile-nav-icon i {
        font-size: 19px;
        color: #333;
    }

    .mj-mobile-nav-icon i:hover {
        color: var(--main-color);
    }

    .mj-form-footer {
        padding-bottom: 20px;
    }

    .class-grid-2 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .grid\:3 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .form-change-password {
        width: 100%;
    }

    .mj-grid-avater-pro {
        width: 60px;
        height: 60px;
    }

    .mj-grid-avater-pro h4 {
        font-size: 1.5rem;
    }

    .mj-profile-detailed h4 {
        font-size: 1.2rem;
        font-weight: 400;
    }

    .mj-header-dropdown {
        right: 20px;
    }

    .mj-header-dropdown li a {
        font-size: 14px !important;
    }

    .mj-modal-dialog {
        width: 90%;
    }

    .mj-mobile-header {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px;
        border-top: 1px solid #ddd;
    }

    .mj-mobile-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 90%;
        margin: auto;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .mj-mobile-nav-icon {
        padding: 4px 0;
    }

    .mj-mobile-nav-icon i {
        font-size: 19px;
        color: #333;
    }

    .mj-mobile-nav-icon i:hover {
        color: var(--main-color);
    }

    .mj-form-footer {
        padding-bottom: 20px;
    }

    .class-grid-2 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .grid\:2 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid\:3 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid\:4 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid\:5 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid\:6 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid\:7 {
        -ms-grid-columns: (minmax(0, 1fr)) [1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid-30-40 {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .sidenav {
        width: 0px;
        overflow: hidden;
    }

    .main-content {
        width: 90%;
        padding-left: 0%;
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .d-block-mobile {
        display: block;
        gap: 0px;
    }

    .vtu-welcome-card {
        width: 100%;
        margin: 0px;
    }

    .second-section-mobile-bottom {
        margin-bottom: 20px;
    }

    .vtu-funding-right-img {
        display: none;
    }

    .vtu-funding-right-img img {
        width: 300px;
    }

    .width-10 {
        width: 80% !important;
    }

    .width-20 {
        width: 80% !important;
    }

    .width-30 {
        width: 80% !important;
    }

    .width-40 {
        width: 80% !important;
    }

    .width-50 {
        width: 80% !important;
    }

    .width-60 {
        width: 80% !important;
    }

    .width-70 {
        width: 80% !important;
    }

    .width-80 {
        width: 80% !important;
    }

    .width-90 {
        width: 80% !important;
    }

    .width-100 {
        width: 80% !important;
    }
}

.img-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
