h2 {
    font-size: 25px;
    font-weight: 500;
}

.login-title {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 30px;
    line-height: normal;
}

.login-bg {
    background: linear-gradient(137.96deg, #154D2B 34%, #57AA35 157.65%);
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    padding: 0px 80px;
}

.copyright-Div {
    padding: 30px 80px;
    color: #FFFFFF;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.copyright-Div p {
    font-size: 14px;
}

.login-para {
    line-height: 30px;
    color: #FFFFFF;
}

.app-brand-logo .logo img {
    width: 173px;
    height: auto;
}

.back-loginbtn {
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #000000;
}

.page-title {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.span-tag {
    color: #0073EF;
    font-size: 16px;
    margin-bottom: 30px;

}

.profile-card {
    display: flex;
    align-items: center;
}

.profile-card .image-container {
    position: relative;
    margin-right: 20px;
}

.profile-card .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid #ddd;
    display: block;
    padding: 2px;
}

.profile-card .edit-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #007bff;
    border: 2px solid white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-bottom: 0;
}


.profile-card .profile-info h2 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.profile-card .profile-info p {
    margin: 14px 0 0;
    font-size: 14px;
    color: #888;
}

.user-list-box .listing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #E3E3E3;
    text-align: center;
    position: relative;
}

/* Top Blue Section */
.user-list-box .listing-card-header {
    background-color: #e3effb;
    height: 120px;
    padding: 15px;
}

.user-list-box .listing-card-header-no-contract {
    background-color: #fbe3e3;
    height: 120px;
    padding: 15px;
}


.user-list-box .status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    right: 10px;
    top: 10px;
    width: fit-content;
}

.user-list-box .status-badge.active {
    background-color: #108D55;
    color: #fff;
}

.user-list-box .status-badge.inactive {
    background-color: #EB0004;
    color: #fff;
}

/* Profile Image Overlap */
.user-list-box .profile-container {
    margin-top: -50px;
    position: relative;
    /* display: inline-block; */
}

.user-list-box .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid white;
    object-fit: cover;
}

/* Body Content */
.user-list-box .listing-card .card-body {
    padding: 15px;
}

.user-list-box .name {
    color: #007BFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.user-list-box .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #919191;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.user-list-box .icon-svg {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    stroke: #55b545;
    /* Green icons from image */
    fill: none;
    stroke-width: 2;
}

/* Action Buttons */
.user-list-box .action-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.user-list-box .action-btn {
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #919191;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s all;
}

.user-list-box .btn-edit {
    color: #939393;
    border-color: #939393;
}

.user-list-box .btn-edit:hover {
    background-color: #ebebeb;
    transition: 0.5s all;
    transform: translateY(-1px);
}

.user-list-box .btn-delete {
    color: #EB0004;
    border-color: #EB0004;
}

.user-list-box .btn-delete:hover {
    background-color: #eb000429;
    transition: 0.5s all;
    transform: translateY(-1px);
}

.user-list-box .btn-unlock {
    color: #007BFF;
    border-color: #007BFF;
}

.user-list-box .btn-unlock:hover {
    background-color: #007bff21;
    transition: 0.5s all;
    transform: translateY(-1px);
}

.user-list-box .btn-view {
    color: #55b545;
    border-color: #57AA35
}

.user-list-box .btn-view:hover {
    background-color: #57ab3629;
    transition: 0.5s all;
    transform: translateY(-1px);
}

.user-list-box .btn-property {
    color: #939393;
    border-color: #939393;
}

.user-list-box .btn-property:hover {
    background-color: #93939050;
    transition: 0.5s all;
    transform: translateY(-1px);
}

.user-list-box .btn:hover {
    opacity: 0.7;
}

.top-header input {
    padding-left: 50px;
}

.top-header .bx-search,
.top-header .search {
    position: absolute;
    left: 15px;
}

.search-icon input {
    padding-left: 50px;
}

.search-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon svg {
    position: absolute;
    left: 15px;
}

.text-danger {
    font-size: 14px;
    margin-top: 2px;
}

.listing--property .table-responsive {
    background: white;
}


/* Property Name Column with Icon */
.listing--property .property-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.listing--property .building-icon {
    max-width: 44px;
    min-width: 44px;
    height: 44px;
    background-color: #E8EBE3;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Status Badge */
.listing--property .status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.listing--property .status.active {
    color: #009817;
}

.listing--property .status.inactive {
    color: #DF0000;
}

.listing--property .status.inprogress {
    color: #0073EF;
}

/* Action Buttons */
.listing--property .action-cell {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.listing--property .action-icon {
    cursor: pointer;
    transition: opacity 0.2s;
    width: 18px;
    height: 18px;
}

.listing--property .edit {
    color: #007bff;
}

.listing--property .delete {
    color: #dc3545;
}

.listing--property .archive {
    color: #28a745;
}

.listing--property .checkbox-cell {
    width: 40px;
}

.listing--property input[type="checkbox"] {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border: 1px solid #D2D2D2;
    border-radius: 5px;
}

.btn-blue {
    color: #fff;
    background-color: #0073EF;
    border-color: #0073EF;
}

.btn-blue:hover {
    color: #0073EF;
    background-color: #fff;
    border-color: #0073EF;
    transform: translateY(-1px);
}

.upload-box {
    display: flex;
    border: 1px solid #007bff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.upload-text {
    flex: 1;
    padding: 12px 20px;
    color: #007bff;
}

.upload-icon {
    width: 50px;
    background: #fff;
    border-left: 1px solid #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #218c53;
    font-size: 20px;
}

.gray-box {
    background: #E9E9E94A;
    border: 1px solid #D8D8D8;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

label .validate {
    color: #EB0004;
}

.legal-entity .legal-label {
    padding: 0;

    font-size: 12px;
    color: #999999;
    font-weight: 400;
}

.form-check-input {
    width: 25px;
    height: 25px;
    margin: 0;
    margin-right: 8px;
}

.img-grid-uploaded {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.img-grid-uploaded li {
    position: relative;
}

.img-grid-uploaded li img {
    object-fit: contain;
    border: 1px solid #ddd;
    display: block;
    padding: 2px;
    min-width: 80px;
    border-radius: 5px;
    max-width: 80px;
    width: 80px;
    height: 80px;
}

.img-grid-uploaded li .close-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.img-grid-uploaded li .close-icon svg {
    width: 18px;
    height: 18px;
}

.profile-text {
    text-align: end;
}

.profile-text .user-name {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.profile-text .profile-info {
    margin: 4px 0 0;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
}

.btn-primary .spinner-border {
    border-color: #fff;
    border-right-color: transparent;
    margin-right: 5px;
}

.dashboard-card .card-title {
    font-size: 25px;
    color: #000;
    font-weight: 600;
}

.dashboard-card .dropdown .bx {
    color: #939393;
}

.dashboard-card .icon-circle {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card .icon-circle.bg-label-danger {
    background-color: #FFE0DB !important;
}

.dashboard-card .icon-circle.bg-label-info {
    background-color: #DBEEFF !important;
}

.dashboard-card .icon-circle.dashboard-card .icon-circle {
    background-color: #F8EBC2 !important;
}

.dashboard-card .icon-circle.bg-label-dark {
    background-color: #E2DBFF !important;
}

.dashboard-card .card {
    box-shadow: 0px 2px 4px 0px #0000001A;
    border: 0;
    height: 100%;
}

.card-title {
    color: #000000;
    font-weight: 600;
}

.layout-page .table-data {
    border-radius: 15px;
    border: 1px solid #E3E3E3;
    overflow: hidden;
    background-color: #fff;
}

.layout-page .table-responsive .table {
    margin-bottom: 0;
}

.icon-box {
    height: 44px;
    width: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8EBE3;
    overflow: hidden;
}

.icon-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.table tbody tr:last-child td {
    border-bottom: 0;
}

.progress-with-value {
    min-width: 200px;
}

.year-drop {
    max-width: 130px;
    border: 0;
    color: #000;
    font-size: 16px;
}

.table-data .btn-primary {
    font-size: 15px;
    padding: 8px 30px;
    line-height: normal;
}

.small-text {
    font-size: 13px;
    color: #979797;
}

.type-tag {
    font-size: 14px;
    border-radius: 25px;
    padding: 3px 12px;
    text-align: center;
    width: fit-content;
}

.right-side-top .form-select,
.right-side-top .form-control {
    color: #000;
}

.right-side-top {
    gap: 10px 15px;
}

/* pagination */

.pagination-list {
    display: flex;
    list-style: none;
    gap: 5px;
    justify-content: center;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.custom-pagination {
    margin: 30px 0 0;
}

.pagination-list li a {
    min-width: 36px;
    height: 36px;
    padding: 0 7px;
    border-radius: 8px;
    background: #FFFFFF;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.2s ease;
    border: 1.13px solid #F1F1F1;
    font-weight: 500;
}

.pagination-list li.active a,
.pagination-list li a:hover {
    background: #0073EF;
    color: #fff;
}

.pagination-list li.disabled a {
    color: #CCCCCC;
    pointer-events: none;
}

.uploadfile-box {
    border: 1px dashed #D4D4D4;
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.uploadfile-box input[type="file"] {
    display: none;
}

.upload-icon {
    width: 48px;
    margin-bottom: 10px;
}

.drop-text {
    font-size: 14px;
    color: #6E6E6E;
    margin-bottom: 15px;
}

.upload-types {
    font-weight: 500;
    margin-bottom: 25px;
}

.browse-btn {
    background: #59b12f;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
}

.supported {
    margin-top: 15px;
    font-size: 14px;
    color: #6E6E6E;
}


/* notifications popup */
.ntf-popup {
    margin-right: 30px;
}

.ntf-count {
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 10px;
    font-weight: 600;
    color: #e1e9f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    background-color: #ff0004;
}

.ntf-popup .dropdown-menu {
    width: 450px;
    right: 0 !important;
    left: unset !important;
    border-radius: 10px;
    position: absolute !important;
    border-color: #e6e6e6;
}

.ntf-popup .ntf-button {
    background: none;
}

.ntf-mark-read {
    font-size: 14px;
}

.icons-list .ntf-mark-read,
.ntf-popup .form-button-group .view-link {
    color: #70bf44;
    font-weight: 500;
    background: none;
}

.icons-list .ntf-mark-read a,
.icons-list .form-button-group button {
    width: auto;
    height: auto;
}

.icons-list .form-button-group {
    border-top: 1px solid #e6e6e6;
    padding-top: 20px;
    gap: 10px;
}

.icons-list .form-button-group button {
    background-color: #70bf44;
    font-size: 14px;
    border-radius: 10px;
    padding: 8px;
    width: 100%;
}

.icons-list .form-button-group button:hover {
    background: none;
}

.icons-list .form-button-group button.cancel {
    color: #9d9d9d;
    border-color: #9d9d9d;
    background: none;
}

.icons-list .form-button-group button.cancel:hover {
    background-color: #9d9d9d;
    color: #000;
}

.ntf-mark-read p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ntf-popup .ntf-profile {
    gap: 10px;
    max-width: 100%;
}

.ntf-list li {
    padding: 20px;
    border-top: 1px solid #e6e6e6;
}

.ntf-list li.active {
    background-color: #f5f5f5;
}

.ntf-list li:first-child {
    border-top: 0;
}

.ntf-head {
    border-bottom: 1px solid #e6e6e6;
    padding: 15px 20px;
}

.ntf-list {
    max-height: 400px;
    overflow: auto;
    padding-left: 0;
    margin: 0;
}

.ntf-popup .form-button-group {
    border-top: 1px solid #e6e6e6;
    padding: 20px 15px;
}



.ntf-time p {
    color: #919eab;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin: 0;
}

.ntf-time {
    gap: 20px;
}

.ntf-popup .ntf-profile .card-title {
    font-size: 16px;
}

.header-searchbar {
    width: 100%;
    max-width: 60%;
}

.header-searchbar #search_list {
    position: absolute;
    top: 49px;
    left: 0;
}

.header-searchbar .search-dropdown {
    padding: 15px;
    border: 1px solid #D8D8D8;
    border-radius: 10px;
    background-color: #fff;
    max-width: 100%;
    max-height: 290px;
    overflow: auto;
}

.header-searchbar .search-dropdown .menu-link {
    margin-bottom: 10px;
    width: fit-content;
    color: #000;
    transition: all 0.5s;
}

.header-searchbar .search-dropdown .menu-link:hover {
    color: #57AA35;
}

.header-searchbar .search-dropdown .menu-link:last-child {
    margin-bottom: 0;
}

.notification-page .ntf-profile {
    max-width: 68%;
}

.notification-page .ntf-profile p {
    margin-bottom: 0;
    font-size: 15px;
}

.notification-page .ntf-list li {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-page .icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
}

.notification-page .ntf-list {
    max-height: 100%;
}

.layout-content-navbar .layout-menu {
    position: sticky;
    top: 0;
    max-height: 100vh;
}

.layout-navbar {
    position: sticky;
    top: 0;
}


.mce-panel {
    border-color: #D8D8D8 !important;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #5a8f4b;
    font-size: 14px;
    font-weight: 500;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.title-row .btn {
    padding: 8px 30px;
}

.title-row .page-title {
    font-size: 25px;
    font-weight: bold;
    text-transform: capitalize;
}

.property-view-page .info-grid .status {
    background: #e0f7d6;
    color: #4ba72c;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    width: fit-content;
}

.address {
    color: #777;
    font-size: 15px;
}
.hero-image{
    text-align: end;
}
.hero-image img {
    width: 450px;
    height: 300px;
    border: 1px solid #ddd;
    object-fit: contain;
    border-radius: 15px;
}

.info-grid {
    margin-top: 35px;
}


.detail-item {
    font-size: 14px;
    color: #777;
    border-left: 1px solid #E3E3E3;
    padding-left: 20px;
}

.overview-column:nth-child(1) .detail-item,
.overview-column:nth-child(4) .detail-item {
    padding-left: 0;
    border-left: 0;
}

.built-photo {
    border-top: 0;
    padding: 20px;
    background: #f1f1f1bd;
    border-radius: 10px;
}

.detail-item span {
    display: block;
    margin-bottom: 8px;
}

.detail-item strong {
    font-weight: 600;
    color: #222;
}

.mini-image {
    margin-top: 10px;
}

.mini-image img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}


.location-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 10px;
}

.location-row:first-child {
    padding-top: 0;
}

.location-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.location-row {
    color: #777;
    font-size: 14px;
}

.location-row strong {
    color: #222;
    font-weight: 600;
    text-align: right;
}

.mail-box {
    margin-top: 25px;
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 20px;
}

.mail-box span {
    display: block;
    color: #777;
    margin-bottom: 10px;
}


.property-view-page .card .support-content .card-title {
    font-size: 18px;
}

.support-content p {
    color: #777;
    font-size: 14px;
}

.property-view-page .card .card-title {
    margin: 0;
    font-size: 16px;
}

.property-view-page .card-header {
    border-bottom: 1px solid #E3E3E3;
    background: #E9E9E9;
    padding: 15px 1.5rem;
}

.property-view-page .card .card-body {
    padding-top: 1.5rem;
}
















@media screen and (max-width: 1600px) {
    .notification-page .ntf-list li {
        padding: 20px;
    }

    .notification-page .ntf-profile {
        max-width: 60%;
    }

}

@media screen and (max-width: 1399px) {
    .detail-item {
        padding-left: 15px;
    }

    .detail-item,
    .location-row {
        font-size: 13px;
    }
}

@media screen and (max-width: 1280px) {

    .menu-vertical,
    .menu-vertical .menu-block,
    .menu-vertical .menu-inner>.menu-item,
    .menu-vertical .menu-inner>.menu-header {
        width: 250px;
    }

    .menu-vertical .menu-inner>.menu-item {
        width: 100%;
    }

    .menu-vertical .menu-inner>.menu-item .menu-link {
        margin: 0rem 0.5rem;
    }

    .menu .app-brand.demo,
    .layout-navbar.navbar-detached {
        height: 90px;
    }

    .table tbody tr td,
    .table thead tr th {
        font-size: 14px;
        padding: 10px;
    }

    .login-bg {
        padding: 0px 45px;
    }

    .copyright-Div {
        padding: 20px 45px;
    }

    .login-title {
        font-size: 28px;
    }

    .dashboard-card .icon-circle {
        height: 50px;
        width: 50px;
    }

    .dashboard-card .card-body {
        padding: 1rem 1rem;
    }

    .dashboard-card .card-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 992px) {
    .hero-image img {
        height: 250px;
        width: 350px;
    }

    .ntf-popup {
        margin-right: 20px;
    }

    .login-bg {
        width: 100%;
        padding: 0px 50px;
    }

    .copyright-Div {
        padding: 20px 50px;
        position: relative !important;
        color: #A4A4A4;
        text-align: center;
    }


    .app-brand-logo .logo img {
        width: 104px;
    }

    .form-label,
    .col-form-label,
    .login-para {
        font-size: 14px;
    }

    .login-para {
        line-height: 22px;
    }

    h2 {
        margin-bottom: 10px;
    }

    .login-title {
        font-size: 25px
    }

    .card-body,
    .gray-box,
    .card-footer {
        padding: 20px;
    }

    .card-footer {
        padding-top: 0px;
    }

    .authentication-wrapper .card {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 70vh !important;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        overflow-x: auto;
    }

    .login-bg {
        padding: 0px 19px;
        height: 35vh;
    }

    .login-bgcontent {
        max-height: 30vh !important;
    }

    .header-searchbar {
        max-width: 50%;
    }

    label {
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .hero-image img {
        height: auto;
        width: 100%;
    }

    .ntf-popup {
        position: unset !important;
    }

    .ntf-popup .dropdown-menu {
        width: 95%;
        right: 15px !important;
    }

    .notification-page .ntf-list li {
        display: block;
    }

    .notification-page .ntf-profile {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .contract-signature .modal-dialog {
        max-width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .detail-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 5px;
    }

    .location-row {
        padding: 10px 0;
    }
    .property-view-page .card .support-content .card-title {
    font-size: 16px;
}

    .property-view-page .card .card-body {
        padding-top: 20px;
    }

    .mail-box {
        margin-top: 10px;
    }

    .detail-item span {
        margin-bottom: 0px;
    }

    .property-view-page .card-header {
        padding: 10px 15px;
    }

    .built-photo,
    .mail-box {
        padding: 15px;
    }

    .mini-image img {
        width: 80px;
        height: 58px;
    }

    .info-grid {
        margin-top: 25px;
    }

    .detail-item {
        border-top: 1px solid #E3E3E3;
        padding: 10px 0 !important;
        border-left: 0;
    }

    .overview-column:first-child .detail-item {
        padding-top: 0 !important;
        border-top: 0;
    }

    .notification-page .ntf-list li {
        padding: 15px;
    }

    .notification-page .icon-box {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .notification-page .ntf-profile p {
        font-size: 14px;
    }

    .notification-page .ntf-profile .card-title {
        font-size: 16px;
    }

    .ntf-popup {
        margin-right: 15px;
    }

    .profile-text {
        display: none;
    }

    .login-title {
        font-size: 20px
    }


    .copyright-Div {
        padding: 10px 19px;
    }

    .menu .app-brand.demo,
    .layout-navbar.navbar-detached {
        height: 75px;
    }

    .page-title,
    .span-tag {
        margin-bottom: 20px;
    }

    .page-title {
        font-size: 18px !important;
    }

    .card-body,
    .gray-box,
    .card-footer {
        padding: 20px 15px;
    }

    .card-footer {
        padding-top: 0px;
    }

    body,
    .form-control {
        font-size: 14px;
    }

    .form-check-input,
    .user-list-box .checkbox input {
        width: 20px;
        height: 20px;
    }

    footer.content-footer {
        padding: 0px 13px;
    }

    .top-header .search {
        width: 18px;
        height: 18px;
    }

    .top-header input {
        padding-left: 40px;
    }

    .user-list-box .action-btn {
        max-width: 35px;
        min-width: 35px;
        height: 35px;
    }

    .user-list-box .action-btn svg {
        width: 20px;
        height: 20px;
    }

    .select2-container--default .select2-selection--single {
        width: 100%;
    }

    .uploadfile-box iframe {
        height: 100px;
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .login-title {
        font-size: 18px
    }
}

@media screen and (max-width: 350px) {
    .login-para {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.view-link {
    color: #57AA35;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
}