@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Roboto", system-ui;
  font-size: 16px;
  font-weight: 400;
  color: #3D3E4A;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.link {
  font-size: 16px;
  color: #4151F6;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  background-color: #F8F8FA;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mr-5 {
  margin-right: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

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

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

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

.mb-50 {
  margin-bottom: 35px !important;
}

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

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

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

.fw-medium {
  font-weight: 500 !important;
}

.no-border {
  border: none !important;
}

.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.input-wrapper label {
  font-size: 14px;
  color: #3D3E4A;
  margin-bottom: 4px;
  display: block;
}
.input-wrapper-icon {
  position: relative;
}
.input-wrapper-icon:hover input {
  border-color: #7B7D93;
}
.input-wrapper-icon input {
  width: 100%;
}
.input-wrapper-icon img {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}
.input-wrapper-icon .show-password {
  cursor: pointer;
  transition: 0.2s;
}
.input-wrapper-icon .show-password:hover {
  opacity: 0.8;
}

.input {
  border: 1px solid #C7C7C7;
  border-radius: 8px;
  padding: 8px 16px;
  outline: none !important;
  height: 40px;
  transition: 0.2s;
  font-size: 14px;
}
.input:hover {
  border-color: #7B7D93;
}
.input.lg {
  height: 48px;
  font-size: 16px;
}
.input:focus, .input:focus-visible {
  border-color: #4151F6;
  box-shadow: 0 2px 2px rgba(50, 105, 223, 0.25);
  color: #4151F6;
}

.error-message {
  font-size: 12px;
  margin-top: 2px;
  color: #ff0000;
  font-weight: 500;
}

.btn {
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  outline: none !important;
  box-shadow: none !important;
  color: #FFFFFF;
  height: 40px;
  min-width: fit-content;
  transition: 0.2s;
}
.btn.lg {
  height: 48px;
  font-size: 16px;
}
.btn-primary {
  background-color: #4151F6;
  border: 1px solid #4151F6;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #3748f6;
}
.btn-primary:active {
  background-color: #2e3de6;
}
.btn-secondary {
  background-color: #EBECEF;
  border: 1px solid #EBECEF;
  color: #3D3E4A !important;
}
.btn-secondary:hover {
  background-color: #D7D8DF;
  border-color: #D7D8DF;
}
.btn-secondary:focus {
  background-color: #EBECEF;
  border: 1px solid #EBECEF;
}
.btn-secondary:active {
  background-color: #C7C7C7;
  border-color: #C7C7C7;
}
.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #4151F6;
  color: #4151F6;
}
.btn-outline-primary:hover {
  background-color: #3748f6;
  color: #FFFFFF;
}
.btn-outline-primary:active {
  background-color: #2e3de6;
  color: #FFFFFF;
}

.btn-icon {
  background-color: transparent;
  box-shadow: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: 0.2s;
}
.btn-icon:hover {
  background-color: #D7D8DF;
}

.form-select {
  height: 40px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  background-image: url('data:image/svg+xml,<svg width="9" height="5" viewBox="0 0 9 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 4.8L0 0H9L4.5 4.8Z" fill="black"/></svg>');
  background-size: 9px 5px;
}
.form-select option {
  background-color: #fff;
}
.form-select:focus {
  border-color: #D7D8DF;
  background-color: #EBECEF;
  box-shadow: none;
}
.form-select:hover {
  background-color: #EBECEF;
}

.table {
  font-size: 14px;
  min-width: 800px;
}
.table thead th {
  color: #3D3E4A;
  font-weight: 500;
  min-width: 140px;
  border-bottom: 2px solid #D7D8DF !important;
  padding: 16px 8px;
}
.table thead th.col-sm {
  min-width: 120px !important;
}
.table tbody tr:hover td {
  background-color: #F8F8FA;
}
.table tbody td {
  min-height: 48px;
  padding: 16px 8px;
  vertical-align: middle;
  border-color: #D7D8DF;
  cursor: pointer;
  transition: 0.2s;
}
.table tbody td a {
  font-size: 14px;
}
.table tbody td .label {
  padding: 4px;
  margin-right: 6px;
  border-radius: 4px;
}
.table tbody td .label-success {
  background-color: #D4FBE9;
}
.table tbody td .label-error {
  background-color: #FDE1E1;
}
.table tbody .table-action {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  max-width: 120px;
}
.table .sponsor {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assigments {
  overflow-x: auto;
}
.assigments::-webkit-scrollbar {
  height: 0.6rem;
}
.assigments::-webkit-scrollbar-track {
  border-top: 1px solid #d8dbe9;
  border-bottom: 1px solid #d8dbe9;
}
.assigments::-webkit-scrollbar-thumb {
  background: #b2b4b5;
  border-radius: 12px;
  transition: 0.2s;
}
.assigments::-webkit-scrollbar-thumb:hover {
  background: #858788;
}

.dropdown-menu {
  border-radius: 8px;
  padding: 8px;
}
.dropdown-menu li {
  border-radius: 8px;
  margin-bottom: 4px;
}
.dropdown-menu li:last-child {
  margin-bottom: 0;
}
.dropdown-menu li a {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  color: #3D3E4A !important;
}
.dropdown-menu li a:active {
  background-color: #D7D8DF !important;
}
.dropdown-menu li:hover {
  background-color: #EBECEF;
}

#submitNewModal .modal-dialog {
  width: calc(100% - 40px);
  max-width: 960px;
  margin-top: 60px;
}
#submitNewModal .modal-content {
  border-radius: 16px !important;
  max-height: calc(100vh - 100px);
  overflow: auto;
}
#submitNewModal .modal-header {
  border: none;
  padding: 16px 24px 8px;
}
#submitNewModal .modal-body {
  padding: 16px 24px 32px;
}
#submitNewModal .modal-body .modal-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
}
#submitNewModal .modal-body .subtitle {
  font-size: 18px;
  border-bottom: 1px solid #EBECEF;
}
#submitNewModal .modal-body .select-wrapper {
  display: flex;
  gap: 16px;
}
#submitNewModal .modal-body .select-wrapper .input-wrapper {
  width: 100%;
}
#submitNewModal .modal-body label {
  color: #3D3E4A;
}
#submitNewModal .modal-body .input:focus, #submitNewModal .modal-body .input:focus-visible {
  box-shadow: none;
  color: #3D3E4A;
  border-color: #7B7D93;
}
#submitNewModal .modal-body .upload-container {
  display: flex;
  gap: 16px;
}
#submitNewModal .modal-body .upload-container h3 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
#submitNewModal .modal-body .upload-container h3 img {
  display: inline-block;
}
#submitNewModal .modal-body .upload-container .file-upload {
  width: 33.3333%;
}
#submitNewModal .modal-footer {
  border: none;
  padding: 16px 24px 24px;
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}
#submitNewModal .modal-footer button {
  width: 50%;
}
@media screen and (max-width: 700px) {
  #submitNewModal .modal-dialog {
    margin-top: 20px;
  }
  #submitNewModal .modal-content {
    max-height: calc(100vh - 40px);
  }
  #submitNewModal .modal-body .select-wrapper {
    flex-direction: column;
  }
  #submitNewModal .modal-body .upload-container {
    flex-direction: column;
  }
  #submitNewModal .modal-body .upload-container .file-upload {
    width: 100%;
  }
}

#breakdownDetails .modal-dialog {
  width: calc(100% - 40px);
  max-width: 720px;
  margin-top: 60px;
}
#breakdownDetails .modal-content {
  border-radius: 20px !important;
  max-height: calc(100vh - 100px);
  overflow: auto;
  background-color: #EBEBFF;
}
#breakdownDetails .modal-header {
  border: none;
  padding: 16px 24px 8px;
}
#breakdownDetails .modal-header .btn-close {
  opacity: 1 !important;
}
#breakdownDetails .modal-header .btn-close:hover {
  opacity: 0.6 !important;
}
#breakdownDetails .modal-body h3 {
  display: flex;
  align-items: center;
  line-height: normal;
  font-size: 14px;
  text-transform: uppercase;
  gap: 8px;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}
#breakdownDetails .modal-body .detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
#breakdownDetails .modal-body .detail .info h4 {
  font-size: 16px;
  font-weight: 600;
}
#breakdownDetails .modal-body .detail .info p {
  font-size: 14px;
}
#breakdownDetails .modal-body .detail .info p strong {
  font-weight: 600;
}
#breakdownDetails .modal-body div.mark {
  background-color: #FFE0B3;
  font-size: 16px;
  padding: 2px 6px;
  border-radius: 4px;
}
#breakdownDetails .modal-footer {
  border: none !important;
}
@media screen and (max-width: 700px) {
  #breakdownDetails .modal-dialog {
    margin-top: 20px;
  }
  #breakdownDetails .modal-content {
    max-height: calc(100vh - 40px);
  }
}

.file-upload {
  margin-bottom: 20px;
}

.file-upload-label {
  border: 2px dashed #AAB1FB;
  background-color: #F6F5FF;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  display: block;
  margin-top: 5px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
  gap: 8px;
  transition: 0.2s;
}
.file-upload-label span {
  text-align: center;
  color: #7B7D93;
}
.file-upload-label .link {
  pointer-events: none;
}
.file-upload-label a {
  font-size: 14px;
}
.file-upload-label:hover {
  background-color: #EBEBFF;
}

.file-upload-input {
  display: none;
}

.file-list {
  margin-top: 10px;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  font-size: 14px;
  margin-bottom: 4px;
  border-radius: 8px;
  background-color: #F6F5FF;
  transition: 0.2s;
  font-weight: 500;
}
.file-item img {
  transition: 0.2s;
}
.file-item img:hover {
  transform: scale(1.2);
  opacity: 0.7;
}

.remove-file {
  color: red;
  cursor: pointer;
}

.tabs .nav {
  display: flex;
  gap: 8px;
}
.tabs .nav-link {
  background-color: #F8F8FA;
  padding: 9px 16px;
  height: 40px;
  border-radius: 8px;
  color: #3D3E4A;
  font-size: 14px;
  transition: 0.2s;
}
.tabs .nav-link:hover {
  background-color: #EBEBFF;
  color: #4151F6;
}
.tabs .nav-link.active {
  background-color: #EBEBFF;
  color: #4151F6;
}
.tabs .nav-link.active svg path {
  fill: #4151F6;
}

.line-tabs {
  border-bottom: 1px solid #EBECEF;
  gap: 0 !important;
}
.line-tabs li {
  width: 33.333%;
}
.line-tabs li button.nav-link {
  width: 100% !important;
  padding: 8px;
  background-color: transparent !important;
  position: relative;
  text-transform: uppercase;
  color: #3D3E4A !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.line-tabs li button.nav-link:hover {
  background-color: #F8F8FA !important;
}
.line-tabs li button.nav-link.active::after {
  content: "";
  height: 3px;
  background-color: #4151F6;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.footer {
  border-top: 1px solid #D7D8DF;
  padding: 12px;
  height: 48px;
  font-size: 14px;
  color: #1E1F25;
  margin-top: auto;
}

.sidebar {
  position: fixed;
  top: 60px;
  left: -30%;
  bottom: 0;
  height: calc(100vh - 108px);
  width: 88px;
  background-color: #F8F8FA;
  padding: 16px;
  transition: 0.4s;
  z-index: 100;
}
.sidebar.show {
  left: 0;
}
.sidebar .nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.sidebar .nav-link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 16px;
  padding: 16px;
  position: relative;
  margin-bottom: 4px;
  transition: 0.4s;
  color: #3D3E4A;
  border-radius: 8px;
}
.sidebar .nav-link:hover {
  background-color: #EBECEF;
}
.sidebar .nav-link.active {
  background-color: #EBECEF;
}
.sidebar .nav-link.active img {
  opacity: 1;
}
.sidebar .nav-link img {
  opacity: 0.4;
}

@media screen and (min-width: 768px) {
  .sidebar {
    left: 0;
    padding: 16px;
  }
  .sidebar.show {
    width: 244px;
  }
}
.header {
  position: fixed;
  top: 0;
  padding: 10px 20px;
  height: 60px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
  z-index: 101;
  background-color: #F8F8FA;
}
.header-toggle {
  cursor: pointer;
  transition: 0.4s;
}
.header-toggle:hover {
  opacity: 0.4;
}
.header-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #3D3E4A;
  font-size: 18px;
  font-weight: 500;
}
.header-user {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D0D3FD;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.header-user span {
  font-size: 18px;
  color: #000000;
}

#main {
  position: relative;
  margin-top: 76px;
  padding: 0 16px 16px;
  transition: 0.4s;
  min-height: calc(100vh - 124px);
  display: flex;
}
#main .sidebar .nav-link {
  width: 56px;
  transition: 0.4s;
}

.sidebar-active {
  padding-left: 104px !important;
}
.sidebar-active .nav-link {
  width: 100% !important;
}

@media screen and (min-width: 768px) {
  #main {
    padding-left: 88px;
  }
  .sidebar-active {
    padding-left: 260px !important;
  }
}
.main-content {
  width: 100%;
  background-color: #FFFFFF;
  padding: 32px 16px;
  border-radius: 20px;
}

.login-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #EBECEF;
}
.login-page .login-navbar {
  background-color: #FFFFFF;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  margin-bottom: 60px;
}
.login-page .login-navbar a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #3D3E4A;
  font-size: 18px;
  font-weight: 500;
}
.login-page .login-form {
  max-width: 400px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 32px;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 8px 12px -4px rgba(0, 0, 0, 0.0784313725);
}
.login-page .login-form h1 {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 24px;
}
.login-page .login-form .form-info {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
}
.login-page .auth-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}
.login-page .auth-header img {
  width: 32px;
  height: 32px;
}
.login-page .info-text {
  font-size: 14px;
}

.dashboard-page .fillter-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-page .fillter-wrapper .btn {
  margin-left: auto;
}
.dashboard-page .fillter-wrapper .search-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 270px;
  min-width: 120px;
}
.dashboard-page .fillter-wrapper .search-input img {
  position: absolute;
  left: 16px;
}
.dashboard-page .fillter-wrapper .search-input .input {
  padding-left: 44px;
  background-color: #F8F8FA;
  border-color: #F8F8FA;
  color: #3D3E4A !important;
  width: 100%;
}
.dashboard-page .fillter-wrapper .search-input .input:focus {
  border-color: #D7D8DF;
  background-color: #EBECEF;
  box-shadow: none;
}
.dashboard-page .fillter-wrapper .search-input .input:hover {
  background-color: #EBECEF;
}
.dashboard-page .fillter-wrapper .form-select {
  max-width: 160px;
  background-color: #F8F8FA;
  border-color: #F8F8FA;
  transition: 0.2s;
}
.dashboard-page .fillter-wrapper .form-select:focus {
  border-color: #D7D8DF;
  background-color: #EBECEF;
  box-shadow: none;
}
.dashboard-page .fillter-wrapper .form-select:hover {
  background-color: #EBECEF;
}

.assesment-page .page-title {
  font-size: 20px;
}
.assesment-page .assesment-tab {
  display: flex;
  gap: 16px;
}
.assesment-page .assesment-tab .side-section {
  border-radius: 8px;
  background-color: #F8F8FA;
  padding: 20px 16px;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.assesment-page .assesment-tab .side-section-label {
  font-size: 14px;
  color: #7B7D93;
  margin-bottom: 4px;
}
.assesment-page .assesment-tab .side-section-value {
  font-size: 14px;
}
.assesment-page .assesment-tab .side-section-value a {
  font-size: 14px;
}
.assesment-page .assesment-tab .side-section .inner-box {
  background-color: #EBECEF;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.assesment-page .assesment-tab .content {
  width: 100%;
}
.assesment-page .assesment-tab .content-header {
  display: flex;
  gap: 8px;
}
.assesment-page .assesment-tab .content-header .box {
  width: 60%;
  border-radius: 8px;
  padding: 16px;
  background-color: #F8F8FA;
}
.assesment-page .assesment-tab .content-header .box h2 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 16px;
}
.assesment-page .assesment-tab .content-header .box .items {
  display: flex;
  gap: 16px;
}
.assesment-page .assesment-tab .content-header .box-item {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
}
.assesment-page .assesment-tab .content-header .box-item .num {
  background-color: #D4FBE9;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.assesment-page .assesment-tab .content-header .box-item .details {
  display: flex;
  flex-direction: column;
}
.assesment-page .assesment-tab .content-header .box-item .details .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #7B7D93;
  margin-bottom: 2px;
}
.assesment-page .assesment-tab .content-header .box.comparator {
  width: 40%;
  background-color: #FFFBF2;
}
.assesment-page .assesment-tab .content-header .box.comparator .num {
  background-color: #FEF1DA;
}
.assesment-page .assesment-tab .content .excluded-title {
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 12px;
}
.assesment-page .assesment-tab .content .excluded-wrapper .excluded-item {
  border-bottom: 1px solid #D7D8DF;
  display: flex;
  font-size: 14px;
}
.assesment-page .assesment-tab .content .excluded-wrapper .excluded-item:first-child {
  border-top: 1px solid #D7D8DF;
}
.assesment-page .assesment-tab .content .excluded-wrapper .excluded-item .excluded-titleBox {
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  background-color: #F6F5FF;
  text-transform: none;
  max-width: 160px;
}
.assesment-page .assesment-tab .content .excluded-wrapper .excluded-item .excluded-content {
  padding: 24px 16px;
  display: flex;
  align-items: center;
}
.assesment-page .assesment-tab .content .excluded-wrapper .excluded-item .excluded-content ul {
  margin-bottom: 0;
}
.assesment-page .consent-tab tbody tr:hover td {
  background-color: transparent;
}
.assesment-page .consent-tab tbody tr:first-child {
  background-color: #F8F8FA;
}
.assesment-page .consent-tab .content-wrapper {
  margin-top: 40px;
  display: flex;
}
.assesment-page .consent-tab .content-wrapper .consent-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.assesment-page .consent-tab .content-wrapper .consent-list .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.assesment-page .consent-tab .content-wrapper .consent-list .item p {
  max-width: 80%;
  width: 100%;
}
.assesment-page .consent-tab .content-wrapper .consent-list .item .labels {
  display: flex;
  gap: 8px;
  align-items: center;
}
.assesment-page .consent-tab .content-wrapper .consent-list .item .labels .label {
  padding: 4px;
  margin-right: 6px;
  border-radius: 4px;
}
.assesment-page .consent-tab .content-wrapper .consent-list .item .labels .label-success {
  background-color: #D4FBE9;
}
.assesment-page .consent-tab .content-wrapper .consent-list .item .labels .label-error {
  background-color: #FDE1E1;
}
.assesment-page .consent-tab .content-wrapper .consent-tabs .nav-pills {
  display: flex;
}
.assesment-page .consent-tab .content-wrapper .consent-tabs .nav-pills li {
  flex: 1;
  height: 56px;
  min-width: 100px;
  max-width: 150px;
}
.assesment-page .consent-tab .content-wrapper .consent-tabs .nav-pills li button {
  height: 56px !important;
}
.assesment-page .consent-tab .content-wrapper .consent-tabs .tab-content {
  padding: 20px;
}
.assesment-page .consent-tab .content-wrapper .consent-tabs .tab-content img {
  width: 100%;
}
.assesment-page .sponsor-tab {
  display: flex;
  gap: 16px;
}
.assesment-page .sponsor-tab .sponsor-chart {
  width: 100%;
  max-width: 280px;
  min-width: 200px;
  padding: 0 16px;
  border-left: 1px solid #EBECEF;
}
.assesment-page .sponsor-tab .sponsor-chart h3 {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  text-align: center;
}
.assesment-page .sponsor-tab .sponsor-chart .chart {
  max-width: 200px;
  margin: 0 auto 20px;
}
.assesment-page .sponsor-tab .sponsor-chart .chart img {
  max-width: 200px;
  width: 100%;
  height: auto;
}
.assesment-page .sponsor-tab .sponsor-chart .chart-legend {
  max-width: 200px;
  margin: 0 auto;
}
.assesment-page .sponsor-tab .sponsor-chart .chart-legend .legend-item {
  display: flex;
  flex-direction: column;
  max-width: 185px;
  margin-bottom: 8px;
}
.assesment-page .sponsor-tab .sponsor-chart .chart-legend .legend-item .color {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}
.assesment-page .sponsor-tab .sponsor-chart .chart-legend .legend-item p {
  color: #7B7D93;
  font-size: 14px;
}
.assesment-page .sponsor-tab .sponsor-content {
  width: 100%;
}
.assesment-page .sponsor-tab .sponsor-content .sponsor-info {
  margin-bottom: 32px;
}
.assesment-page .sponsor-tab .sponsor-content .sponsor-info-item {
  display: flex;
  align-items: center;
  padding: 9px 8px;
  border-bottom: 1px solid #EBECEF;
  font-size: 14px;
}
.assesment-page .sponsor-tab .sponsor-content .sponsor-info-item .label {
  width: 50%;
  color: #7B7D93;
}
.assesment-page .sponsor-tab .sponsor-content .sponsor-info-item .value {
  width: 50%;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper {
  margin-bottom: 32px;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper h3 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .map {
  width: 100%;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .map img {
  width: 100%;
  height: auto;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .geo-legend {
  width: 50%;
  max-width: 170px;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .geo-legend h4 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  padding-bottom: 8px;
  border-bottom: 1px solid #EBECEF;
  margin-bottom: 8px;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .geo-legend .item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .geo-legend .item img {
  min-width: 16px;
  width: 16px;
  height: auto;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .geo-legend .item span {
  font-size: 14px;
  color: #7B7D93;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .geo-legend .item .num {
  font-size: 14px;
  font-weight: 500;
  color: #3D3E4A !important;
}
.assesment-page .sponsor-tab .sponsor-content .geo-wrapper .geo-details .geo-legend .legend-info {
  color: #7B7D93;
  font-size: 12px;
  padding-top: 8px;
  border-top: 1px solid #EBECEF;
  margin-top: 8px;
}
.assesment-page .sponsor-tab .sponsor-content .details-row {
  display: flex;
  padding-bottom: 32px;
  border-bottom: 1px solid #EBECEF;
  margin-bottom: 32px;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph {
  width: 64%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress {
  height: 20px;
  display: flex;
  justify-content: flex-end;
  padding: 1px 8px 0;
  border-radius: 0;
  align-items: center;
  font-size: 14px;
  margin-top: 0.5px;
  font-weight: 500;
  background-color: #D0D3FD;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress-100 {
  width: 100%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress-50 {
  width: 50%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress-10 {
  width: 10%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress-40 {
  width: 40%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress-33 {
  width: 33%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress-20 {
  width: 20%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress-85 {
  width: 85%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-graph .progress-0 {
  width: 0 !important;
  padding: 0 !important;
}
.assesment-page .sponsor-tab .sponsor-content .details-row.subjects-review .details:first-child {
  width: 54.5%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details {
  border-right: 1px solid #EBECEF;
  padding: 0 32px;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details:first-child {
  padding-left: 0;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details:last-child {
  border-right: none;
  padding-right: 0;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-md {
  width: 32%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-lg {
  width: 45%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-sm {
  width: 23%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-xl {
  width: 100%;
  border-bottom: none;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-xl .details-item-wrapper {
  width: 33.333%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #3D3E4A;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-item {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-item:last-child {
  margin-bottom: 0;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-item .label {
  color: #7B7D93;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-item .value {
  font-weight: 500;
  color: #3D3E4A;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details-item-wrapper {
  width: 50%;
}
.assesment-page .sponsor-tab .sponsor-content .details-row .details .details-container {
  display: flex;
  gap: 16px;
}
.assesment-page .intervention-tab .subtitle {
  font-size: 14px;
  letter-spacing: 0.2px;
}
.assesment-page .intervention-tab .side-section-value.labels span {
  padding: 4px;
  margin-right: 2px;
  border-radius: 4px;
}
.assesment-page .intervention-tab .side-section-value.labels .label-success {
  background-color: #D4FBE9;
}
.assesment-page .intervention-tab .side-section-value.text-sm {
  font-size: 12px;
}
.assesment-page .intervention-tab .side-section-value .mark {
  padding: 4px;
  background-color: #FEF1DA;
  font-size: 16px;
  margin-right: 4px;
}
.assesment-page .intervention-tab .breakdown .side-section-label,
.assesment-page .intervention-tab .breakdown .side-section-value {
  margin-bottom: 8px;
}
.assesment-page .intervention-tab .atc-code a {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.assesment-page .intervention-tab .content .list-wrapper .list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #EBECEF;
}

/*# sourceMappingURL=style.css.map */
