/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Sora:wght@100..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f3f3ff;
}

a {
    text-decoration: none;
}

:root {
    --bg-color: #f3f3ff;
    --text-color: #2f1c6a;
    --sidebar-bg: #eae9fe;
    --menu-hover: #d7d6fe;
    --hover-text: #633aed;
    --primary-color: #5429e8;
    --table-heading-color: #d3d1ff;
    --white-text: #ffffff;
    --gray-text-color: #4621b6;
    --table-border: 1px solid #e7e7e7;
    --body-color: #f3f3ff;
    --gray-text-color: #71717a;
    /* unchanged */
}

.primary-text-color {
    color: var(--primary-color);
}

.common-box-shadow {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    background: var(--sidebar-bg);
    position: fixed;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 999;
}

.sidebar.collapsed {
    width: 100%;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    transition: all 0.3s;
}

.sidebar-header .logo {
    transition: all 0.3s;
}

.sidebar.collapsed .logo {
    margin-right: auto;
}

.btn-toggle-sidebar {
    font-size: 30px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.menu li {
    margin-bottom: 10px;
}

.menu li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s;
}

.menu li a:hover {
    background: var(--menu-hover);
    color: var(--hover-text);
}

.menu li a.active {
    background: var(--menu-hover);
    color: var(--hover-text);
}

.menu li i {
    margin-right: 10px;
}

.logout-section {
    margin-top: auto;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.logout {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    transition: color 0.3s;
}

.logout:hover {
    color: var(--hover-text);
}

/* Content */
.content {
    margin-left: 250px;
    padding: 20px;
    transition: all 0.3s;
}

.sidebar-close {
    display: none;
}

.sidebar.collapsed~.content {
    margin-left: 60px;
}

.sidebar.collapsed .sidebar-close {
    display: block;
}

.sidebar.collapsed .sidebar-open {
    display: none;
}

.welcome-txt {
    font-weight: 700;
}

/* Login Page Styles */
.form-container {
    background: var(--white-text);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.form-title {
    color: var(--text-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--gray-text-color);
    font-size: 0.95rem;
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.input-group-text {
    color: var(--hover-text);
    border-color: var(--sidebar-bg);
}

.form-control {
    border-color: var(--sidebar-bg);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--hover-text);
    box-shadow: 0 0 0 0.25rem rgba(99, 58, 237, 0.1);
}

.form-check-input:checked {
    background-color: var(--hover-text);
    border-color: var(--hover-text);
}

.forgot-link {
    color: var(--hover-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--hover-text);
    opacity: 0.85;
}

.btn-primary {
    background-color: var(--hover-text);
    border-color: var(--hover-text);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dashed {
    background-color: var(--table-heading-color);
    border-color: var(--hover-text);
    border: 3px dashed var(--hover-text);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.btn-dashed:hover {
    background-color: var(--hover-text);
    border-color: var(--hover-text);
    color: var(--white-text);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.-sm-btn {
    padding: 0.5rem .5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.icon-btn {
    padding: 0.5rem 0.8rem;
    background-color: var(--hover-text);
    color: var(--white-text);
    transition: all 0.3s ease;
}

.-delete {
    /* background-color: #ff3f56; */
    background-color: transparent !important;
    color: #ff3f56;
    border-color: #ff3f56;
    font-size: 24px;
    padding: 1.2px 8px;
}

.-delete:hover {
    background-color: #ff3f56 !important;
    border-color: #ff3f56;
    color: var(--white-text);
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
}

.signup-text {
    color: var(--gray-text-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.signup-link {
    color: var(--hover-text);
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    color: var(--primary-color);
}

/* SweetAlert2 Custom Styles */
.swal2-popup {
    font-family: 'Poppins', sans-serif;
}

.swal2-input {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 4px;
    font-size: 1.2em !important;
    text-align: center;
}

.swal2-title {
    color: var(--text-color) !important;
}

.swal2-html-container {
    color: var(--gray-text-color) !important;
}

.otp-input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    color: #495057;
}

/* .full-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffffad;
    backdrop-filter: blur(5px);
}

.full-overlay img {
    width: 12%;
    animation: logo-load 0.5s linear infinite alternate;
}

@keyframes logo-load {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(0.90);
    }
} */
.full-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.7); */
    /* background: var(--primary-color); */
    /* Slightly transparent white */
    /* backdrop-filter: blur(5px); */
    /* Keep the blur effect */
}

.full-overlay::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid var(--hover-text);
    /* Blue color, adjustable */
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* tabel style */
.table-section,
.user-details-section {
    margin-top: 60px;
}

.sm-title {
    font-weight: 600;
    /* color: var(--primary-color); */
}

.sm-gray-text {
    font-size: 16px;
    color: var(--gray-text-color);
}

.fw-400 {
    font-weight: 400;
}

.border-primary-2 {
    border: 2px solid var(--primary-color);
}

.inst-border-bottom {
    border-bottom: 4px solid var(--primary-color) !important;
}

.table-section .table thead {
    background-color: var(--table-heading-color);
}

.table-section .table th {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    padding: 25px 8px;
    border: 0;
    border-top: var(--table-border);
    border-bottom: var(--table-border) !important;
    vertical-align: middle;
}

.its-table-body {
    background-color: var(--sidebar-bg)
}

.table-section .its-table th:first-child,
.table-section .its-table td:first-child {
    /* border-radius: 10px 0 0 10px; */
    border-left: var(--table-border);
}

.table-section .its-table th:last-child,
.table-section .its-table td:last-child {
    /* border-radius: 10px 0 0 10px; */
    border-right: var(--table-border);
}

.table-section .its-table th,
.table-section .its-table td {
    background: transparent;
    border: 0;
    border-top: var(--table-border);
    border-bottom: var(--table-border) !important;
    vertical-align: middle;
}

.status {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

.status.pending {
    color: #fd8b02 !important;
    background: rgba(253, 139, 2, 0.1);
    border: 2px solid #fd8b02 !important;
}

.status.in-progress {
    color: #0578fa !important;
    background: rgba(5, 120, 250, 0.1);
    border: 2px solid #0578fa !important;
}

.status.completed {
    color: #02baab !important;
    background: rgba(2, 186, 171, 0.1);
    border: 2px solid #02baab !important;
}

.status.delivered {
    color: #4caf50 !important;
    /* Green shade for delivered */
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50 !important;
}

.status.archive {
    color: #e84343 !important;
    /* Red shade for archived */
    background: rgba(232, 67, 67, 0.1);
    /* Lighter red background */
    border: 2px solid #e84343 !important;
}

/* pagination style */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-ul .page-item .page-link {
    color: var(--hover-text);
}

.pagination-ul .active>.page-link,
.page-link.active {
    background-color: var(--hover-text);
    border-color: var(--hover-text);
    color: var(--white-text);
}

.search-icon-container {
    background-color: var(--white-text);
    border: none;

}

.notification-msg {
    max-width: 200px;
}

.service-card-wrapper {
    flex: 0 0 auto;
    width: 16.66666667%;
    margin-bottom: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Evenly distributes space between elements */
    height: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    border: none !important;
}

.card-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    /* Ensure the card block stretches to fill the available space */
}

.service-card-info {
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s;
}

.bg-c-total {
    background: linear-gradient(45deg, #7b1fa2, #ae52d4);
}

.bg-c-pending {
    background: linear-gradient(45deg, #fd8b02, #feb546);
}

.bg-c-in-progress {
    background: linear-gradient(45deg, #0578fa, #73aefc);
}

.bg-c-completed {
    background: linear-gradient(45deg, #02baab, #56e7d3);
}

.bg-c-delivered {
    background: linear-gradient(45deg, #4caf50, #81c784);
}

.bg-c-archive {
    background: linear-gradient(45deg, #e84343, #f58b8b);
}

.service-count {
    font-weight: 600;
    font-size: 34px;
}

.service-icon {
    font-size: 28px;
}

/* Media Queries */
@media (max-width:1500px) {
    .service-card-wrapper {
        width: 25%;
    }
}

@media (max-width:1140px) {
    .service-card-wrapper {
        width: 33.333333%;
    }
}

@media (max-width: 992px) {
    .sidebar {
        left: -250px;
    }

    .sidebar.collapsed {
        left: 0;
    }

    .content {
        margin-left: 0;
    }

    .service-card-wrapper {
        width: 50%;
    }

}

@media (max-width: 576px) {
    .form-container {
        padding: 1.5rem;
    }

    .service-card-wrapper {
        width: 100%;
    }
}

.slider-img {
    width: 250px;
    height: auto;
}

/* rhm */
.dashboard-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.leaflet-popup-content-wrapper {
    background-color: var(--body-color) !important;
}

.rhm-card {
    text-align: center;
}

.rhm-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 10px 0 !important;
}

.rhm-image {
    border-radius: 50%;
    object-fit: cover;
    width: 150px;
    height: 150px;
}

.rhm-info {
    font-size: 16px;
    color: var(--text-color);
    margin: 0px 0 !important;
}

.sm-bold {
    font-weight: 600;
}

.bpm-card {
    display: inline-block;
    text-align: center;
    margin: 5px;
}

.bpm-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 10px; */
    /* Adds spacing between items */
}

.hidden-bpm-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.show-more-btn {
    background: none !important;
    padding: 0;
    color: var(--text-color);
    font-size: 16px;
    border: none;
    text-decoration: underline;
}

.bpm-card {
    width: calc(25% - 10px);
    /* Each card takes 25% width minus the gap */
    max-width: 150px;
    /* Prevents excessive stretching */
    text-align: center;
    cursor: pointer;
}

.bpm-name {
    font-size: 12px;
    margin: 10px 0 !important;
    font-size: 14px;
    color: var(--text-color);
     max-width: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bpm-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.bpm-title {
    margin-bottom: 10px !important;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

/* institution list */
.map-data {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.institution-sidebar,
.rhm-info-sidebar {
    position: absolute;
    top: 0;
    /* right: -400px; */
    right: 0;
    width: 360px;
    background: var(--body-color);
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 500;
    /* padding: 15px; */
    border-radius: 10px;
    height: 100%;
    overflow-y: auto;

}
.assigned-bpm-empid{
    word-break: break-all;
}

.rhm-info-sidebar {
    left: 0;
    right: unset;
    width: 300px;
    top: 100px;
    height: auto;
}

.institution-sidebar .sidebar-content,
.rhm-info-sidebar .sidebar-content {
    /* margin-top: 10px; */
    padding: 15px;
}

.l-sidebar,
.institution-sidebar .sidebar-header {
    width: 100%;
}

.l-sidebar .sidebar-header {
    width: 360px;
}

.p-content {
    margin-left: 360px;
}

.map-contetnt {
    margin-left: 360px;
}

.isntitution-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.map-data.h-sidebar .institution-sidebar,
.map-data.h-sidebar .rhm-info-sidebar {
    display: none;
}

.institution-sidebar.active {
    right: 0px;
    /* Slides in */
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    width: 250px;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: var(--menu-hover);
    padding: 15px;
}

.floating-close-btn {
    position: absolute;
    /* Changed to absolute */
    top: 30px;
    /* Adjust top position as needed */
    left: -15px;
    /* Positioned to the left of the sidebar */
    background: var(--menu-hover);
    color: var(--primary-color);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    /* font-size: 20px; */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
    /* Ensure it's above the sidebar */
}

.floating-close-icon {
    font-size: 12px !important;
    transform: rotate(180deg);
    /* Rotate the icon to point left */
    transition: transform 0.3s ease;
    /* Add transition for rotation */
}

.institution-sidebar.active .floating-close-icon {
    transform: rotate(0deg);
    /* Rotate back when sidebar is open */
}


.floating-close-btn:hover {
    background: var(--primary-color);
    color: var(--white-text);
}


.institution-card {
    border: 1px solid #ccc;
    padding: 10px;
    width: 250px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}


.assigned-institution-header {
    font-size: 18px;
}

.assigned-institution-header .assigned-to-bpm-name {
    font-weight: 800;
}

.university-box {
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    /* margin: 20px; */
    border-bottom: 3px solid var(--hover-text);
    position: relative;
}

.university-details {
    color: var(--gray-text-color);
}

.details-row-wrapper {
    display: none;
    margin-top: 20px;
    font-size: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.university-details.expanded .details-row-wrapper {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.expand-toggle {
    position: absolute;
    transition: transform 0.2s;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.expand-toggle-icon {
    color: var(--white-text);
    font-size: 12px;
}

/* .university-details.expanded .expand-toggle-icon {
    transform: rotate(180deg);
} */

/* scrollbar style */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--gray-text-color);

    background-image: -webkit-gradient(linear, 0 0, 0 100%,
            color-stop(.5, rgba(255, 255, 255, 0.699)),
            color-stop(.5, transparent), to(transparent));
}

/* .leaflet-popup {
    width: 400px !important;
} */

.leaflet-popup-content {
    width: 400px !important;
}

/* swuper */
u-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.c-carousel {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.c-carousel__wrapper.swiper {
    margin: 0 48px;
    position: static;
}

.c-carousel__inner-wrapper.swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-carousel img {
    margin: 0 auto;
}

.c-carousel__controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-carousel__button--next,
.c-carousel__button--prev {
    cursor: pointer;
}

.c-carousel__button--prev.swiper-button-disabled,
.c-carousel__button--next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.c-carousel__item.swiper-slide {
    max-width: 300px;
    width: auto;
    flex-shrink: 0;
}

.swiper-pagination {
    margin-top: 20px !important;
}

.bpm-swiper {
    padding: 20px;
}

.swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 0px) !important;
}

/* public */
.public-main {
    display: grid;
    grid-template-columns: 360px auto;
}

/* search */
.search-input {
    display: flex;
}

.i-search-input {
    max-width: 400px;
}

::placeholder {
    color: #757575;
    opacity: 1;
}

.university-wrapper .institution-card {
    width: unset;
}

.search-input,
.state-filter {
    background: #EEEEEE;
    color: #212121;
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 2;
    padding: 0 0 0 10px;
    border: 0;
    outline: none;
    box-shadow: inset 0 -1px 1px -1px #CCCCCC, inset 0 1px 1px -1px #CCCCCC, inset 1px 0 1px -1px #CCCCCC;
}

.state-filter {
    height: 48px;
    width: 100%;
}

.search-submit {
    background: var(--primary-color);
    color: #FFFFFF;
    vertical-align: middle;
    padding: 8px 20px;
    border: 0;
    outline: none;
    cursor: pointer;
}

.search-submit:hover {
    background: var(--hover-text);
}

.search-submit i {
    font-size: 18px;
}

.sticky-header {
    position: sticky;
    top: 0;
    /* Or adjust as needed */
    background-color: white;
    /* Or whatever your header background is */
    z-index: 1;
    /* Ensure it's above other content */
    /* Add any other styling you want for the header */
}

.scrollable-body {
    overflow-y: auto;
    /* Make the body scrollable */
    max-height: calc(100vh - 200px);
    /* Example: Adjust 100px to the header's height + some buffer.  Use calc() to dynamically calculate the height */
    /* Other styling for the body */

}

/* Optional: Style the scrollbar */
.scrollable-body::-webkit-scrollbar {
    width: 8px;
    /* Adjust as needed */
}

.scrollable-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Or transparent */
}

.scrollable-body::-webkit-scrollbar-thumb {
    background: #888;
    /* Or your desired color */
    border-radius: 4px;
    /* Optional: Rounded corners */
}

.scrollable-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Navbar Styles */
.navbar {
    /* background-color: var(--sidebar-bg); */
    padding: 10px 20px;

}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    /* background-color: var(--menu-hover); */
    color: var(--hover-text);
}

.nav-link.active {
    font-weight: 600;
    color: var(--hover-text);
}

.inst-header-img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    margin-right: 15px;
}

.user-info-label {
    font-weight: 600;
}

.user-name {
    font-weight: 600;
    font-size: 24px;
}

.inst-name {
    max-width: 350px;
}

/* Center single slide and remove margin with higher specificity */
.swiper.single-slide .c-carousel__inner-wrapper.swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate3d(0,
            0,
            0) !important;
    /* Reset Swiper's transform */
}

.swiper.single-slide .c-carousel__item.swiper-slide {
    margin-right: 0 !important;
    /* Override Swiper's margin-right */
}

/* Hide navigation when there's only one slide */
.swiper.single-slide .c-carousel__controls {
    display: none;
}

.manage-rhm-image {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    /* Smooth transition */
}

.manage-rhm-image:hover {
    width: 100px;
    cursor: pointer;
    height: 100px;
    width: auto;
}

.th-info {
    font-size: 16px;
    font-weight: 400;

}

@media (max-width: 1560px) {

    .institution-sidebar,
    .rhm-info-sidebar {
        width: 300px;
    }
    
    /*.assigned-bpm-empid{*/
    /*max-width: 170px;*/
    /*}*/
    
    .public-main {
        grid-template-columns: 300px auto;
    }

}

/* 
.location-icon {
    position: relative;
    width: 60px;
    height: 80px;
}


.location-icon .circle {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;

}


.location-icon .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.location-icon .stem {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid var(--primary-color);
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

} */