@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

@font-face {
    font-family: "CarinoSans";
    src: url("fonts/CarinoSansRegular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "CarinoSans";
    src: url("fonts/CarinoSansBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "CarinoSans";
    src: url("fonts/CarinoSansSemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "GothamLight";
    src: url("fonts/GothamLight.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "EinerGrotesk";
    src: url("fonts/EinerGrotesk-Heavy.ttf") format("truetype");
    font-style: bold;
}

:root {
    --background-green-100: #edf4f4;
    --background-green-300: #e1ebec;
    --primary-green: #56b3ae;
    --secondary-blue: #215f96;
    --white: #ffffff;
    --sidebar-bg: #dce8ed;
    --topic-color: #0e2746;
    --card-bg: #fdfeff;
    --success: #00b16c;
    --table-stroke: #87d0c8;
}

* {
    font-family: "Poppins", sans-serif;
}

.font-carino {
    font-family: "CarinoSans" !important;
}

body {
    margin: 0px;
    padding: 0px;

    box-sizing: border-box;
    background: var(--background-green-100) !important;
    color: #edf4f4 !important;
}

.table-user-management-show td:last-child {
    width: 140px;
}

.table td,
.table th {
    border: none !important;
}

.table th {
    color: var(--primary-green) !important;
}

/* major login background */
.background-image-login {
    background-image: url(../resources/images/background-image.png);
    height: 100vh;
    width: 100% !important;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: bottom;
}

/* password-reset */
.password-rest-box {
    width: 369px;
    height: 458px;
    background-color: rgb(33, 95, 150, 0.2);
    border: none;
    border-radius: 23px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3%;
}

.password-rest-box-content {
    width: 338px;
    height: 333px;
    background-color: rgb(33, 95, 150, 0.6);
    border: none;
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Logout-box {
    width: 369px;
    height: 458px;
    background-color: rgb(33, 95, 150, 0.2);
    border: none;
    border-radius: 23px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3%;
}

.Logout-box-content {
    width: 338px;
    height: 333px;
    background-color: rgb(33, 95, 150, 0.6);
    border: none;
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.password-rest-box-content img {
    width: 111px;
    height: 130px;
}

.password-rest-box-content h4 {
    width: 100%;
    text-align: center;
    font-size: 19px;
}

td {
    font-size: 14px;
}

.password-rest-box-content p {
    font-size: 15px;
    font-weight: 400;
}

.password-rest-box button {
    width: 338px;
    height: 53px;
    border: none;
    border-radius: 23px;
    background-color: #56b3ae;
    color: var(--white);
    font-size: 23px;
    font-weight: 200;
}

/* Logout  */

.Logout-box {
    width: 369px;
    height: 458px;
    background-color: rgb(33, 95, 150, 0.2);
    border: none;
    border-radius: 23px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3%;
}

.Logout-box-content {
    width: 338px;
    height: 333px;
    background-color: rgb(33, 95, 150, 0.6);
    border: none;
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Logout-box-content h4 {
    width: 88%;
    text-align: center;
    font-family: "CarinoSans";
    font-weight: bold;
}

.Logout-buttons {
    display: flex;
    flex-direction: row;
    gap: 3%;
}

.Yes-button-logout {
    width: 160px;
    height: 53px;
    border: none;
    border-radius: 23px;
    background-color: #56b3ae;
    color: var(--white);
    font-size: 23px;
    font-weight: 500;
}

.No-button-logout {
    width: 160px;
    height: 53px;
    border: none;
    border-radius: 23px;
    background-color: var(--secondary-blue);
    color: var(--white);
    font-size: 23px;
    font-weight: 500;
}

/* Login */

.login-main-div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    width: 50%;
}

.login-image {
    background-image: url("../resources/images/login-image.png");
    background-size: contain;
    height: 300px;
    width: 274px;
    display: flex;
    justify-content: center;
    align-content: center;
    background-repeat: no-repeat;
    background-position: center;
}

.login-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    padding: 20px;
    align-items: center;
}

.login-form {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.login-text-area {
    display: flex;
    flex-direction: column;
    width: 338px;
    gap: 10px;
}

.login-button {
    display: flex;
    flex-direction: column;
    width: 338px;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.login-button button {
    height: 53px;
    width: 338px;
    border: none;
    border-radius: 23px;
    background-color: #56b3ae;
    color: #dce8ed;
    font-size: 23px;
    font-weight: 600;
}

.login-button p {
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    margin: 0px;
    font-family: "CarinoSans";
}

.login-button a {
    text-decoration: none !important;
}

.login-text-area input {
    background-color: #dce8ed;
    padding: 15px 30px;
    border: 1px solid #707070;
    border-radius: 27px;
}

/* Dashboard  */
select {
    -webkit-appearance: none;
    box-shadow: none;
    border: 1px solid #ccc;
    padding: 5px;
    background-color: white;
    cursor: pointer;
    font-size: 9px !important;
    font-family: "Poppins";
}

select:focus-visible {
    outline: none;
}

.card-bottom-side {
    width: 100%;
    background-color: #f4f8f9;
    border-color: #56b3ae;
    border-width: 1px;
    border-style: solid;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.top-two-side-wrapper {
    display: flex;
    gap: 5%;
}

.card-highline-bottom {
    width: 49%;
    background-color: #f4f8f9;
    border-color: #56b3ae;
    border-width: 1px;
    border-style: solid;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 35px 25px 25px 25px;
    gap: 35px;
    height: fit-content;
}

.card-highline-bottom h4 {
    font-size: 21px;
    font-weight: bold;
    line-height: 16.80000114440918px;
    font-style: normal;
    text-align: left;
    color: #30455c;
}

.highline-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legend {
    border-radius: 2px;
    width: 15px;
    background-color: var(--primary-green);
    height: 4px;
}

.legend-end {
    font-size: small;
}

.legend2 {
    background-color: #0e2746;
}

.Table-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 30px;
    gap: 10px;
    height: 190px;
}

.Table-card table tr td {
    font-family: "GothamLight";
    padding: 2px 0;
}

.Table-card table tr th {
    padding-bottom: 12px;
}

.dropdown-bottom-card {
    width: 210px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
}

.filter-bottom-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20%;
}

.user-management-heading {
    font-size: 19px;
    font-weight: bold;
}

.translate {
    transform: translateX(-10px);
}

.user-management-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cursor-pointer {
    cursor: pointer;
}

.gender-age {
    font-size: 14px;
    color: #215f96;
    font-weight: 600 !important;
}

.filter-bottom-card select {
    border: none;
    background-color: #f4f8f9;
    font-size: 13px;
}

.card-top-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content {
    color: #043856;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-left: 7%;
    margin-bottom: 3%;
    margin-top: 7%;
}
.content-gap section {
    padding: 40px 0px;
}

.gap-20 {
    gap: 20px;
}

.dashboard-row {
    display: flex;
    flex-direction: row;
    gap: 4%;
}

.Dashboard-heading {
    font-weight: 800;
    text-align: left;
    margin-bottom: 0px !important;
    font-family: "CarinoSans";
    font-size: 20px;
}

.dashboard-top-card {
    display: flex;
    flex-direction: row;
    gap: 3%;
    height: inherit;
}

.Table-card td {
    font-weight: 400;
    font-size: 11px;
    overflow: auto;
}

.Table-card th {
    font-weight: 700;
    color: #56b3ae;
    font-size: 12px;
    min-width: 75px;
}

.card-top {
    background-color: #f4f8f9;
    width: 24%;
    border-color: #56b3ae;
    border-width: 1px;
    border-style: solid;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 165px;
}

.card-top hr {
    border: none;
    border-top: 0.5px solid var(--primary-green) !important;
    width: 100%;
    opacity: 1;
}

.heading-top-card {
    font-size: 19px;
    font-weight: 600;
    line-height: 11px;
    text-align: center;
    color: #215f96;
}

.heading-top-card h5 {
    margin-bottom: 0%;
    font-weight: 600;
    font-size: 19px;
}

.filter-top-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 17%;
}

.highline-content select {
    border: none;
    background-color: #f4f8f9;
    font-size: 13px;
}

.filter-top-card select {
    border: none;
    background-color: #f4f8f9;
    font-size: 13px;
}

.value-top-card {
    font-size: 33px !important;
    font-weight: normal;
    line-height: 47px;
    font-style: normal;
    text-align: center;
    color: #0e2746;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-top-card p {
    margin: 0px;
    font-weight: 600;
}

.value-top-card a {
    font-weight: 600;
    text-decoration-skip-ink: none;
    text-underline-offset: 4px;
}

.Card-bottom {
    display: flex;
    flex-direction: row;
    gap: 3%;
}

.highline {
    width: 47.5%;
    background-color: #0e2746;
}

.top-two-side {
    display: flex;
    flex-direction: row;
    gap: 11%;
}

.Total-class {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24%;
}

.card-bottom-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Total-class h3 {
    margin: 0px;
    font-weight: 700;
    font-size: 20px;
}

.Total-class p {
    margin: 0px;
}

.content-gap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-bottom {
    background-color: #f4f8f9;
    width: 100%;
    justify-content: flex-start;
    border-color: #56b3ae;
    border-width: 1px;
    border-style: solid;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 20px 0px;
}

.card-bottom hr {
    color: #56b3ae;
    height: 1px;
}

.side-card {
    display: flex;
    flex-direction: column;
    gap: 5%;
    width: 48%;
}

.value-top-card table {
    border-collapse: collapse;
    width: 80%;
    height: 0%;
}

.value-top-card td:nth-child(2) {
    padding-left: 20%;
    font-size: 12px;
    line-height: 1.8;
}

.value-top-card td:nth-child(1) {
    padding-left: 10%;
    font-size: 12px;
    line-height: 1.8;
}

.value-top-card td {
    text-align: left;
    font-size: 12px;
    line-height: 1.8;
    width: 500px;
    padding: 8px 0;
}

.vtc-table td {
    padding: 2px 0;
}

.view-more-card {
    line-height: 1.8;
    font-size: 12px;
    font-family: "CarinoSans";
    height: 10px;
    color: #56b3ae;
    font-weight: 600;
    text-decoration: underline;
}

/* Layout CSS Starts*/
.container-large {
    width: 95%;
    margin: 0 auto;
}

.search {
    background-color: var(--background-green-300);
    border-radius: 19px;
    font-weight: 700;
    font-size: 17px;
    margin-left: 3%;
    color: #043856 !important;
    width: 95%;
    border: none;
}

.top-nav {
    position: fixed;
    width: 96%;
    background-color: var(--background-green-100);
    padding: 10px;
    z-index: 1;
}

.sidebar {
    display: flex;
    border-radius: 27px;
    background-color: var(--sidebar-bg);
    box-shadow: RGBA(0, 0, 0, 0.16);
    height: 80vh;
    justify-content: space-around;
    align-items: center;
    padding: 16px;
    margin-left: 0.5%;
    width: 56px;
    top: 11%;
    position: fixed;
    z-index: 100;
}

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

.font-sans {
    font-family: car;
}

.topic {
    font-size: 20px;
    font-weight: bold;
    color: var(--topic-color);
    margin-bottom: 30px;
}

/* Layout CSS Ends*/

.modal-body {
    padding: 0px !important;
}

.modal-body h4 {
    color: #56b3ae;
    font-size: 23px;
    font-weight: 600;
}

.modal-body h5 {
    color: #0e2746;
    font-size: 20px;
    font-weight: 700;
}

h4.modal-title {
    font-family: "CarinoSans";
    font-weight: 700;
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.modal-content {
    width: 80% !important;
    height: fit-content !important;
    border-radius: 27px !important;
}

.modal-content-inside {
    display: flex;
    flex-direction: column;
}

.modalcontent-inside {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 5px 10px;
    justify-content: center;
}

.modal-content-blue {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px !important;
}

.modal.show .modal-dialog {
    justify-content: center;
    transition: none;
}

.modal-blue-content {
    background-color: #0e2746;
    color: white;
    padding: 20px 25px;
    border: none;
    border-radius: 20px;
    height: fit-content;
    display: flex;
    gap: 10%;
    font-family: "Poppins";
}

.modal-blue-content h5:nth-child(2) {
    color: #dce8ed;
    font-size: 17px;
    font-weight: 700;
}

.modal-blue-content h5:nth-child(1) {
    color: #56b3ae;
    font-size: 16px;
    font-weight: 700;
}

.modal-blue-content button {
    color: #edf0f1;
    padding: 10px;
    border: none;
    border-radius: 27px;
    background: #cb0037;
}

.modal-blue-content img,
.modal-white-content img {
    object-fit: contain;
    border-radius: 18px;
    width: 140px !important;
}

.modal-content p {
    font-size: 15px !important;
    font-weight: 500;
    color: #0e2746;
    margin-bottom: 0px !important;
}

.modal-white-content {
    background-color: #dce8ed;
    padding: 23px 25px;
    border: none;
    border-radius: 20px;
    height: fit-content;
    display: flex;
    gap: 10%;
}

.modal-white-content h5:nth-child(2) {
    color: #215f96;
    font-size: 17px;
    font-weight: 700;
}

.modal-white-content h5:nth-child(1) {
    color: #56b3ae;
    font-size: 16px;
    font-weight: 700;
}

.modal-white-content p {
    font-size: #0e2746;
    font-size: 13px !important;
    text-align: left;
}

.modal-content p {
    font-weight: 500;
    color: #0e2746;
    margin-bottom: 0px !important;
}

.two-content-inside-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#exampleModal h5 {
    font-size: 20px;
}

/* Incident Category Management start*/
.incident-line {
    display: none;
}

.card-template {
    border-radius: 27px;
    border: 1px solid var(--primary-green);
    padding: 25px 40px !important;
    background-color: var(--card-bg);
    height: fit-content;
    max-height: 573px;
    overflow: auto;
}

.card-topic {
    font-family: Poppins;
}

.breadcrumbs {
    margin: 7px 0 0 0;
    background-color: var(--secondary-blue) !important;
    border-radius: 27px;
    padding: 8px 20px;
    color: var(--background-green-100);
}

.cross {
    margin-left: 12px;
}

.category-topic {
    color: var(--primary-green);
    font-size: 25px;
}

.placeholder-text {
    background-color: var(--sidebar-bg) !important;
    padding: 12px 25px;
    border-radius: 27px;
    border: none;
    color: var(--topic-color);
    margin-bottom: 15px;
}

.save-button {
    font-size: 23px;
    font-weight: bold;
    background-color: var(--primary-green) !important;
    text-align: center;
    display: flex;
    color: var(--background-green-100) !important;
    border-radius: 27px;
    justify-content: center;
    padding: 10px 42px;
    cursor: pointer;
    font-family: "CarinoSans";
    border: none;
}

.save-button a {
    color: var(--background-green-100) !important;
}

.save-button:hover {
    background-color: #57a5a2 !important;
}

.radio {
    color: var(--topic-color) !important;
}

/* Incident Category Management end*/

/*  INSURANCE MGMT start*/
.table th {
    color: var(--primary-green);
    font-weight: 700;
    border-bottom: 1.5px solid var(--primary-green);
    padding-bottom: 10px;
    padding-top: 10px;
}

.table-right h3 {
    font-size: 25px;
}

.insurance-dropdown {
    background-color: var(--primary-green) !important;
    transform: translateX(100%) !important;
    width: 50px !important;
}

.insurance-dropdown .dropdown-item {
    color: var(--background-green-100);
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #2d7470 !important;
    color: var(--background-green-100) !important;
}

.table {
    text-align: center;
}

.table-row {
    padding: 10px 0;
    border-top: 1px solid var(--table-stroke);
}

.upload-image {
    background-image: url("images/logo-try.jpeg");
    height: 263px;
    background-size: cover;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch.mini {
    margin-left: 10px;
}

.text-green {
    color: var(--primary-green);
}

.text-blue {
    color: var(--secondary-blue) !important;
}

.bg-green {
    background-color: var(--primary-green) !important;
}

.add {
    background-color: var(--primary-green);
    padding: 10px 17px;
    border-radius: 50%;
    cursor: pointer;
}

.add:hover {
    background-color: #57a5a2 !important;
}

.edit-button {
    font-weight: normal;
    font-size: 14px;
    padding: 10px 14px;
    background-color: var(--primary-green);
    border-radius: 14px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Layout CSS Ends*/

/* User Management  */
.hidden_row tr td:first-child {
    color: #0d6efd;
}

.User-management-table {
    width: 100%;
    max-height: 100%;
    background-color: #fdfeff !important;
    padding: 30px 40px;
    border: var(--primary-green) 1px solid;
    border-radius: 27px;
    overflow: auto;
}

.group-program-table {
    width: 100%;
    max-height: 70vh;
    background-color: #fdfeff !important;
    padding: 30px 40px;
    border: var(--primary-green) 1px solid;
    border-radius: 27px;
    overflow: auto;
}

.user-management-outer-table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.user-management-outer-table th {
    color: #56b3ae;
    width: inherit;
}

.user-management-outer-table td {
    width: fit-content;
}

.user-management-outer-table th,
.user-management-outer-table td {
    border: none;
    padding: 12px;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: var(--success);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--success);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

td {
    vertical-align: middle;
}

.table-left {
    width: 60%;
}

/*  INSURANCE MGMT end*/

/* Vehicle management start */
.total-card {
    background-color: var(--sidebar-bg);
    border-radius: 15px 0px 0px 15px;
    padding: 13px 30px;
    width: 130px;
}

.font-blue {
    color: var(--secondary-blue) !important;
}

.vehicle-dropdown select {
    border: none;
    background-color: var(--sidebar-bg);
    font-size: 13px;
}

.total-card-left {
    border-right: 0.5px solid var(--primary-green);
    width: max-content;
}

.total {
    width: 400px;
}

.text-sm {
    font-size: 12px;
}

.total-card-right {
    background-color: var(--sidebar-bg);
    border-radius: 0px 15px 15px 0px;
    padding: 30px;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Vehicle management end */

/* Complete incident category mgmt start*/
a {
    text-decoration: none;
}

input:focus-visible {
    outline: 1px solid var(--primary-green) !important;
}

textarea:focus-visible {
    outline: 1px solid var(--primary-green) !important;
}

/* Complete incident category mgmt end*/

/* Charity management start */
.charity-button {
    font-size: 15px;
    padding: 5px 35px;
    font-weight: bold;
}

.charity-table tr td:first-child {
    color: #0d6efd;
}

a {
    text-decoration: none !important;
}

.modal-content {
    top: 20%;
    border-radius: 27px;
    border: 1px solid var(--primary-green) !important;
}

.charity-left {
    border-right: 1px solid var(--table-stroke);
}

.charity-top {
    border-bottom: 0.5px solid var(--primary-green);
}

.charity-top p {
    font-size: 15px !important;
}

.charity-card {
    background-color: var(--sidebar-bg);
    border-radius: 15px;
    padding-inline: 10px;
    font-size: 15px;
}

.charity-modal {
    width: 400px !important;
    border-radius: 27px !important;
}

.modal-header {
    border: none !important;
}

/* Charity management end*/

/* Help page starts */
.accordion-flush {
    width: 100%;
}

.faq {
    padding: 20px !important;
}

.accordion-button {
    font-size: 19px;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: white !important;
    color: var(--primary-green);
    box-shadow: none;
}

.accordion-card {
    padding: 20px 10px !important;
}

/* Help page end */

/* broadcast start */
.broadcast-card {
    display: flex;
    padding: 100px 50px !important;
    gap: 60px;
    justify-content: center;
}

.broadcast-card select {
    font-size: 16px !important;
    color: #0e2746 !important;
}

textarea {
    resize: none !important;
}

/* broadcast end */

/* static content */
.static-topic {
    position: sticky;
    top: -26px;
    background-color: white;
    padding-block: 1rem;
}

.static-popup {
    height: 400px;
}

/* INBOX  */
.contact-table {
    padding: 20px 0px;
    border-bottom: 0.5px solid rgba(135, 208, 200, 0.5);
}

.contact-table :hover {
    cursor: pointer;
}

/* Responsive */
@media only screen and (max-width: 1400px) {
    .table-left {
        width: 100%;
    }
}

/* Mobile View  */

@media only screen and (max-width: 768px) {
    .content {
        align-items: center;
    }

    /* login responsive */
    .login-button button {
        height: 2% !important;
    }

    .tooltip {
        display: none !important;
    }

    .login-main-div {
        flex-direction: column !important;
        justify-content: center;
    }

    .login-image {
        height: 150px;
        width: 137px;
    }

    .login-button button {
        height: 70px !important;
        border: none;
        border-radius: 23px;
        background-color: #56b3ae;
        color: #dce8ed;
        font-size: 23px;
        font-weight: 600;
    }

    .filter-bottom-card {
        gap: 1% !important;
    }

    .sidebar {
        display: flex !important;
        flex-direction: row !important;
        width: 95% !important;
        top: 8% !important;
        position: fixed;
        height: fit-content !important;
        gap: 2rem;
        overflow: scroll;
        padding: 16px 0;
    }

    .broadcast-card {
        gap: 0px;
    }

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

    .search {
        width: 84% !important;
    }

    .content-gap {
        width: 95% !important;
    }

    /* User Management */
    .User-management-table {
        padding-right: 20px;
        padding-left: 20px;
        overflow: scroll;
        width: 100%;
    }
    .group-program-table {
        padding-right: 20px;
        padding-left: 20px;
        overflow: scroll;
        width: 100%;
    }

    .modal-blue-content {
        flex-direction: column;
        align-items: center;
    }

    .modal-white-content {
        flex-direction: column;
        align-items: center;
    }

    /* Dashboard */
    .side-card {
        width: 100% !important;
        gap: 13%;
    }

    .top-two-side {
        flex-direction: column;
        width: 100%;
        gap: 10% !important;
    }

    .card-highline-bottom {
        width: 100% !important;
    }

    .card-bottom-side {
        width: 100% !important;
    }

    .Card-bottom {
        flex-direction: column;
        width: 98%;
        height: 150px;
        gap: 25%;
    }

    .content {
        flex-direction: column;
        margin-left: 0;
        margin-top: 12rem;
    }

    .dashboard-top-card {
        flex-wrap: wrap;
        gap: 20px;
    }

    .card-top {
        width: 98%;
        padding: 10px;
        gap: 3%;
    }

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

    /* Logout  */
    .Logout-box {
        width: 85%;
        height: 45%;
        padding: 20px;
    }

    .Logout-box-content {
        width: 100%;
        height: 75%;
        padding: 10px;
        color: var(--white) !important;
    }

    .Logout-box-content img {
        width: 70px;
        height: 90px;
    }

    .Logout-box-content h4 {
        width: 100%;
    }

    .Yes-button-logout {
        width: 140px;
        height: 53px;
        font-size: 20px;
    }

    .No-button-logout {
        width: 140px;
        height: 53px;
        font-size: 20px;
    }

    /* Forgot password */
    .font-einer {
        font-family: "EinerGrotesk" !important;
    }

    .password-rest-box {
        width: 85%;
        height: 45%;
        padding: 20px;
    }

    .password-rest-box-content {
        width: 100%;
        height: 75%;
        padding: 10px;
        background-color: rgb(33, 95, 150, 0.8);
    }

    .password-rest-box-content img {
        width: 70px;
        height: 90px;
    }

    .password-rest-box button {
        width: 297px;
    }

    .password-rest-box-content h4 {
        margin: 5px;
        width: 100%;
    }

    /* Login */
    .login-main-div {
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
    }

    .login-button button {
        height: 70px !important;
        width: 400px;
        font-size: 26px;
    }

    .login-text-area input,
    .login-button button {
        height: 60px !important;
        width: 350px;
        font-size: medium;
    }

    .login-button p {
        font-size: medium;
    }

    .login-text-area {
        align-items: center;
    }

    /* FAQ page */
    .faq-form {
        margin-top: 2rem;
    }

    /* incident responsive */
    .incident-line {
        display: block;
    }
}

@media only screen and (max-width: 1500px) {
    .card-highline-bottom {
        width: 49%;
    }

    .top-two-side {
        gap: 12%;
    }

    .side-card {
        width: 49%;
    }

    .card-bottom-side {
        width: 100%;
    }

    .dashboard-top-card {
        width: 100%;
    }

    .top-two-side-wrapper {
        display: flex;
        gap: 6%;
    }
}

/* tooltip css */
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: white;
    border-radius: 4px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.tooltip {
    visibility: hidden;
    background-color: #464646;
    color: #fff;
    border-radius: 7px;
    padding: 5px 10px;
    position: absolute;
    z-index: 999;
    top: 60%;
    left: 105%;
    margin-top: -20px;
    opacity: 0;
    transition: opacity 0.3s;
    width: max-content;
}

.tooltip-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-height: 700px) {
    .tooltip-container:hover .tooltip {
        visibility: hidden;
    }

    .sidebar {
        overflow: scroll;
    }
}

/* Css for toster message  */
/* Add this to your common CSS file */
.toast.toast-success {
    background-color: #51a351 !important;
}

.toast.toast-error {
    background-color: #bd362f !important;
}

.toast.toast-info {
    background-color: #2f96b4 !important;
}

.toast.toast-warning {
    background-color: #f89406 !important;
}

.dataTables_wrapper {
    overflow: auto;
}

.dataTables_wrapper::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.dataTables_wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

.dataTables_wrapper::-webkit-scrollbar-thumb {
    background: #56b3ae;
}

@media screen and (max-width: 769px) {
    .dataTables_wrapper .dataTables_info {
        float: unset !important;
    }
    .dataTables_wrapper .dataTables_paginate {
        float: unset !important;
    }
}

@media screen and (max-width: 769px) {
    .sidebar {
        width: 100% !important;
        padding: 16px 0;
        position: static;
    }
}


.custom-table-ui tbody tr span{
    border:1px solid #00B16C;
                    border-radius: 24px;
                    color: #043856;
                    padding: 6px 17px;
}

.goodSam_tableWrap table.table.table-bordered {
    border: none;
}
.goodSam_tableWrap table.table.table-bordered thead tr{
    border:none;
    border-bottom: 1px solid rgba(135, 208, 200, 0.353) !important;
}
.goodSam_tableWrap table.table.table-bordered thead tr th{
    padding:20px;
}
.goodSam_tableWrap table.table.table-bordered tbody tr
{
    border-color:rgba(135, 208, 200, 0.353)!important;
}
.goodSam_tableWrap table.table.table-bordered tbody tr:first-child{
    border-top:none;
}
.goodSam_tableWrap table.table.table-bordered tbody tr:last-child{
    border-bottom:none
}

.goodSam_tableWrap .hidden_row table thead th{
    padding-top:0!important;
}
.goodSam_tableWrap .hidden_row table tbody td{
    padding-top:10px!important;
    color: #043856;
}
.goodSam_tableWrap .hidden_row td{
    padding-top:0
}