@font-face {
  font-family: "Sling-regular";
  src: url("../fonts/Sling.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sling-bold";
  src: url("../fonts/SlingBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sling-light";
  src: url("../fonts/SlingLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  scroll-behavior: smooth;
  --brand-100: #f4ebff;
  --brand-800: #53389e;
  --brand-25: #fcfaff;
  --color-bg-fill-brand-default: #6941c6;
  --color-text-brand: #6941c6;
  --color-text-success: #05603a;
  --color-text-grey-tertiary: #98a2b3;
  --color-text-grey: #101828;
  --color-text-special: #475467;
  --color-text-grey-secondary: #667085;
  --color-text-on-bg-fill: #fff;
  --color-bg-fill-default: #fff;
  --color-text-critical: #d92d20;
  --color-bg-fill-yellow: #f5b342;
  --color-text-yellow: #e6a440;
  --color-text-violet: #8E24AA;
  --color-text-blue: #1976D2;
  --color-bg-fill-blue: #8dbceb;
  --colorbg-fill-violet: #6d87c7;
  --color-bg-fill-brand-disabled: #f4ebff;
  --color-border-secondary: #d0d5dd;
  --color-bg-fill-brand-hover: #53389e;
  --color-bg-fill-brand-tertiary: #e9d7fe;
  --color-bg-fill-light-blue: #8CC1E9;
  --color-bg-fill-light-info: #92c6cd;
  --color-bg-fill-secondary: #eaecf0;
  --color-bg-fill-special-grey: #eaecf0;
  --color-bg-fill-critical-tertiary: #fecdca;
  --color-bg-fill-renewalCompleted: #FBC640;
  --color-bg-fill-cancelled: #D3D3D3;
  --color-bg-fill-expired: #78909C;
  --color-bg-fill-renewalCompleted-secondary: #FFA362;
  --color-bg-fill-boundUpcoming: #800080;
  --color-bg-fill-boundUpcoming-secondary: #800080;

  --color-bg-fill-special-indigo: #c7d7fe;
  --color-bg-fill-special-yellow: #fedf89;
  --color-bg-fill-grey-secondary-hover: #f2f4f7;
  --color-brand-text-secondary: #b692f6;
  --color-bg-fill-grey-tertiary: #eaecf0;
  --color-text-on-bg-fill-inverse: #101828;
  --color-border-grey-pressed: #98a2b3;
  --color-border-grey-disabled: #d0d5dd;
  --color-bg-fill-grey-default: #475467;
  --color-bg-fill-grey-secondary-pressed: #eaecf0;
  --color-border-critical: #fda29b;
  --color-bg-fill-secondary-default: #fff;
  --color-bg-fill-grey-hover: #344054;
  --color-bg-fill-grey-pressed: #1d2939;
  --color-bg-fill-tertiary: #f9fafb;
  --color-bg-fill-success-tertiary: #a6f4c5;
  --color-bg-fill-upcoming-cancellation-tertiary: #008000;
  --color-bg-fill-success-default: #039855;
  --color-bg-fill-critical-default: #d92d20;
  --color-border-brand: #d6bbfb;
  --color-text-critical: #d92d20;
  --color-text-success-secondary: #039855;
  --color-text-critical-secondary: #f04438;
  --color-border-critical-hover: #f97066;
  --color-bg-fill-critical-secondary-hover: #fee4e2;
  --color-border-critical-pressed: #f97066;
  --color-bg-fill-critical-secondary-pressed: #fecdca;
  --grey-0: #fff;
  --grey-25: #fcfcfd;
  --gray-100: #f2f4f7;
  --grey-200: #eaecf0;
  --grey-400: #98a2b3;
  --grey-500: #667085;
  --grey-600: #475467;
  --grey-700: #344054;
  --grey-800: #1d2939;
  --grey-900: #101828;
  --color-text-grey-active: #000;
  --color-bg-fill-hover: rgba(249, 250, 251, 1);
  --color-border-grey: #d0d5dd;
  --color-border-default: #eaecf0;
  --color-border-grey-hover: #98a2b3;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-rounded: 999px;
  --sizing-4: 8px;
  --spacing-1: 4px;
  --color-border-input-error: #d92d20;
  --color-bg-fill-critical: #fef3f2;
  --4: 4;
  --border-radius-xl: 16px;
  --header-nav-bg-color: #340E46;
  --hot-pink-fill: #df3585;
  --hot-pink-light: #edadcb;
  --hot-pink-hover: #fff1f8;
  --purple-fill: #311044;
  --purple-hover:
}

body {
  background: var(--grey-25);
}

body::-webkit-scrollbar {
  /* display: none; */
}

hr {
  border-bottom: 1px solid var(--color-border-default);
  margin: 20px 0;
}

.pointer {
  cursor: pointer;
}

.mr-10 {
  margin-right: 10px;
}

.mr-8 {
  margin-right: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.form-select {
  color: var(--color-text-grey-active);
  font-family: Inter;
  border-radius: var(--border-radius-sm);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.1rem #7f56d9 !important;
  transition: none;
}

.form-control:not(.is-invalid):focus {
  box-shadow: 0 0 0 0.1rem #7f56d9 !important;
  /* Red box shadow for valid input on focus */
  transition: none;
  /* Remove transition for immediate effect */
}

/* .form-control.is-invalid {
    border-color: red !important;
    box-shadow: 0 0 0 0.1rem red !important;
    color: red;
    background-image: none !important;
} */
.MuiOutlinedInput-input .is-invalid:focus {
  color: red !important;
  border-color: red !important;
  box-shadow: 0 0 0 0.1rem red !important;
  outline: none !important;
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 0.1rem red !important;
  /* Red box shadow for invalid input on focus */
  transition: none;
  /* Remove transition for immediate effect */
}

.Select__control--is-focused {
  border-color: #7f56d9;
  /* Change the border color when focused */
  box-shadow: none;
  /* Remove the default box shadow on focus */
}

/* .is-invalid {
  box-shadow: 0 0 0 0.1rem red !important;
  transition: none;
    } */
/* .form-control.is-invalid,
.is-invalid:focus {
    box-shadow: 0 0 0 0.1rem red;
    transition: none;
} */
.form-control.is-invalid {
  padding-right: 0 !important;

  background-image: none !important;

}

/* width */
.custom-scroll::-webkit-scrollbar {
  width: 16px;
}

/* Track */
.custom-scroll::-webkit-scrollbar-track {
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
}

/* Handle */
.custom-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  width: 8px;
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-secondary);
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main,
#main2 {
  margin-top: 60px;
  padding: 32px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {

  #main,
  #main2 {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# button sizes
--------------------------------------------------------------*/

.btn-sm {
  padding: 3px 4px;
}

.btn-md {
  padding: 6px;
}

.btn-lg {
  padding: 8px;
}

.btn-xl {
  padding: 13px;
}

/*--------------------------------------------------------------
# Welcome Page
--------------------------------------------------------------*/

/* .background-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  object-fit: cover;
} */

.bloc-video {
  position: absolute;
  height: calc(100vh);
  width: 100%;
}

.bloc-video video {
  width: 100%;
  object-fit: cover;
  z-index: -1;
  position: absolute;
  height: 100vh;
}

.bloc-video .content-video {
  flex-direction: column;
  color: #ffffff;
  margin-top: 80px;
  font-size: 62px;
}


.welcome {
  /* background: url("../images/welcome-bg.png") no-repeat; */
  height: calc(100vh);
  padding: 10px;
  background-size: 100% 100%;
  z-index: 999;
  position: relative;
  max-height: calc(100vh);
  overflow-y: auto;
}

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

.welcome .violet-logo {
  width: 300px;
}

.welcome .welcome-main-text {
  font-family: "Sling-bold";
  color: var(--brand-25);
  font-size: 72px;
  font-weight: 600;
  line-height: 90px;
}

.welcome .welcome-sub-text {
  font-family: "Sling-regular";
  color: var(--brand-25);
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  width: 470px;
}

.welcome .btn.sign-up {
  border-radius: 4px;
  border: 1px solid var(--brand-100);
  background: var(--brand-100);
  color: var(--purple-800);
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  width: 460px;
}

.welcome .login-text a {
  color: var(--grey-0);
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .welcome {
    background-size: cover;
  }

  .welcome .welcome-main-text {
    font-size: 44px;
  }

  .welcome .welcome-sub-text {
    font-size: 20px;
    width: 100%;
    margin-top: 0px !important;
  }

  .welcome .btn.sign-up {
    width: 90%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .welcome {
    background-size: cover;
  }

  .welcome .welcome-main-text {
    font-size: 60px;
  }

  .welcome .welcome-sub-text {
    font-size: 24px;
    width: 60%;
    margin-top: 10px !important;
  }

  .welcome .btn.sign-up {
    width: 60%;
  }
}

/*--------------------------------------------------------------
# login Page
--------------------------------------------------------------*/
.login .login-left {
  /* background: url("../images/login-bg.png") no-repeat; */
  background-size: 100% 100%;
  height: calc(100vh);
}

.login .login-left img {
  position: relative;
  top: 50px;
}

.login .login-main-text {
  font-family: "Sling-bold";
  color: var(--brand-25);
  font-size: 72px;
  font-weight: 600;
  line-height: 90px;
}

.login .login-sub-text {
  font-family: "Sling-regular";
  color: var(--brand-25);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  width: 512px;
}

.login .login-right {
  height: calc(100vh);
  position: relative;
  background: var(--color-bg-fill-default);
  max-height: calc(100vh - 10px);
  overflow-y: auto;
}

.login .login-right form {
  width: 420px;
}

.login .login-right h3 {
  color: var(--color-text-grey);
  font-family: "Sling-bold";
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
}

.login .login-right form .company-text {
  color: var(--color-text-grey-secondary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.login .login-right form label {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 4px !important;
}

.login .login-right form .form-control {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey);
  background: var(--color-bg-fill-default);
  font-family: Inter;
  color: var(--color-text-grey-active);
  font-size: 16px;
  padding: 10px 14px;
  height: 40px;
  margin-bottom: 20px !important;
}

form .password-div {
  position: relative;
}

.login .login-right form .form-control:focus {
  box-shadow: 0, 0, 0, 0.25rem var(--color-bg-fill-brand-default);
}

.login .login-right form .form-check-input:checked {
  background-color: var(--color-bg-fill-brand-default);
  border-color: var(--color-border-grey);
}

.login .login-right form .form-control::placeholder {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

form .password-div svg {
  position: absolute;
  top: 40px;
  right: 15px;
}

.login .login-right form .btn {
  width: 100%;
  padding: 8px;
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-brand-default);
  border: none;
  color: var(--color-text-on-bg-fill);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.login .login-right form .btn:hover {
  background: var(--color-bg-fill-brand-hover);
}

.login .login-right form .btn.disabled {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-brand-disabled);
  border: none;
}

.login .login-right .login-text a {
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

.login .login-right .login-contact a {
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  position: relative;
  bottom: 20px;
  text-decoration: none;
}

.login .login-right .twoFA .form-control {
  width: 64px;
  height: 64px;
  text-align: center;
  color: var(--color-text-brand);
  font-family: "Sling-bold";
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  border-radius: var(--border-radius-md, 8px);
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
}

.login .login-right .twoFA .form-control::placeholder {
  text-align: center;
  color: var(--color-text-grey-tertiary);
  font-family: "Sling-bold";
  font-size: 48px;
  opacity: 0.3;
}

.login .login-right .twoFA .twoFA-dash {
  font-size: 48px;
  color: var(--color-text-grey-tertiary);
  font-weight: 700;
  bottom: 16px;
  position: relative;
}

.login .login-right .login-contact span {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.login .login-right .reminder-last-text {
  color: var(--grey-600);
  font-family: Inter;
  font-size: 12px;
  position: relative;
  bottom: 25px;
  width: 420px;
}

.login .login-right .reminder-contact-btn {
  border-radius: 4px;
  border: 1px solid var(--brand-100);
  background: var(--brand-100);
  color: var(--brand-800);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  bottom: 20px;
  width: 420px;
}

.login .login-right .contact-modal .contact-modal-dialog {
  width: 400px;
}

.login .login-right .contact-modal .icon-fill,
.icon-fill {
  border-radius: var(--border-radius-rounded, 999px);
  background: var(--color-bg-fill-brand-tertiary, #e9d7fe);
  max-width: fit-content;
  padding: 12px;
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.login .login-right .contact-modal form {
  width: 100%;
}

.login .login-right .contact-modal form h3 {
  font-size: 24px;
}

.login .login-right .contact-modal .modal-subtext {
  color: var(--color-text-grey-secondary);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.login .login-right .contact-modal form .form-control::placeholder {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.login .login-right .contact-modal form textarea.form-control {
  height: auto;
}

.login .login-right .contact-modal form .outline-btn,
.outline-btn {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey);
  background: var(--color-bg-fill-secondary-default);
  color: var(--color-text-on-bg-fill-inverse);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  width: 49%;
}

.login .login-right .contact-modal form .outline-btn:hover,
.outline-btn:hover {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey-hover);
  background: var(--color-bg-fill-grey-secondary-hover, #f2f4f7);
  color: var(--color-text-grey-active);
}

.login .login-right .contact-modal form .outline-btn:active,
.outline-btn:active {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey-pressed);
  background: var(--color-bg-fill-grey-secondary-pressed);
  color: var(--color-text-grey-active);
}

.login .login-right .contact-modal form .btn-fill,
.btn-fill {
  width: 49%;
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-brand-default);
  border: none;
  color: var(--color-text-on-bg-fill);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.login .login-right .contact-modal form .btn-fill:hover,
.btn-fill:hover,
.btn-fill.active {
  background: var(--color-bg-fill-brand-hover);
  color: var(--color-text-on-bg-fill);
}

.login .login-right .contact-modal form .btn-fill.disabled {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-brand-disabled);
  border: none;
}

.login .login-right .form-check-label {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.login .login-right .form-check span {
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}

.login .login-right .terms-conditions .modal-body {
  padding: 80px;
}

.login .login-right .terms-conditions .modal-body::-webkit-scrollbar,
.main .client-dashboard .offcanvas .offcanvas-body::-webkit-scrollbar {
  display: none;
}

.offcanvas-backdrop.show {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.login .login-right .terms-conditions .modal-body .terms-head {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px !important;
}

.login .login-right .terms-conditions .modal-body .terms-body {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px !important;
}

.login .login-right .terms-conditions .modal-body .terms-body ul li {
  list-style-type: disc;
}

.login .login-right .terms-conditions .modal-body .scroll-to-accept {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-brand);
  background: var(--color-bg-fill-secondary-default);
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.login .login-right .terms-conditions .modal-body .disagree-text {
  color: var(--color-text-critical);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
}

/*--------------------------------------------------------------
# session time out
--------------------------------------------------------------*/
.session-time-out {
  background: url("../images/welcome-bg.png") no-repeat;
  height: calc(100vh);
  padding: 10px;
  background-size: 100% 100%;
}

.session-time-out .icon-fill {
  border-radius: var(--border-radius-rounded, 999px);
  background: var(--color-bg-fill-brand-tertiary, #e9d7fe);
  max-width: fit-content;
  padding: 12px;
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.session-time-out form {
  border-radius: 12px;
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
  box-shadow: 7px 17.5px 24.7px -0.7px rgba(187, 187, 187, 0.21),
    4.8px 12px 17px -0.5px rgba(187, 187, 187, 0.19),
    3.2px 7.9px 11.2px -0.4px rgba(187, 187, 187, 0.16),
    1.8px 4.5px 6.4px -0.2px rgba(187, 187, 187, 0.13),
    0.3px 0.8px 1.1px 0px rgba(187, 187, 187, 0.11);
  padding: 24px;
  width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.session-time-out form h3 {
  color: var(--color-text-grey);
  text-align: center;
  font-family: "Sling-bold";
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.session-time-out form .session-text {
  color: var(--color-text-grey-secondary);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.session-time-out form label {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.session-time-out form .form-control {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey);
  background: var(--color-bg-fill-default);
  font-family: Inter;
  color: var(--color-text-grey-active);
  font-size: 16px;
  padding: 10px 14px;
  margin-bottom: 20px !important;
  height: 40px;
}

.session-time-out form .form-control:focus {
  box-shadow: 0, 0, 0, 0.25rem var(--color-bg-fill-brand-default);
}

.session-time-out form .outline-btn {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey);
  background: var(--color-bg-fill-secondary-default);
  color: var(--color-text-on-bg-fill-inverse);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  width: 49%;
}

.session-time-out form .outline-btn:hover {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey-hover);
  background: var(--color-bg-fill-grey-secondary-hover);
  color: var(--color-text-grey-active);
}

.session-time-out form .outline-btn:active {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey-pressed);
  background: var(--color-bg-fill-grey-secondary-pressed);
  color: var(--color-text-grey-active);
}

.session-time-out form .btn-fill {
  width: 49%;
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-brand-default);
  border: none;
  color: var(--color-text-on-bg-fill);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.session-time-out form .btn-fill:hover {
  background: var(--color-bg-fill-brand-hover);
}

.session-time-out form .btn-fill.disabled {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-brand-disabled);
  border: none;
}

/*--------------------------------------------------------------
# signup
--------------------------------------------------------------*/
/*
.signup .login-left {
    position: fixed;
    left: 0;
    width: 50%;
}
.signup .signup-right {
    position: absolute;
    right: 0;
}*/
/*--------------------------------------------------------------
# media for login signup
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .login .login-right h3 {
    font-size: 30px;
  }

  .login .login-main-text {
    font-size: 40px;
  }

  .login .login-sub-text {
    font-size: 20px;
    width: 90%;
  }

  .login .login-right form {
    width: 90%;
  }

  .login .login-right .twoFA .form-control {
    width: 55px;
    height: 55px;
    font-size: 32px;
  }

  .login .login-right .twoFA .form-control::placeholder {
    text-align: center;
    color: var(--color-text-grey-tertiary);
    font-family: "Sling-bold";
    font-size: 30px;
    opacity: 0.3;
  }

  .session-time-out form {
    width: 90%;
  }

  .login .login-right .reminder-last-text,
  .login .login-right .reminder-contact-btn {
    width: 90%;
  }

  .login .login-right .contact-modal .modal-dialog {
    width: 95%;
  }

  .login .login-right .terms-conditions .modal-body {
    padding: 30px;
  }
}

/*@media screen and (min-width: 320px) and (max-width: 767px) {
    .signup .login-left {
        position: relative;
        left: 0;
        width: 100%;
    }
    .signup .signup-right {
        position: relative;
        right: 0;
    }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
    .signup .login-left {
        position: relative;
        left: 0;
        width: 50%;
    }

    .signup .signup-right {
        position: relative;
        right: 0;
    }
}*/

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 32px;
}

.pagetitle h1 {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  text-align: left;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 26px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

header {
  transition: all 0.5s;
  z-index: 1050;
  height: 60px;
  background-color: var(--brand-800) !important;
  padding: 20px;
}

.header.violet-header {
  background: linear-gradient(90deg, rgba(49, 16, 68, 1) 0%, rgba(49, 16, 68, 1) 8%, rgba(223, 53, 133, 1) 21%, rgba(223, 53, 133, 1) 100%);
}

.fixed-top {
  z-index: 1041;
}

@media screen and (max-width: 1300px) {
  .logo img {
    max-height: 25px;
    margin-right: 6px;
  }
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
header .toggle-sidebar-btn {
  font-size: 30px;
  color: #fff;
  top: 2px;
  position: relative;
}

.header-nav ul {
  list-style: none;
}

.header-nav .nav-item {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
  background: var(--header-nav-bg-color);
  display: grid;
  place-items: center;
  margin-right: 8px;
}

.header-nav .nav-item div {
  color: var(--color-text-on-bg-fill);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  position: relative;
  margin-right: 20px;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 210px;
  z-index: 996;
  transition: all 0.3s;
  padding: 12px 0px 12px 12px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  background-color: var(--grey-200);
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {

  #main,
  #main2 {
    margin-left: 210px;
  }
}

@media screen and (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media screen and (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #main2,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  height: 100%;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-item.logout {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-grey-tertiary);
  transition: 0.3s;
  /* padding: 6px 12px; */
  padding: 3px 9px;
}

.sidebar-nav .nav-link svg {
  color: var(--color-text-grey-tertiary);
}

.sidebar-nav .nav-link span {
  padding-left: 10px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.sidebar-nav .nav-link.active {
  background-color: var(--color-bg-fill-default);
  border-radius: 4px 0px 0px 4px;
  /* padding: 6px 12px; */
  padding: 3px 9px;
  /* margin-bottom: 10px;
    margin-top: 10px; */
}

.sidebar-nav .nav-link.active span {
  color: var(--color-text-grey-active);
}

.sidebar-nav .nav-link.active svg {
  color: var(--color-text-grey-active);
}

.sidebar-nav .nav-link:hover {
  border-radius: 4px 0px 0px 4px;
  background: var(--color-bg-fill-hover);
  /* padding: 6px 12px; */
  /* padding: 3px 9px; */
}

/* 
.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
} */

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}

.logout-modal {
  backdrop-filter: blur(3px);
}

.logout-modal .modal-content {
  background: none;
  border: none;
}

.logout-modal .modal-content .modal-header {
  border-bottom: none;
}

.logout-modal .modal-content .btn-close {
  filter: invert(0.5) grayscale(100%) brightness(200%);
  opacity: unset;
}

.logout-modal .modal-content .modal-body {
  border-radius: 12px;
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
  box-shadow: 7px 17.5px 24.7px -0.7px rgba(187, 187, 187, 0.21),
    4.8px 12px 17px -0.5px rgba(187, 187, 187, 0.19),
    3.2px 7.9px 11.2px -0.4px rgba(187, 187, 187, 0.16),
    1.8px 4.5px 6.4px -0.2px rgba(187, 187, 187, 0.13),
    0.3px 0.8px 1.1px 0px rgba(187, 187, 187, 0.11);
}

.logout-modal .modal-content .modal-body .modal-logout-text {
  color: var(--color-text-grey);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}

.logout-modal .modal-body .icon-fill,
.modal-body.renew-modal .icon-fill {
  border-radius: var(--border-radius-rounded);
  background: var(--color-bg-fill-brand-tertiary) !important;
  padding: 12px;
  max-width: fit-content;
  width: 40px;
  height: 40px;
}

.logout-modal .icon-fill svg,
.modal-body.renew-modal .icon-fill svg {
  display: grid;
  place-items: center;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# client policy
--------------------------------------------------------------*/
.main .heading .head-btn {
  text-align: end;
}

/* .search-modal {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
} */

.search-modal .modal-content {
  width: calc(100vw - 50px);
  margin: 0 auto;
}

/* .search-modal .modal-body {
    background: #fff;
    border-radius: 10px;
    overflow-x: hidden;
    margin: 10px 0;
} */

.add-new-client {
  background: none;
  border: none;
}

.add-new-client .modal-header {
  background: none;
  border: none;
}

.add-new-client .modal-header .btn-close {
  filter: invert(0.5) grayscale(100%) brightness(200%);
  opacity: unset;
}

.main .heading .btn.add-policy,
.search-modal .btn.add-policy {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey-disabled);
  background: var(--color-bg-fill-secondary-default);
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.main .heading .btn.add-policy:hover,
.search-modal .btn.add-policy:hover {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey-hover);
  background: var(--color-bg-fill-grey-secondary-hover, #f2f4f7);
  color: var(--color-text-grey-active);
}

.main .heading .btn.add-policy:active,
.search-modal .btn.add-policy:active {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey-pressed);
  background: var(--color-bg-fill-grey-secondary-pressed);
  color: var(--color-text-grey-active);
}

.main .heading .btn.add-client {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-grey-default);
  color: var(--color-text-on-bg-fill);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.main .heading .btn.add-client:hover {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-grey-hover);
}

.main .heading .btn.add-client:active {
  border-radius: var(--border-radius-sm, 4px);
  background: var(--color-bg-fill-grey-pressed);
}

.main .heading .modal .modal-xl {
  --bs-modal-width: calc(100vw - 50px);
}

.main .heading .modal .modal-dialog {
  max-width: 100%;
}

.main .heading .modal .btn-close {
  opacity: 1;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey);
  width: 20px;
  height: 20px;
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y));
}

.main .heading .modal .modal-content {
  height: calc(100vh - 80px);
  margin-top: 60px;
}

.main .heading .modal .modal-header,
.main .heading .modal .modal-body {
  padding: 12px 300px;
}

.main .heading .modal .modal-body .modal-policy-text {
  color: var(--color-text-grey-secondary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.main .heading .modal .modal-body .modal-title {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.main .heading .modal .modal-body .nav-pills {
  width: 100%;
}

.main .heading .modal .modal-body .nav-pills .nav-item {
  width: 20%;
}

.main .heading .modal .modal-body .nav-pills .nav-link {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-default);
  border: 1px solid var(--color-border-default);
  color: var(--color-text-on-bg-fill-inverse);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 2px 8px;
  width: 98%;
}

.main .heading .modal .modal-body .nav-pills .nav-link.active {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-brand-default);
  color: var(--color-text-on-bg-fill);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 2px 8px;
  min-width: 138px;
  width: 98%;
}

.main .heading .modal .modal-body .tab-content .tab-data .client-text,
.create-new-modal .modal-body .tab-pane .client-text {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.main .heading .modal .modal-body .tab-content .tab-data .client-subtext,
.create-new-modal .modal-body .tab-pane .client-subtext {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.main .heading .modal .modal-body .tab-content .tab-data .client-name {
  border-radius: var(--sizing-4);
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
  padding: 8px 8px 8px 55px;
  position: relative;
}

.main .heading .modal .modal-body .tab-content .tab-data .client-name div {
  color: var(--grey-900);
  font-family: Inter;
  line-height: 20px;
}

.main .heading .modal .modal-body .tab-content .tab-data .client-name .client-initials,
.client-initials {
  border-radius: var(--border-radius-sm, 4px) !important;
  background: var(--color-bg-fill-special-indigo) !important;
  color: var(--color-text-special) !important;
  text-align: center !important;
  font-family: Inter !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
  /* position: absolute; */
  /* top: 8px; */
  /* left: 5px; */
  width: 40px !important;
  height: 40px !important;
  display: grid !important;
  place-items: center !important;
}

.main .heading .modal .modal-body .tab-content .tab-data .client-name div:nth-child(2) {
  font-size: 14px;
  font-weight: 600;
}

.main .heading .modal .modal-body .tab-content .tab-data .client-name div:nth-child(3) {
  font-size: 12px;
  font-weight: 400;
}

.main .heading .modal .modal-body .tab-content .tab-data .form-control {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey);
  background: var(--color-bg-fill-default);
  padding: 10px 14px;
}

.main .heading .modal .modal-body .tab-content .tab-data .form-control::placeholder {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.check-status-div {
  border-radius: var(--border-radius-md, 8px);
  border: 1px solid var(--color-border-brand, #d6bbfb);
  background: var(--color-bg-fill-brand, #f9f5ff);
  margin: 0 20px 10px 20px;
}

.check-status-div .main-text {
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.check-status-div .sub-text {
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.check-status-div .btn {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-brand);
  background: var(--color-bg-fill-secondary-default);
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

/* create new */
.create-new-modal {
  --bs-modal-margin: 1.75rem;
}

.create-new-modal .modal-header,
.create-new-modal .modal-body {
  /* padding: 10px 300px; */
  padding: 10px 10%;

}

.create-new-modal .modal-content {
  height: calc(100vh - 80px);
  margin-top: 60px;
}

.create-new-modal .modal-dialog {
  --bs-modal-width: calc(100vw - 50px);
}

.create-new-modal .modal-body .nav-item {
  width: 100%;
  text-align: center;
}

.create-new-modal .modal-body .nav-item .nav-link {
  width: 100%;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
  color: var(--color-text-on-bg-fill-inverse);
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  /* line-height: 18px; */
  line-height: 9px !important;
  padding: 2px 8px;
  text-transform: none !important;
}

.create-new-modal .modal-body .nav-item .nav-link.active {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-brand-default);
  color: var(--color-text-on-bg-fill) !important;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-transform: none !important;
}

.create-new-modal .modal-body .new-client-text {
  color: var(--color-text-grey-secondary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.create-new-modal .modal-body .main-heading {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 20px;
}

.create-new-modal .modal-body .tab-pane .detials,
.detials {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

/* .create-new-modal .modal-body .tab-pane .form-control {
    border-radius: var(--border-radius-sm) !important;
    border: 1px solid var(--color-border-grey) !important;
    background: var(--color-bg-fill-default);
    color: var(--color-text-grey-active);
    font-family: Inter;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 20px;
    height: 40px !important;
    padding-left: 15px !important;
} */

.create-new-modal .modal-body .tab-pane .form-control::placeholder {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.create-new-modal .modal-body .tab-pane .add-btn {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-brand);
  background: var(--color-bg-fill-secondary-default);
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  width: 100%;
}

.toggle .switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  padding: 2px;
}

/* Hide default HTML checkbox */
.toggle .switch input {
  display: none;
}

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

.toggle .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle input:checked+.slider {
  background-color: var(--brand-800);
  content: attr(data-on);
}

.toggle input:focus+.slider {
  box-shadow: 0 0 1px #2196f3;
}

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

.toggle span {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 45px;
  position: relative;
  bottom: 6px;
}

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

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

/* .main .client-dashboard .dashboard-content {
  max-height: 200px;
  overflow-y: auto;
} */

.main .client-dashboard .dashboard-content::-webkit-scrollbar {
  display: none;
}

.main .client-dashboard .dashboard-main-head {
  display: flex;
  align-items: center;
  border-radius: 8px 8px 0px 0px;
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
  padding: 4px 0px;
}

.main .client-dashboard .dashboard-main-head .view-text {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  min-width: 72px;
}

.main .client-dashboard .dashboard-main-head .filter-data,
.filter-data {
  border-radius: 6px;
  border: 1px solid var(--color-border-default);
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  cursor: pointer;
  padding: 2px;
  gap: var(--spacing-1);
}

.main .client-dashboard .dashboard-main-head .filter-data .active,
.client-dashboard .dashboard-main-head .filter-data .active,
.active-filter {
  border-radius: var(--border-radius-sm, 4px);
  background: var(--color-bg-fill-grey-secondary-pressed);
  padding: 3px 4px;
}


.main .client-dashboard .dashboard-main-head .form-control {
  border-radius: var(--border-radius-sm);
  /* border: 1px solid var(--color-border-default); */
  background: var(--color-bg-fill-default);
  /* padding-left: 30px; */
  position: relative;
  /* height: 30px; */
  color: var(--color-text-on-bg-fill-inverse);
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.main .client-dashboard .dashboard-main-head .form-control::placeholder {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.main .client-dashboard .dashboard-main-head .tab-content {
  padding: 0;
  border-top: 1px solid var(--color-border-default);
}

.filter-section,
.search-input {
  margin-bottom: 4px;
}

.main .client-dashboard .dashboard-main-head svg {
  /* position: absolute; */
  top: 8px;
  left: 10px;
}

.subscription-div svg {
  position: absolute;
}

.sub-main-box {
  height: 100%;
  position: absolute;
  /* top: 0; */
  top: 8%;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.sub-main-box::-webkit-scrollbar {
  /* display: none; */
}

.calendar-head {
  background: #fff;
  z-index: 100;
  position: relative;
}

.main .client-dashboard .dashboard-main-head .search-modal {
  backdrop-filter: blur(3px);
}

.search-modal::state(webkit-scrollbar) {
  display: none;
}

.main .client-dashboard .dashboard-main-head .search-modal .form-control {
  height: 55px;
  position: relative;
}

.main .client-dashboard .dashboard-main-head .search-modal .search-info,
.search-info {
  position: absolute;
  top: 10px;
  right: 8px;
}

.tooltip-data {
  position: absolute;
  right: -1px;
  text-align: center;
  width: 310px;
  background: #000;
  color: #fff;
  bottom: 13rem;
  border-radius: 10px;
  padding: 10px;
  display: none;
}

.search-info:hover+.tooltip-data {
  display: block;
}

.tooltip-data::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  position: absolute;
  bottom: -5px;
  right: 30px;
  transform: rotate(45deg);
}

.main .client-dashboard .dashboard-main-head .search-modal .search-client-name,
.search-client-name {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 25px;
}

.main .client-dashboard .dashboard-main-head .search-modal .search-client-location,
.search-client-location {
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: end;
  padding-right: 20px;
}

.main .client-dashboard .dashboard-main-head .search-modal .btn-row,
.btn-row {
  padding: 10px 32px;
}

/* .main .client-dashboard .dashboard-main-head .search-modal .tooltip {
  border-radius: 4px;
  background: var(--color-bg-fill-tooltip);
  opacity: 1;
} */

.main .client-dashboard .dashboard-main-head .nav-tabs {
  border-radius: 6px;
  border: 1px solid var(--color-border-default) !important;
  padding: 2px;
}

.main .client-dashboard .dashboard-main-head .nav-tabs .nav-item {
  margin-bottom: 1px;
}

.main .client-dashboard .dashboard-main-head .nav-tabs .nav-link {
  padding: 3px 4px;
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.main .client-dashboard .dashboard-main-head .nav-tabs .nav-link.active {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-grey-secondary-pressed);
  border-color: transparent;
}

.main .client-dashboard .table {
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
}

.main .client-dashboard .table-responsive,
.table-responsive {
  max-height: calc(100vh - 270px);
  overflow-y: auto;
}

.main .client-dashboard .table-responsive-2,
.table-responsive-2 {
  /* max-height: calc(100vh - 71px); */
  max-height: calc(100vh - 173px);
  overflow-y: auto;
}

.table-responsive-small {
  max-height: calc(60vh - 100px);
  overflow-y: auto;
}

.main .client-dashboard .table-responsive::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
  /* display: none; */
}

.main .client-dashboard .clients-table {
  width: 100%;
}

.main .client-dashboard .clients-table thead tr th:first-child {
  width: 3%;
}

.main .client-dashboard .clients-table thead tr th:nth-child(2) {
  width: 25%;
}

.main .client-dashboard .clients-table thead tr th:nth-child(3) {
  width: 10%;
}

.main .client-dashboard .clients-table thead tr th:nth-child(4) {
  width: 18%;
}

.main .client-dashboard .clients-table thead tr th:nth-child(5) {
  width: 20%;
}

.main .client-dashboard .clients-table thead tr th:nth-child(6) {
  width: 12%;
}

.main .client-dashboard .clients-table thead tr th:nth-child(7) {
  width: 12%;
}

.main .client-dashboard .table thead,
.table thead {
  position: sticky;
  top: -0.1px;
  z-index: 10;
}

tbody tr td .draft {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-grey-tertiary);
  color: var(--color-text-grey);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 1px 8px;
}

.main .client-dashboard .table tr {
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border-default);
}

.main .client-dashboard .table thead tr {
  border-bottom: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-tertiary);
}

.main .client-dashboard .table thead tr th,
tr th {
  color: var(--color-text-grey-secondary) !important;
  font-family: Inter !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
}

.main .client-dashboard .table tr td,
tr td {
  position: relative;
  color: var(--color-text-grey) !important;
  font-family: Inter !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
}

.main .client-dashboard .table tr .form-check {
  min-height: 0;
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.main .client-dashboard .table tr .form-check-input:checked {
  background-color: var(--color-bg-fill-brand-default);
  border-color: var(--color-border-grey);
}

.main .client-dashboard .table tr td span.company-logo,
.company-logo {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-special-grey);
  color: var(--color-text-special);
  width: 24px;
  height: 24px;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  display: inline-grid;
  place-items: center;
}

.main .client-dashboard .table tr td span.company-name {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.flag-country {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 0;
}

.flag {
  background: url("../images/Flags.png");
  position: absolute;
  height: 46px;
}

.main .client-dashboard .table tr td .policies {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
  color: var(--color-text-on-bg-fill-inverse);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 1px 8px;
  max-width: fit-content;
}

.country {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding-left: 34px;
}

.main .client-dashboard .table tr td .country img {
  padding-right: 4px;
}

.main .client-dashboard .table tr td .complete,
.complete {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-success-tertiary);
  color: var(--color-text-success);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}
.upcoming-cancellation {
  
  background: var(--color-bg-fill-upcoming-cancellation-tertiary);
  
}

.complete-outline {
  border-radius: var(--border-radius-md);
  background: transparent !important;
  border: solid 1px var(--color-bg-fill-success-tertiary);
  color: var(--color-bg-fill-success-tertiary);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.main .client-dashboard .table tr td .past-due,
.past-due {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-critical-tertiary);
  color: var(--color-text-critical);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}



.renewalCompleted {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-renewalCompleted);
  color: var(--color-text-on-bg-fill);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}
/* Common status label styles */
.status-label {
  border-radius: var(--border-radius-md);
  color: var(--color-text-on-bg-fill);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.cancelled{
  background: var(--color-bg-fill-cancelled);
}

.expired {
  background: var(--color-bg-fill-expired);
}

.boundUpcoming {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-boundUpcoming);
  color: var(--color-text-on-bg-fill);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.vp-center {

  display: block !important;

}

/* In your CSS or module */
.vp-center {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  width: 100%;
}

.vp-center .react-player {
  position: absolute;
  top: 0;
  left: 0;
}

.filter-support-page div {
  display: flex !important;
  justify-content: flex-end !important;
}

.UnAssigned {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-light-blue) !important;
  color: var(--color-text-grey);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.UnAssigned-outline {
  border-radius: var(--border-radius-md);
  background: transparent !important;
  border: solid 1px var(--color-bg-fill-light-blue) !important;
  color: var(--color-bg-fill-light-blue);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.clientApproved {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-light-info) !important;
  color: var(--color-text-grey);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.clientApproved-outline {
  border-radius: var(--border-radius-md);
  background: transparent !important;
  border: solid 1px var(--color-bg-fill-light-info) !important;
  color: var(--color-bg-fill-light-info);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.all {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-grey-tertiary) !important;
  color: var(--color-text-grey);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.all-outline {
  border-radius: var(--border-radius-md);
  background: transparent !important;
  border: 1px solid var(--color-bg-fill-grey-tertiary) !important;
  color: var(--color-text-grey);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

tbody tr td .ChangeRequest,
.changeRequest {
  border-radius: var(--border-radius-md);
  background-color: var(--colorbg-fill-violet) !important;
  color: var(--color-text-grey) !important;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.changeRequest-outline {
  border-radius: var(--border-radius-md);
  background-color: transparent !important;
  border: solid 1px var(--colorbg-fill-violet);
  color: var(--colorbg-fill-violet);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

tbody tr td .Assigned {
  border-radius: var(--border-radius-md);
  background-color: var(--color-bg-fill-blue);
  color: var(--color-text-blue);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.Assigned-outline {
  border-radius: var(--border-radius-md);
  background-color: transparent !important;
  border: solid 1px (--color-bg-fill-blue);
  color: var(--color-text-blue);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.main .client-dashboard .table tr td .inprogress,
.inprogress {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-special-yellow);
  color: var(--color-text-special);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.inprogress-outline {
  border-radius: var(--border-radius-md);
  background: transparent !important;
  border: solid 1px var(--color-bg-fill-special-yellow);
  color: var(--color-bg-fill-special-yellow);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

.main .client-dashboard .offcanvas {
  width: 82%;
  margin-top: 60px;
  padding: 0;
}

.main .client-dashboard .offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--grey-200);
  background: var(--grey-0);
  padding: 12px 40px;
}

.main .client-dashboard .offcanvas .offcanvas-title,
.offcanvas-title {
  color: var(--grey-500);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.main .client-dashboard .offcanvas .btn-close {
  opacity: 1;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey);
  width: 20px;
  height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body {
  padding: 20px 40px 40px 40px;
}

.main .client-dashboard .offcanvas .offcanvas-body .offcanvas-body-title,
.offcanvas-body-title {
  color: var(--grey-800);
  font-family: Inter;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
}

.main .client-dashboard .offcanvas .offcanvas-body .head-row,
.head-row {
  color: var(--grey-400);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 6px;
}

.main .client-dashboard .offcanvas .offcanvas-body .body-row,
.body-row,
.country {
  position: relative;
  color: var(--grey-700);
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .body-row.active-text {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-success-default, #039855);
  color: var(--color-text-on-bg-fill);
  padding: 1px 8px;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
}

.main .client-dashboard .offcanvas .offcanvas-body .flag {
  height: 32px;
  top: -10px;
}

.main .client-dashboard .offcanvas .offcanvas-body .policy-add {
  margin-top: 30px;
  margin-bottom: 12px;
}

.main .client-dashboard .offcanvas .offcanvas-body .document-name {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.main .client-dashboard .offcanvas .offcanvas-body .add-name {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-grey);
  background: var(--color-bg-fill-secondary-default);
  color: var(--color-text-on-bg-fill-inverse);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .policy-add .form-control {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
  color: var(--color-text-on-bg-fill-inverse);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 16px;
}

.main .client-dashboard .offcanvas .offcanvas-body .policy-add .form-control::placeholder {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .table-responsive .flag {
  height: 32px;
  top: -2px;
}

.main .client-dashboard .offcanvas .offcanvas-body .table-responsive-2 .flag {
  height: 32px;
  top: -2px;
}

.main .client-dashboard .offcanvas .offcanvas-body .table-responsive-small .flag {
  height: 32px;
  top: -2px;
}

.main .client-dashboard .offcanvas .offcanvas-body .table-main-row {
  margin-bottom: 40px;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion-button {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.main .client-dashboard .offcanvas .offcanvas-body .location-table thead tr th,
.main .client-dashboard .offcanvas .offcanvas-body .location-table tbody tr td {
  width: 17%;
}

.main .client-dashboard .offcanvas .offcanvas-body .location-table thead tr th:last-child,
main .client-dashboard .offcanvas .offcanvas-body .location-table tbody tr td:last-child {
  width: 15%;
}

.main .client-dashboard .offcanvas .offcanvas-body .location-table tbody tr td:last-child {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100px;
}

.main .client-dashboard .offcanvas .offcanvas-body .broker-table tbody tr td .initials {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-special-grey);
  color: var(--color-text-special);
  width: 24px;
  height: 24px;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  display: inline-grid;
  place-items: center;
}

.main .client-dashboard .offcanvas .offcanvas-body .broker-table tbody tr td .producing {
  border-radius: var(--border-radius-md);
  background: #e9d7fe;
  color: #714aca;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 1px 8px;
  max-width: fit-content;
}

.main .client-dashboard .offcanvas .offcanvas-body .broker-table tbody tr td .servicing {
  border-radius: var(--border-radius-md);
  background: #b2ddff;
  color: #175cd3;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 1px 8px;
  max-width: fit-content;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion-button::after {
  display: none;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion-button:not(.collapsed) {
  background: none;
  border: none;
  box-shadow: none;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion-button:focus {
  border: none;
  box-shadow: none;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .nav-pills,
.accordion-body {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--color-border-default);
  padding: 4px;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .nav-pills .nav-item,
.accordion-body {
  width: 33.33%;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .nav-pills .nav-item .nav-link,
.accordion-body {
  width: 99%;
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .nav-pills .nav-item .nav-link.active,
.accordion-body {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-grey-secondary-pressed);
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .accordion-body-row,
.accordion-body {
  margin-bottom: 20px !important;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .input-div,
.accordion-body {
  position: relative;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .input-div img,
.accordion-body {
  position: absolute;
  top: 9px;
  left: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .accordion-body-row .total-amount-div span,
.accordion-body {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .input-div input,
.accordion-body {
  padding-left: 30px;
  color: var(--color-text-grey-active);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 4px;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .view-policy .client-text,
.main .client-dashboard .offcanvas .comments-row .client-text,
.accordion-body,
.client-text {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .view-policy .client-subtext,
.main .client-dashboard .offcanvas .offcanvas-body .comments-row .description-text,
.accordion-body {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.main .client-dashboard .offcanvas .comments-row .client-subtext {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .accordion .accordion-body .view-policy .coverage-specific,
.accordion-body {
  border-radius: 4px;
  border: 1px dashed var(--color-border-default);
  background: var(--color-bg-fill-tertiary);
  height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.coverage-div .coverage-label {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 4px;
}

.main .client-dashboard .offcanvas .offcanvas-body .comments {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.main .client-dashboard .dashboard-content .grid-view {
  /* border: 1px solid var(--color-border-default); */
  border-top: none;
  padding: 10px;
  padding-bottom: 0;
}

.main .client-dashboard .dashboard-content .grid-view .card {
  padding: 12px;
  min-height: 120px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-fill-default);
  cursor: pointer;
}

.card-parent {
  padding: 8px;
}

/* .main .client-dashboard .dashboard-content .grid-view .flag-country .flag {
  top: 5px;
} */

.main .client-dashboard .dashboard-content .grid-view .company-name,
.recent-contacts .company-name {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.main .client-dashboard .dashboard-content .grid-view .company-subname,
.recent-contacts .company-subname {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.sidepanel-blur {
  backdrop-filter: blur(3px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
}

.sidepanel {
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0px;
  right: 0;
  background: var(--color-bg-fill-default);
  overflow-x: hidden;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 5px;
  height: calc(100vh);
}

.sidepanel a {
  text-decoration: none;
  color: #818181;
  display: block;
}

.sidepanel .sidepanel-header {
  padding: 12px 40px;
  border-bottom: 1px solid var(--grey-200);
}

.sidepanel .sidepanel-header .btn-close {
  width: 20px;
  height: 20px;
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

.sidepanel .sidepanel-body {
  padding: 20px 40px 40px 40px;
  background: var(--color-bg-fill-default);
  overflow-y: auto;
  max-height: calc(100vh - 80px);
}

.sidepanel .sidepanel-body::-webkit-scrollbar {
  /* display: none; */

}

.sidepanel .sidepanel-body .policy-row {
  margin-bottom: 24px;
}

.sidepanel .sidepanel-body .policy-number {
  color: var(--color-text-grey);
  font-family: Inter;
  font-size: 30px;
  font-weight: 400 !important;
  line-height: 38px;
  padding-left: 12px;
}

.main .client-dashboard .offcanvas .offcanvas-body .body-row.start-date {
  color: var(--color-text-success-secondary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 6px;
}

.main .client-dashboard .offcanvas .offcanvas-body .body-row.end-date {
  color: var(--color-text-critical-secondary);
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .table-responsive .sidepanel .flag {
  top: -10px;
}

.main .client-dashboard .offcanvas .offcanvas-body .table-responsive-2 .sidepanel .flag {
  top: -10px;
}

.main .client-dashboard .offcanvas .offcanvas-body .table-responsive-small .sidepanel .flag {
  top: -10px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  color: white;
  border: none;
}

.main .client-dashboard .offcanvas .offcanvas-body .renew-policy-btn {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-brand-default);
  color: var(--color-text-on-bg-fill);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border: none;
}

.main .client-dashboard .offcanvas .offcanvas-body .cancel-policy-btn {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-critical);
  background: var(--color-bg-fill-secondary-default);
  color: var(--color-text-critical);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.main .client-dashboard .offcanvas .offcanvas-body .cancel-policy-btn:hover {
  border: 1px solid var(--color-border-critical-hover);
  background: var(--color-bg-fill-critical-secondary-hover);
}

.main .client-dashboard .offcanvas .offcanvas-body .cancel-policy-btn:active {
  border: 1px solid var(--color-border-critical-pressed);
  background: var(--color-bg-fill-critical-secondary-pressed);
}

.modal.cancel-modal {
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.3);
}

.modal.cancel-modal .modal-content {
  background: none;
  border: none;
}

.modal.cancel-modal .modal-content .modal-header {
  border: none;
}

.modal.cancel-modal .modal-content .modal-header .btn-close {
  filter: invert(0.5) grayscale(100%) brightness(200%);
  opacity: unset;
  border: none;
}

.modal.cancel-modal .modal-content .modal-body {
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--grey-200);
  background: var(--grey-0);
  box-shadow: 7px 17.5px 24.7px -0.7px rgba(187, 187, 187, 0.21),
    4.8px 12px 17px -0.5px rgba(187, 187, 187, 0.19),
    3.2px 7.9px 11.2px -0.4px rgba(187, 187, 187, 0.16),
    1.8px 4.5px 6.4px -0.2px rgba(187, 187, 187, 0.13),
    0.3px 0.8px 1.1px 0px rgba(187, 187, 187, 0.11);
}

.modal.cancel-modal .modal-content .modal-body .icon-fill,
.modal-body.cancel-modal .icon-fill {
  border-radius: var(--border-radius-rounded);
  background: var(--color-bg-fill-critical-tertiary);
  padding: 12px;
  max-width: fit-content;
  width: 40px;
  height: 40px;
}

.modal.cancel-modal .modal-content .modal-body .icon-fill svg,
.modal-body.cancel-modal .icon-fill svg {
  display: grid;
  place-items: center;
}

.modal.cancel-modal .modal-content .modal-body .cancel-policy,
.modal-body .cancel-policy,
.cancel-policy {
  color: var(--color-text-grey);
  text-align: center;
  font-family: "Sling-bold";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 12px 0;
}

.modal.cancel-modal .modal-content .modal-body .cancel-subtext,
.modal-body .cancel-subtext,
.cancel-subtext,
.upload-text {
  color: var(--color-text-grey-secondary);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 32px;
}

.modal.cancel-modal .modal-content .modal-body label,
.modal.cancel-modal .modal-content .modal-body .form-control::placeholder {
  color: var(--color-text-grey-tertiary);
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.modal.cancel-modal .modal-content .modal-body .form-control {
  color: var(--color-text-on-bg-fill-inverse);
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.modal.cancel-modal .modal-content .modal-body .form-control::placeholder {
  font-size: 14px !important;
}

.modal.cancel-modal .modal-content .modal-body .btn-danger {
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-fill-critical-default);
  color: var(--color-text-on-bg-fill);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  width: 49%;
}

.modal.cancel-modal .modal-content .modal-body .toggle {
  margin-bottom: 2rem;
}

.modal.cancel-modal .modal-content .modal-body .toggle span {
  bottom: 3px;
}

.uploadOuter {
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-sm);
  border: 1px dashed var(--color-border-secondary);
  background: var(--color-bg-fill-default);
}

.uploadOuter label {
  color: var(--color-text-brand);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.dragBox {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
  color: var(--color-text-grey);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.dragBox input[type="file"] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
}

.draging {
  transform: scale(1.1);
}

#preview {
  text-align: center;
}

#preview img {
  max-width: 100%;
}

.error-msge {
  color: red;
}

/* flag positions */

.great-britain {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px 913px;
}

.afghanistan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px 1200px;
}

.antarctica {
  left: 0px;
  width: 46px;
  background: url(../images/Flags.png) -354px -2368px;
}

.austria {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -448px 1200px;
}

.argentina {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -304px 1200px;
}

.albania {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px 1200px;
}

.algeria {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -210px 1056px;
}

.andorra {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px 1200px;
}

.antugia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -258px 1200px;
}

.angola {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -210px 1200px;
}

.armenia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -354px 1200px;
}

.azerbaijan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -498px 1200px;
}

.usa {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -160px -967px;
}

.australia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -400px -1215px;
}

.bahamas {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px 1152px;
}

.bahrain {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -642px 1152px;
}

.india {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -1600px;
}

.iceland {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -1600px;
}

.bangladesh {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -1264px;
}

.barbodas {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -114px -1264px;
}

.belgium {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -208px -1264px;
}

.belarus {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -448px -1264px;
}

.belize {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -402px -1264px;
}

.benin {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -1264px;
}

.bermuda {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -834px -1264px;
}

.bhutan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -306px -1264px;
}

.bolivia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -498px -1264px;
}

.bosnia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -352px -1264px;
}

.brazil {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -592px -1264px;
}

.botswana {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -546px -1264px;
}

.bulgaria {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -738px -1264px;
}

.burkina {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -786px -1264px;
}

.burundi {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px -1264px;
}

.cameroon {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -354px -1312px;
}

.canada {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -1312px;
}

.capeverde {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -544px -1312px;
}

.centralafrica {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -16px -1312px;
}

.chile {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -208px -1312px;
}

.china {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -258px -1312px;
}

.colombia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -450px -1312px;
}

.comoros {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -496px -1312px;
}

.congo {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -1312px;
}

.democratic-republic-congo {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -402px -1312px;
}

.costarica {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -544px -1312px;
}

.cotedIvoire {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -306px -1312px;
}

.cuba {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -640px -1312px;
}

.cyprus {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -690px -1312px;
}

.czech-republic {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -738px -1312px;
}

.denmark {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px 1056px;
}

.djubouti {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px 1056px;
}

.dominica {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -114px 1056px;
}

.dominician-republic {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -160px 1056px;
}

.ecuador {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px 1008px;
}

.egypt {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px 1008px;
}

.elSalvador {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px 1008px;
}

.eritrea {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -114px 1008px;
}

.estonia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -258px 1008px;
}

.ethiopia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -306px 1008px;
}

.falkland {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -210px 960px;
}

.fiji {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px 960px;
}

.finland {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px 960px;
}

.france {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px 960px;
}

.gabon {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px 912px;
}

.gambia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px 912px;
}

.georgia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -210px 912px;
}

.gibraltar {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -642px 912px;
}

.greece {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -354px -1504px;
}

.greenland {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -354px -1504px;
}

.grenada {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -498px -1504px;
}

.guatemala {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -402px -1504px;
}

.guernsey {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -210px -1504px;
}

.guinea {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -448px -1504px;
}

.guinea-bissau {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -160px -1504px;
}

.ghana {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -304px -1504px;
}

.germany {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -258px 1056px;
}

.haiti {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1552px;
}

.honduras {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -114px -1552px;
}

.hongkong {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px -1552px;
}

.hungary {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px -1552px;
}

.indonasia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1600px;
}

.iran {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -1600px;
}

.iraq {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -208px -1600px;
}

.isle-of-man {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -402px -1600px;
}

.ireland {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -160px -1600px;
}

.israel {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -304px -1600px;
}

.italy {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -354px -1600px;
}

.jamaica {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1648px;
}

.japan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -114px -1646px;
}

.jersey {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px -1646px;
}

.jordan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -1648px;
}

.kazakhstan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1696px;
}

.kenya {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px -1696px;
}

.north-korea {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -352px -1696px;
}

.south-korea {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px -1696px;
}

.kuwait {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -1696px;
}

.kyrgyzstan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -1696px;
}

.lao-people-democratic {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1744px;
}

.latvia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px -1744px;
}

.lebanon {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -306px -1744px;
}

.lesotho {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -258px -1744px;
}

.liberia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -160px -1744px;
}

.libya {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -114px -1744px;
}

.liechtenstein {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -354px -1744px;
}

.lithuania {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -400px -1744px;
}

.luxembourg {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -448px -1744px;
}

.macao {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -832px -1792px;
}

.republic-of-macedonia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -400px -1792px;
}

.madagascar {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1792px;
}

.malawi {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -160px -1792px;
}

.malaysia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -1792px;
}

.maldives {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -1792px;
}

.mali {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -448px -1792px;
}

.malta {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -496px -1792px;
}

.mauritania {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -736px -1792px;
}

.mauritius {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -688px -1792px;
}

.mexico {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -304px -1792px;
}

.republic-of-moldova {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -210px -1792px;
}

.monaco {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -594px -1792px;
}

.mongolia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -354px -1792px;
}

.montenegro {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -544px -1792px;
}

.montserrat {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -879px -1792px;
}

.morocco {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -1792px;
}

.mozambique {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -640px -1792px;
}

.myanmar {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -786px -1792px;
}

.namibia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1840px;
}

.nepal {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -1840px;
}

.netherlands {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px -1840px;
}

.new-zealand {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -304px -1840px;
}

.nicaragua {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -352px -1840px;
}

.niger {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px -1840px;
}

.nigeria {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -114px -1840px;
}

.norway {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -208px -1840px;
}

.oman {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1890px;
}

.pakisthan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1936px;
}

.panama {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px -1936px;
}

.palau {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -1936px;
}

.papua-new-guinea {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -306px -1936px;
}

.paraguay {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -1936px;
}

.peru {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -160px -1936px;
}

.philippines {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -208px -1936px;
}

.poland {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -356px -1936px;
}

.portugal {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -402px -1936px;
}

.puerto-rico {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -450px -1936px;
}

.qatar {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -1984px;
}

.romania {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -2032px;
}

.russia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -66px -2032px;
}

.rqanda {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -2032px;
}

.south-africa {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -2320px;
}

.sao-tome {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -304px -2080px;
}

.senegal {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -2080px;
}

.seychelles {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -640px -2080px;
}

.sierra-leone {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -2080px;
}

.singapore {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -2080px;
}

.somaila {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -2080px;
}

.sudan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -352px -2080px;
}

.slovenia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -1840px;
}

.syria {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -546px -2080px;
}

.sweden {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -498px -2080px;
}

.swaziland {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -688px -2080px;
}

.srilanka {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -496px -1744px;
}

.suriname {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -402px -2080px;
}

.taiwan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -448px -2128px;
}

.tazikistan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -162px -2128px;
}

.tanzania {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -2128px;
}

.thailand {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -114px -2128px;
}

.togo {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -2128px;
}

.tonga {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -2128px;
}

.trinidad-tobago {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -304px -2128px;
}

.tunisia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -352px -2128px;
}

.turket {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -400px -2128px;
}

.turkmenistan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -544px -2128px;
}

.turks-caicos {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -594px -2128px;
}

.uganda {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -2176px;
}

.ukraine {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -2176px;
}

.uruguya {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -2176px;
}

.uzbekistan {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -210px -2176px;
}

.vanuatu {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -256px -2224px;
}

.venezuela {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -2224px;
}

.vietnam {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -64px -2224px;
}

.yemen {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -18px -2272px;
}

.zimbabwe {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -62px -2320px;
}

.zambia {
  left: 0px;
  width: 46px;
  background: url("../images/Flags.png") -112px -2320px;
}

.form_error {
  float: right;
  color: var(--color-text-grey-tertiary);
  text-align: right;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
}

.error-input {
  border-radius: var(--border-radius-sm) !important;
  border: 1.5px solid var(--color-border-input-error) !important;
  background: var(--color-bg-fill-critical) !important;
}

.client-name-input {
  padding-right: 35px !important;
  padding-left: 20px !important;
}

#chartdiv {
  width: 100%;
  height: calc(100vh - 210px);
}

.map-select {
  height: 40px;
  width: 300px;
  margin-left: 10px;
}

[title="JavaScript charts"] {
  display: none !important;
}

.fc-scroller {
  overflow-x: hidden !important;
}

.fc-license-message {
  display: none;
}

/* .fc-scroller {
height: calc(100vh) !important;
} */
.fc-unthemed th,
.fc-unthemed tbody,
.fc-unthemed thead,
.fc-unthemed .fc-content,
.fc-unthemed td {
  border-color: #fff;
}

.fc-content th {
  border-width: 0;
}

.fc-time-area .fc-slats td {
  border-width: 0 0px;
}

colgroup {
  background: #f9fafb;
}

.fc-widget-content:nth-child(even) {
  background-color: #e1e1e1;
}

/* .fc-content {
margin-bottom: 10px;
} */
.sub-column {
  box-sizing: border-box;
}

.sub-column.date {
  height: 103%;
  width: 1px !important;
  background-color: #175cd3;
  z-index: 999;
  bottom: 18px;
  position: relative;
}

.sub-column.date::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #175cd3;
  position: absolute;
  top: -3px;
  border-radius: 10px;
  left: -2.8px;
}

.col-1 {
  padding: 0;
}

.month-col {
  display: flex;
  padding: 0;
}

.month-col:nth-child(even) {
  background-color: #eaecf0;
}

.calendar-row {
  height: calc(100vh - 235px);
  position: relative;
}

.subscription-div {
  background-color: #fff;
  box-shadow: 0 0 4px #dfdfdf;
  width: 100%;
  border-radius: 10px;
  margin-top: 16px;
}

.subscription-div.one {
  position: absolute;
  left: 0;
  top: calc(14px);
}

.subscription-div .order-id {
  color: var(--color-text-grey);
  /* text-align: center; */
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  padding-left: 2rem;
  max-width: 20%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.subscription-div .coverage-text {
  color: var(--color-text-grey);
  /* text-align: center; */
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding-left: 0.5rem;
  max-width: 30%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.subscription-div .year {
  overflow: hidden;
  color: var(--color-text-grey-tertiary);
  /* text-align: center; */
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding-left: 0.5rem;
  max-width: 30%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.subscription-div .active {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-success-tertiary);
  padding: 1px 8px;
  color: var(--color-text-success);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin-left: 0.5rem;
  bottom: 1px;
  position: relative;
}

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

  .subscription-div .active,
  .subscription-div .year,
  .subscription-div .coverage-text,
  .subscription-div .order-id {
    font-size: 10px;
  }

  .subscription-div .active {
    padding: 1px 2px;
  }
}

.subscription-div .end-icon {
  position: absolute;
  right: 2rem;
  top: 0;
}

.subscription-div.two {
  position: absolute;
  left: 0;
  top: calc(14px * (var(--4) + 0));
}

.subscription-div.three {
  position: absolute;
  left: 0;
  top: calc(14px * (var(--4) + 3));
}

.subscription-div.four {
  position: absolute;
  left: 0;
  top: calc(14px * (var(--4) + 6));
}

.subscription-div.five {
  position: absolute;
  left: 0;
  top: calc(14px * (var(--4) + 9));
}

.subscription-div .past-due {
  border-radius: var(--border-radius-md);
  background: var(--color-bg-fill-critical-tertiary);
  padding: 1px 8px;
  color: var(--color-text-critical);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin-left: 0.5rem;
  bottom: 1px;
  position: relative;
}

.myDIV:hover+.hide {
  display: block;
  color: red;
}

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

  .create-new-modal .modal-header,
  .create-new-modal .modal-body,
  .main .heading .modal .modal-header,
  .main .heading .modal .modal-body {
    padding: 10px 20px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1300px) {

  .create-new-modal .modal-header,
  .create-new-modal .modal-body,
  .main .heading .modal .modal-header,
  .main .heading .modal .modal-body {
    padding: 10px 100px;
  }
}

@media screen and (min-width: 1300px) {

  .table-responsive-small {
    max-height: calc(40vh - 100px) !important;
    overflow-y: auto;
  }
}

@media screen and (min-width: 2058px) and (max-width: 2560px) {

  .table-responsive-small {
    max-height: calc(40vh - 100px) !important;
    overflow-y: auto;
  }
}

/* @media screen and  (min-width: 2500px) {

  .table-responsive-small {
    max-height: calc(40vh - 100px) !important;
    overflow-y: auto;
  }
} */
@media screen and (min-width: 2560px) and (max-width:4000px) {

  .table-responsive-small {
    max-height: calc(30vh - 100px) !important;
    overflow-y: auto;
  }
}

@media screen and (min-width: 4000px) {

  .table-responsive-small {
    max-height: calc(20vh - 100px) !important;
    overflow-y: auto;
  }
}

/* mUI css */
.buttons-wrapper {
  text-align: right;
}

.MuiTabs-root {
  min-height: 24px !important;
}

.MuiButtonBase-root {
  padding: 0 !important;
  min-height: 24px !important;
  z-index: 2 !important;
  color: var(--color-text-grey) !important;
  font-family: Inter !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 18px;
}

.MuiTabs-indicator {
  position: absolute;
  height: 100% !important;
  bottom: 0;
  width: 100%;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  background: var(--color-bg-fill-grey-secondary-pressed) !important;
  z-index: 0;
  border-radius: var(--border-radius-sm) !important;
}

.MuiButton-root {
  padding: 6px !important;
}

/* .MuiTouchRipple-root {
    background: var(--color-bg-fill-grey-secondary-pressed) !important;
  } */
.MuiTableCell-root {
  padding: 4px 12px !important;
}

/* .MuiTableRow-head {
    background: var(--color-bg-fill-tertiary) !important;
  } */
.MuiTableBody-root .MuiTableCell-body {
  padding: 10px 12px !important;
}

.MuiInputBase-input svg {
  top: 12px !important;
}

.MuiTableContainer-root::-webkit-scrollbar {
  /* display: none !important; */
}

.table-header {
  /* background-color: var(--color-bg-fill-default) !important; */
  border-bottom: 1px solid var(--color-border-default) !important;
  background: var(--color-bg-fill-tertiary) !important;
}

.table-header {
  /* background-color: var(--color-bg-fill-default) !important; */
  border-bottom: 1px solid var(--color-border-default) !important;
  background: var(--color-bg-fill-tertiary) !important;
}

.MuiTableHead-root {
  border-bottom: 1px solid var(--color-border-default) !important;
  background: var(--color-bg-fill-tertiary) !important;
  z-index: 10;
  position: relative;
}

.MuiOutlinedInput-root:focus {
  border-color: green !important;
}

.MuiDialogContent-root {
  padding: 0 !important;
}

.secondary-modal-show {
  max-width: calc(100vw - 30px) !important;
}

.MuiDialogContent-root::-webkit-scrollbar,
.MuiPaper-root::-webkit-scrollbar {
  /* display: none !important; */
}

.btn-close {
  /* padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto; */
  border: 2px solid grey !important;
  padding: 0 !important;
  max-width: fit-content !important;
  min-width: 30px !important;
  min-height: 30px !important;
}

.drag-file-area {
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  border: 1px dashed var(--color-border-secondary);
  background: var(--color-bg-fill-default);
}

.drag-file-area .icon-fill svg {
  position: relative;
  top: -5px;
}

.drag-file-area h3 {
  font-size: 14px;
  margin: 0;
  line-height: 20px;
}

.drag-file-area label {
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
}

.drag-file-area .upload-info-text {
  color: var(--color-text-grey-tertiary);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  padding: 0 30px;
}

.drag-file-area label .browse-files-text,
.browse-files-text {
  color: #7b2cbf;
  font-weight: bolder;
  cursor: pointer;
}

.default-file-input {
  opacity: 0;
  display: none;
}

.cannot-upload-message {
  background-color: #ffc6c4;
  font-size: 17px;
  display: flex;
  align-items: center;
  margin: 5px 0;
  padding: 5px 10px 5px 30px;
  border-radius: 5px;
  color: #bb0000;
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.cannot-upload-message span,
.upload-button-icon {
  padding-right: 10px;
}

.cannot-upload-message span:last-child {
  padding-left: 20px;
  cursor: pointer;
}

.file-block {
  color: #f7fff7;
  background-color: #7b2cbf;
  transition: all 1s;
  width: 390px;
  position: relative;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 15px;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
}

.file-info {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.file-icon {
  margin-right: 10px;
}

.file-name,
.file-size {
  padding: 0 3px;
}

.remove-file-icon {
  cursor: pointer;
}

.progress-bar {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 4.5%;
  width: 0;
  height: 5px;
  border-radius: 25px;
  background-color: #4bb543;
}

.upload-button {
  font-family: "Montserrat";
  background-color: #7b2cbf;
  color: #f7fff7;
  display: flex;
  align-items: center;
  font-size: 18px;
  border: none;
  border-radius: 20px;
  margin: 10px;
  padding: 7.5px 50px;
  cursor: pointer;
}

.document-upload-outer {
  border: 1px dashed var(--grey-400);
  border-radius: var(--border-radius-md);
  padding: 14px 24px;
}

.visibility-box .form-check-label {
  text-align: left;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
}

.visibility-box .form-check-input:checked,
.MuiRadio-root .MuiButtonBase-root {
  background-color: var(--brand-800) !important;
  border-color: var(--brand-800) !important;
  color: var(--brand-800) !important;
}

textarea.document-textarea {
  border: 1px solid var(--color-border-grey) !important;
}

.MuiFormGroup-root {
  z-index: 0 !important;
}

@media screen and (max-width: 1300px) {
  .view-text.view-by {
    min-width: 50px !important;
  }

  .main .client-dashboard .dashboard-main-head .nav-tabs {
    min-width: 88px !important;
  }

  .MuiButtonBase-root {
    font-size: 10px !important;
  }
}

.upload-input-field {
  border: none;
  width: 90%;
  display: block;
  margin: auto;
}

.users-select {
  height: 30px !important;
  border: none !important;
  padding: 0;
  padding-left: 10px;
}

.users-select,
.users-select option {
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter";
  line-height: 18px;
}

.users-country-select {
  border: none !important;
}

.users-country-select #react-select-3-placeholder,
.users-new-user {
  color: #101828 !important;
  font-size: 14px;
  font-family: "Inter";
}

.permission-dropdown-arrow {
  background: url("../images/chevron-down-vilot.png") no-repeat right !important;
  padding-right: 10px;
}

.quick-links {
  background-color: var(--hot-pink-light);
  color: var(--hot-pink-fill);
  padding: 8px;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
}

.quick-links-text {
  color: var(--hot-pink-fill);
  font-size: 14px;
  font-weight: 600;
  font-family: Inter;
}

.quick-links-subtext {
  color: var(--hot-pink-light);
  font-size: 12px;
  font-weight: 400;
  font-family: Inter;
  line-height: 18px;
}

.subtext {
  font-weight: bold;
  font-family: Inter;
}

.quick_links:nth-child(1),
.contact-card-parent {
  padding-left: 0;
}

.quick_links .card {
  padding: 8px 12px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--hot-pink-fill);
  box-shadow: none;
}

.quick_links .card:hover {
  background-color: var(--hot-pink-hover);
  transition: 0.5s;
}

.quick_links .card:after {
  content: url("../images/arrow-right-home.png");
  position: absolute;
  opacity: 0;
  top: 18px;
  right: -20px;
  transition: 0.5s;
  color: var(--brand-800);
}

.quick_links .card:hover:after {
  opacity: 1;
  right: 10px;
}

.recent-contacts {
  padding: 12px;
  min-height: 120px;
  box-shadow: none !important;
  border: 1px solid var(--color-border-default);
  border-radius: var(--border-radius-md) !important;
}

.recent-contacts .country {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-text-grey);
  font-family: Inter;
}

.collaboration-table,
.clients-table {
  box-shadow: none !important;
  border: 2px solid var(--color-border-default);
  border-radius: var(--border-radius-md) !important;
}

.client-collaboration-tables {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: none !important;
  margin-top: 10px;
}

.avatar-images,
.MuiAvatar-root {
  border-radius: 25% !important;
  width: 30px !important;
  height: 30px !important;
  margin-left: -6px !important;
}

.MuiMobileStepper-root {
  justify-content: center !important;
}

.dialog-next {
  width: 49% !important;
  padding: 8px !important;
  border-radius: var(--border-radius-sm) !important;
  background: var(--hot-pink-fill) !important;
  border: none !important;
  color: var(--color-text-on-bg-fill) !important;
  font-family: Inter !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 24px !important;
  text-transform: capitalize !important;
}

.dialog-skip {
  border-radius: var(--border-radius-sm) !important;
  border: 1px solid var(--color-border-grey) !important;
  background: var(--color-bg-fill-secondary-default) !important;
  color: var(--color-text-on-bg-fill-inverse) !important;
  font-family: Inter !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  width: 49% !important;
  text-transform: capitalize !important;
}

.addNote-input,
.addNote-input__input {
  width: 100%;
  border-radius: var(--border-radius-sm);
  height: 40px;
  /* padding: 4px 4px 4px 10px; */
  padding: 4px 4px 4px 3px;
  border: 1px solid var(--color-border-default);
  padding-right: 40px;
}

.is-invalid__input {
  bottom: 1px !important;
  display: block !important;
  width: 100% !important;
  position: absolute !important;
  margin: 0px !important;
  /* top: 0px; */
  left: 0px !important;

  top: -3px !important;
  box-sizing: border-box !important;
  background-color: transparent !important;
  font-family: inherit !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;

}

.addnote-close {
  position: absolute;
  top: -10px;
  right: -4px;
}

.fa-close {
  border: 1.5px solid 475467;
  font-size: 8px;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: #475467;
  cursor: pointer;
}

.fa-close::before {
  font-weight: 600;
  position: absolute;
  top: 7px;
  left: 4px;
  color: #fff;
}

.addNote-input:focus-visible,
.addNote-input__input {
  outline: none;
  box-shadow: none;
  background: #fff;
}

.addNote-input:focus,
.addNote-input__input:focus {
  border: 2px solid var(--color-bg-fill-brand-default);
}

.group-float {
  position: absolute;
  background-color: #fff;
  padding: 8px;
  border: 1px solid #d0d5dd;
  border-radius: var(--border-radius-md);
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.add-notetitle {
  color: #6941c6;
  font-weight: 600;
  font-size: 12px;
}

.addNote-input__suggestions {
  max-height: 200px;
  /* Set the maximum height of the suggestions dropdown */
  overflow-y: auto;
  /* Enable vertical scroll if the suggestions exceed the max height */
}

.is-invalid__input,
.is-invalid__input:focus,
.is-invalid__input:focus-visible {
  /* border-radius: var(--border-radius-sm);
    border: 1px solid #D92D20;
    box-shadow: 0 0 0 0.1rem #D92D20 !important */
  /* border-radius: var(--border-radius-sm) !important; */
  border-radius: 5px !important;
  border: 1.5px solid var(--color-border-input-error) !important;
  outline: none;
  height: 40px;
}

.mention {
  color: blue;
  /* Change this to the desired color */
}

.selected-suggestion {
  background-color: yellow;
  /* Change this to the desired color */
}

.MuiPaper-root {
  box-shadow: none !important;
}

.tasks-texts {
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter";
  line-height: 18px;
  padding: 5px;
  margin-right: 10px;
}

.mentions__mention {
  color: "#6941c6";
  z-index: 1;
  position: relative;
}

.addNote-input__highlighter {
  top: 3px !important;
}

.membermail {
  font-family: Inter;
  font-size: 12px !important;
  font-weight: 400;
  line-height: 18px;
  text-align: left;

  width: 182px;

  gap: 0px;
  opacity: 0px;
  color: #98a2b3;
}

.membername {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  color: #101828;
}

.memberaccess {
  font-family: Inter;
  font-size: 12px !important;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
  color: #6941c6;
}

.outer-header-modal .settings-header {
  padding: 20px 300px;
}

.outer-header-modal .main-text {
  font-family: Inter;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 30px;
  color: var(--color-text-grey);
}

.outer-header-modal .help-support {
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
  color: var(--color-text-grey);
}

.outer-header-modal .head-text {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-text-grey);
}

.outer-header-modal .head-subtext,
.outer-header-modal .create-report-text {
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-text-grey-tertiary);
}

.outer-header-modal .contact-button,
.outer-header-modal .contact-button:hover {
  width: 100%;
  background-color: var(--color-bg-fill-brand-default);
  padding: 6px;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-bg-fill-default) !important;
  text-transform: capitalize;
  border: none;
  border-radius: var(--border-radius-sm);
}

.outer-header-modal .follow-button {
  width: 100%;
  text-transform: capitalize;
  background-color: var(--color-bg-fill-default);
  border: 1px solid var(--color-border-grey);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-on-bg-fill-inverse);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  font-family: Inter;
}

.outer-header-modal .members-box {
  border: 1px solid var(--color-border-default);
  border-radius: var(--border-radius-sm);
  padding: 12px;
}

.outer-header-modal .initials {
  background-color: var(--color-bg-fill-special-grey);
  height: 40px;
  width: 40px;
  color: var(--color-text-special);
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  display: grid;
  place-items: center;
  border-radius: var(--border-radius-sm);
}

.outer-header-modal .member-title {
  color: var(--brand-800);
  font-family: Inter;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  float: right;
  cursor: pointer;
}

.outer-header-modal .currency-input {
  padding-left: 32px;
}

.outer-header-modal .currency-sign {
  position: absolute;
  top: 11px;
  left: 10px;
}

.outer-header-modal .change-password-text {
  color: var(--brand-800);
  font-size: 14px;
  font-weight: 500;
  font-family: Inter;
  cursor: pointer;
}

.MuiFormControlLabel-label {
  font-family: Inter !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.MuiFormControlLabel-root {

  display: flex !important;
  align-items: flex-start !important
}

.outer-header-modal .send-test-btn,
.outer-header-modal .send-test-btn:hover {
  width: 100%;
  border: 1px solid var(--color-border-brand);
  color: var(--brand-800) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: capitalize;
  padding: 6px;
  line-height: 20px;
}

.outer-header-modal .notification-email {
  color: var(--grey-500);
  font-size: 14px;
  font-weight: 600;
  font-family: Inter;
}

.outer-header-modal .delete-account {
  color: var(--color-text-critical);
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;

}

.coloredText {
  color: #6941c6 !important;
}

.react-tel-input .form-control {
  padding: .375rem 10px .375rem 54px !important;
  width: 100% !important;
  font-family: Inter !important;
  color: var(--grey-900) !important;
  font-size: 16px !important;
}

.react-tel-input .form-control::placeholder {
  color: #fff !important;
}

.outer-header-modal .clients-text {
  font-size: 24px;
  font-family: Inter;
  font-weight: 600;
  line-height: 32px;
}

.outer-header-modal .clients-text span,
.MuiAccordion-root .accordion-main-text span {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-default);
  background: var(--grey-0);
  padding: 3px 10px;
  font-family: Inter;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  position: relative;
  bottom: 3px;
  margin-left: 10px;
}

.outer-header-modal.create-new-modal .modal-body .nav-item {
  padding-right: 10px !important;
}

.outer-header-modal .accordion-header {
  border: 1px solid red;
  margin-bottom: 20px;
  border-radius: 20px;

}

.MuiAccordion-root {
  border-radius: var(--border-radius-xl) !important;
  border: 2px solid var(--color-border-default) !important;
  padding: 12px 20px;
}

.MuiAccordion-root::before {
  background: none !important;
}

.MuiAccordion-root .accordion-main-text {
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-text-grey);
}

.outer-header-modal .generate-report-btn,
.outer-header-modal .generate-report-btn:hover {
  background: var(--brand-800);
  color: var(--grey-0) !important;
  font-family: Inter !important;
  padding: 12px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 24px;
  text-transform: inherit;
}

.outer-header-modal .report-text {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  /* width: 38%; */
}

.outer-header-modal .generate-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Toastify__toast-container--bottom-center {
  z-index: 10000 !important;
}


* {
  outline: none !important;
}

#webpack-dev-server-client-overlay {
  display: none !important;
}

.MuiCheckbox-root {
  color: var(--color-bg-fill-brand) !important;
}

.main .client-dashboard .table tr td,
.inactive {
  border-radius: var(--border-radius-md);
  background: grey;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  max-width: fit-content;
  padding: 1px 8px;
}

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

.react-pdf__Page__textContent {
  display: none !important;
}

.react-pdf__Page__annotations {
  display: none !important;
}

#pdf-download {
  display: none !important;
}

#react-doc-viewer {
  height: auto !important;
}

.MuiOutlinedInput-root .Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: "#6941C6" !important;
}

.MuiOutlinedInput-root .Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: "#6941C6" !important
}

/* .Mui-focused fieldset {
  border-color: "6941C6" !important;
} */

.date-picker-year {
  z-index: 10000;
}

.date-picker-year {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.date-picker-year:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.date-picker-year input {
  font-size: 16px;
  text-align: center;
  padding: 8px;
}

.date-picker-year .react-datepicker__input-container input {
  text-align: center;
}

.year-wrapper a {
  color: #000 !important;
}

/* Ensure that the parent container has enough space */
.datepicker-container {
  position: relative;
}

/* Ensure the datepicker has a higher z-index to be above other elements */
.react-datepicker__triangle {
  z-index: 10;
}

.react-datepicker {
  z-index: 9999;
}

.react-datepicker-wrapper {
  width: 100% !important;
}

.react-datepicker__input-container {
  width: 100% !important;
}

.react-datepicker__input-container input {
  width: 100% !important;

  border: 1px solid rgba(0, 0, 0, 0.23) !important;
  border-radius: 5px !important;
  height: 40px !important;

}

.react-datepicker-ignore-onclickoutside {
  width: 100% !important;
  /* border-color: "#6941C6" !important; */
  /* border-width: 2px !important; */
  border: 2px solid #6941C6 !important;

  border-radius: 5px !important;
  height: 40px !important;


}


.react-datepicker__year .react-datepicker__year-text {

  width: 3rem !important;

}

.react-datepicker__year-wrapper {
  justify-content: center !important;
}


.pac-container .pac-logo .hdpi {
  z-index: 10000 !important;
}

.pac-container {
  z-index: 10000 !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

.react-datepicker__input-container input::placeholder {

  color: #A2A2A2 !important;
  margin-left: 10px !important;
  padding: 5px !important;

}


.f-900 {
  font-weight: 900 !important;
}

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

.table-bordered {
  border-collapse: collapse;
}

.table-bordered td,
.table-bordered th {
  border: none;
}

.table>thead {
  position: sticky;
  top: 0;

  background-color: #f9fafb;

  z-index: 1;
}

.table td,
.table th {
  vertical-align: middle;
}

.scrollable-table {
  /* max-height: "calc(100vh - 240px)";
           overflow-y: "auto"; */

  border: 1px solid #ddd;
}

.table {
  margin-bottom: auto !important;
}

.scrollable-table {
  max-height: 100%;
  overflow-y: auto;
  position: relative;
}

/* #scrollable-div-client, 
#scrollable-div-tasksDashboard, 
#scrollable-div-clientLocation, 
#scrollable-div-clientPolicy, 
#scrollable-div-table, 
#scrollable-div-tasks {
  overflow-y: auto !important; 
  scrollbar-width: thin; 
} */


/* .table-with-pagination {
  width: 100%;
  table-layout: fixed; 
  table-layout: fixed; 
  border-collapse: collapse;
}
.table-with-pagination th td {
  text-align: left;
  padding: 8px;
  border: 1px solid #ddd;
  overflow: hidden;
  max-width: 200px;
  white-space: nowrap;
  text-overflow: ellipsis;

} */

.infoIcon {
  margin-top: 1px;
  margin-left: 4px;
  color: grey;
  font-size: 12px !important;
}

.infoIcon.PolicyType {
  margin-top: -3px;
}

.quickLink {
  color: var(--hot-pink-fill) !important;
  font-size: 14px;
  font-weight: 600;
  font-family: Inter;
}

.legendInfo {
  margin-top: 2px;
  margin-left: 2px;
}

.legendBox {
  border: 1px solid var(--color-border-default);
  border-radius: 6px;
  width: 100%;
}

.legendGrid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 5px 0px;
}

@media (min-width: 600px) {
  .legendGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .legendGrid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.legendItem {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.legendDot {
  width: 8px;
  height: 8px;
  margin: 4px 6px;
  /* mt, mb: 4px, mr: 6px; */
}


.legendLabel {
  color: var(--grey-400);
  overflow: hidden;
  font-size: 12px;
  display: flex;
  align-items: center;
  font-family: Inter, Arial, sans-serif;
}

.tooltipProps {
  max-width: 250px;
  white-space: normal;
  word-wrap: break-word;
  font-size: 12px;
}

.statusRow {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.statusBoxWrapper {
  width: 350px;
  display: flex;
  align-items: center;
}

.statusColorBox {
  color: #000;
  font-size: 10px;
  font-weight: bold;
  padding: 0.5px 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.statusDescription {
  margin-left: 4px;
  font-size: 12px !important;
  cursor: pointer;
  z-index: 1500;
}


.RenewalInfoText {
  font-weight: 500;
}


.statusDropdown{
  width: 300px;
  position: relative;
  z-index: 1000;
  margin-left: 10px;
}

.policyHeaderText{
  margin-top: 8px;
  margin-right: 10px;
}

.currencyConversionRate{
  font-size: '12px';
  margin: '0 10px';
}

.status-box.inprogress {
  background: repeating-linear-gradient(
    118deg,
    var(--color-bg-fill-special-yellow),
    var(--color-bg-fill-special-yellow),
    10px,
    #fff 10px,
    #fff 12px
  );
}
.status-box.active,
.status-box.complete {
  background: repeating-linear-gradient(
    118deg,
    var(--color-bg-fill-success-tertiary),
    var(--color-bg-fill-success-tertiary),
    10px,
    #fff 10px,
    #fff 12px
  );
}
.status-box.cancelled {
  background: repeating-linear-gradient(
    118deg,
    var(--color-bg-fill-cancelled),
    var(--color-bg-fill-cancelled),
    10px,
    #fff 10px,
    #fff 12px
  );
}
.status-box.expired {
  background: repeating-linear-gradient(
    118deg,
    var(--color-bg-fill-expired),
    var(--color-bg-fill-expired),
    10px,
    #fff 10px,
    #fff 12px
  );
}
.status-box.renewalCompleted {
  background: repeating-linear-gradient(
    118deg,
    var(--color-bg-fill-renewalCompleted),
    var(--color-bg-fill-renewalCompleted),
    10px,
    #fff 10px,
    #fff 12px
  );
}
.status-box.past-due {
  background: repeating-linear-gradient(
    118deg,
    var(--color-bg-fill-critical-tertiary),
    var(--color-bg-fill-critical-tertiary),
    10px,
    #fff 10px,
    #fff 12px
  );
}
.status-box.boundUpcoming {
  background: repeating-linear-gradient(
    118deg,
    var(--color-bg-fill-boundUpcoming),
    var(--color-bg-fill-boundUpcoming),
    10px,
    #fff 10px,
    #fff 12px
  );
}
.status-box.upcoming-cancellation {
  background: repeating-linear-gradient(
    118deg,
    var(--color-bg-fill-upcoming-cancellation-tertiary),
    var(--color-bg-fill-upcoming-cancellation-tertiary),
    10px,
    #fff 10px,
    #fff 12px
  );
}
.tel-phone {
  border-radius: 5px !important;
  height: 40px !important;
  border: 1px solid #CCC !important;
  padding-left: 50px; 
}
.iti {
    display: grid !important;
}

.tel-phone:focus {
  outline: none; 
  border: 1px solid #7f56d9 !important;
  box-shadow: 0 0 0 0.1rem #7f56d9 !important;
}


.iti__input.tel-phone:focus {
  border: 1px solid #7f56d9 !important;
  outline: none !important;
  box-shadow: 0 0 0 0.1rem #7f56d9 !important;
}
.tel-phone-err:focus {
  outline: none; 
  border: 1px solid #dc3545 !important;
  box-shadow: 0 0 0 0.1rem #dc3545 !important;
}
.tel-phone-err {
  border-radius: 5px !important;
  height: 40px !important;
  padding-left: 50px;
  outline: none; 
  border: 1px solid #dc3545 !important;
  box-shadow: 0 0 0 0.1rem #dc3545 !important;
}
.iti__input.tel-phone-err:focus {
  border: 1px solid #dc3545 !important;
  outline: none !important;
  box-shadow: 0 0 0 0.1rem #dc3545 !important;
}