@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Let's get this party started */
::-webkit-scrollbar {
    width: 6px;
    background: #f6f6f6 ;
}
/* Track */
::-webkit-scrollbar-track {
    border-radius: 0px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #0E294B; 
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #0E294B; 
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}
html{
  direction: ltr;
}
body{
  font-family: 'Inter', sans-serif;
  background-color: #FFF8F0;
  font-weight:400;
  direction: left;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
img {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
a,button {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a {
  cursor: pointer !important;
  text-decoration: none !important;
}
a:hover,a:active,a:focus,a:visited{
  text-decoration: none !important;
}
input, textarea, a, button {
  outline: none !important;
  text-decoration: none;
}
.margin-auto{
  margin: 0 auto;
  float: none !important;
}

/* img hover */
.img-hover {
  overflow: hidden;
  display: block;
}

.img-hover > img {
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

img{
  max-width: 100%;
}
/* end img hover */
.main-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  margin-left: 306px;
}

/*body {
  display: flex;
  height: 100vh;
  margin: 0;
  background-color: #FFF8F0;
}*/
.sidebar {
  width: 306px;
  background-color: white;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  flex: 306px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.sidebar::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}
.logo {
    padding: 0px;

    margin-bottom: 20px;

    margin-left: auto;
    margin-right: auto;
}
#logo {
    max-width: 200px;
    margin: auto;
}
.logo h1 {
    color: #1B365D;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.logo p {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.sidebar .nav-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    margin: 10px 15px;
    border-radius: 8px; /* Updated border-radius */
}
.sidebar .nav-item:hover { background-color: #1B365D; color: white; }
.sidebar .nav-item.active {
    background-color: #1B365D;
    color: white;
}

.sidebar .nav-item span {
    margin-left: 12px;
}
.sidebar .nav-item::after {
    content: '›';
    position: absolute;
    right: 20px;
    font-size: 18px;
}
.nav-icon {
    width: 18px;
    height: 18px;
}

.user-profile {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background-color: #E4184A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-right: 12px;
}
.user-info {
    flex-grow: 1;
}

.user-name {
    font-weight: 500;
    font-size: 14px;
    color: #1F2937;
}

.user-role {
    font-size: 12px;
    color: #6B7280;
}

.dropdown-icon {
    color: #6B7280;
    font-size: 18px;
}

.main-content {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
}
.search-bar {     width: 430px;
  margin-left: auto;
  margin-bottom: 30px;
}
.search-bar input {
    width: 100%;
    padding: 12px 20px 12px 40px;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    font-size: 14px;
    background-color: white;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23EC4899" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>');
    background-repeat: no-repeat;
    background-position: 15px center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.stat-card {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #1F2937;
}

.stat-icon {
    background-color: #FFF8F0;
    padding: 10px;
    border-radius: 8px;
    font-size: 20px;
}

.overall {
    font-size: 12px;
    color: #6B7280;
    display: flex;
    align-items: center;
}

.chevron {
    margin-left: 5px;
    font-size: 10px;
    color: #EC4899;
}
.stat-card {
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.stat-card h3 {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
}
.stat-value {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 2px;
}
.stat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.overall {
    font-size: 15px;
    color: #0E294B;
}
.chevron {
    color: #dc3545;
}
.stat-icon {
    background-color: #fff5e6;
    border-radius: 50%;
    padding: 0px;
    height: 45px;
    width: 45px;
    text-align: center;
    padding-top: 6px;
}
.stat-icon svg {
    width: 26px;
    height: 26px;
    color: #1B365D;
    margin: auto;
}
.map {
    background-color: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.map h3 {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 15px;
    font-weight: 500;
}

.map-image {
    border-radius: 8px;
}

.map-legend {

    font-size: 12px;
    margin-bottom: 10px;
    margin-bottom: 170px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-top:18px;
}

.legend-icon {
    font-size: 16px;
    margin-right: 5px;
}

.legend-icon.supportive {
    color: #10B981;
}

.legend-icon.not-supportive {
    color: #EF4444;
}

.view-full-map {
    font-size: 12px;
    color: #000;
    text-decoration: none;
}

.sentiment-overview {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    margin-top:20px;
}

.sentiment-overview h3 {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 20px;
    font-weight: 500;
}

.sentiment-content {
    display: flex;
    justify-content: space-between;
}

.sentiment-numbers {
    display: flex;
    gap: 30px;
}

.sentiment-item {
    display: flex;
    flex-direction: column;
}

.sentiment-value {
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.sentiment-icon {
    font-size: 20px;
    margin-left: 5px;
}

.for .sentiment-value, .for .sentiment-icon {
    color: #10B981;
}

.against .sentiment-value, .against .sentiment-icon {
    color: #EF4444;
}

.neutral .sentiment-value, .neutral .sentiment-icon {
    color: #F59E0B;
}

.sentiment-label {
    font-size: 12px;
    color: #6B7280;
}

.sentiment-chart {
    flex-grow: 1;
    height: 200px;
    background-color: #F3F4F6;
    border-radius: 8px;
    margin-left: 30px;
}

.key-themes {
    background-color: white;

    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.key-themes h3 {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 15px;
    font-weight: 500;
}

.theme-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.theme-name {
    flex: 1;
    font-size: 12px;
    color: #1F2937;
}

.theme-bar {
    flex: 2;
    height: 8px;
    background-color: #E5E7EB;
    border-radius: 4px;
    margin: 0 15px;
}

.theme-progress {
    height: 100%;
    background-color: #EC4899;
    border-radius: 4px;
}

.theme-percentage {
    font-size: 12px;
    color: #6B7280;
    width: 40px;
    text-align: right;
}
.sentiment-overview {
  background-color: white;
  border-radius: 12px;
  padding: 0px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.sentiment-overview h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
.sentiment-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sentiment-numbers {
  display: flex;
  gap: 40px;
}
.sentiment-item {
  text-align: center;
}
.sentiment-value {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sentiment-icon {
  font-size: 20px;
  margin-left: 5px;
}
.for .sentiment-value, .for .sentiment-icon {
  color: #4CAF50;
}
.against .sentiment-value, .against .sentiment-icon {
  color: #F44336;
}
.neutral .sentiment-value, .neutral .sentiment-icon {
  color: #FFC107;
}
.sentiment-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}
.sentiment-chart {
  flex-grow: 1;
  margin-left: 40px;
}
.chart-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/**====================================
 * 
 * ==================================**/
.box-label-val{
  background-color: #ffffff;
  border-radius: 50px;
  border:1px solid #EFF0F6;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
  font-size: 16px;
  font-weight: 600;
  color: #9197B3;
  height: 38px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.box-label-val span{
  font-weight: 700;
  color: #000000;
}
.select-frm .select2-container{
  width: 100% !important;
}
.select-frm .select2-container--default .select2-selection--single{
  border: 1px solid #0E294B;
  border-radius: 12px;
  -webkit-box-shadow: 0px 10px 60px 0px #E2ECF980;
  -moz-box-shadow: 0px 10px 60px 0px #E2ECF980;
  box-shadow: 0px 10px 60px 0px #E2ECF980;
  height: 38px;
}
.select-frm .select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: 36px;
  color: #000000;
  font-size: 16px;
  padding-right: 40px;
}
.select-frm .select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 36px;
  width: 40px;
}
.select-frm .select2-container--default .select2-selection--single .select2-selection__placeholder{
  color: #9197B3;
  font-size: 16px;
  font-weight: 600;
}
.bk-filter-table{
  display: flex;
  gap: 10px;
}

.bk-filter-table > div{
  flex: 1 0 1;
}
.select-frm .select2-selection__arrow{
  background-image: url(../images/arrow-select.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.select-frm .select2-selection__arrow b{
  display: none;
}
.select2-dropdown{
  border-color: #0E294B;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background-color: #1B365D;
}
.table-actions{
  display: flex;
  gap:10px;
  align-items: center;
}
.table-actions a{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-sty td{
  color: #000000;
  font-weight: 600;
  font-size: 14px;
}
.table-content{
  background-color: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
}
.table-sty thead{
 background-color: #0E294B; 
}
.table-sty thead th{
  padding: 12px 10px;
}
.table-sty thead th:first-child{
  padding-left: 30px;
  border-left: 0;
}
.table-sty thead th:last-child{
  padding-right: 30px;
  border-right: 0;
}
.table-sty tbody td:first-child{
  padding-left: 30px;
  border-left: 0;
}
.table-sty tbody td:last-child{
  padding-right: 30px;
  border-right: 0;
}
.table-sty tbody td{
  padding: 12px 10px;
  vertical-align: middle;
}
.table-sty thead th{
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
}
.table-sty tbody tr:last-child td{
  border-bottom:0;
}
.table-sty{
  border-color: #9197B3;
}
.table-sty tbody tr td{
  border-left: 0 !important;
  border-right: 0 !important;
}
.table-sty thead th{
  border-color: #ffffff;
}
.box-label-val{
  max-width: 350px;
}
.btn-view{
  border:1px solid #0E294B;
  border-radius: 50px;
  padding: 6px 20px;
  color: #0E294B;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  gap: 10px;
  box-shadow: none !important;
  outline: none !important;
}
.align-center{
  text-align: center;
}
.sty-checkbox{
  position: relative;
  display: inline-flex;
}
.sty-checkbox input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin:0;
  cursor: pointer;
  z-index: 1;
}
.checkbox-circle{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border:2px solid #9197B3;
  position: relative;
}
.checkbox-circle:before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D91B5B;
  opacity: 0;
}
.sty-checkbox input:checked ~ .checkbox-circle:before{
  opacity: 1;
}
.modal-sty .modal-body{
  padding: 40px;
}
.modal-sty .modal-content{
  border-radius: 30px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  -moz-box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  border:0;
}
.content-modal-views{
  background-color: rgba(14, 41, 75, 0.15);
  border-radius: 30px;
  padding: 25px;
}
.content-modal-views h3{
  color: #9197B3;
  font-size: 14px;
  font-weight: 600;
}
.content-modal-views p{
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}
.actions-email-modal{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 100px;
  margin-bottom: 50px;
}
.actions-email-modal label{
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.action-item-email{
  display: flex;
  gap: 30px;
  align-items: center;
}
.approve-action{
  display: flex;
  gap: 20px;
}
.approve-action img{
  width: 30px;
}
.record-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-page-record{
  display: flex;
  align-items: center;
  gap: 5px;
}
.title-page-record h3{
  margin: 0;
  color: #0E294B;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  gap: 5px;
}
.title-page-record h3 span{
  color: #9197B3;
}
.title-page-record p{
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.btn-white{
  background-color: #FFFFFF;
  color: #0E294B;
  font-size: 18px;
  font-weight: 600;
  border:1px solid #0E294B;
  border-radius: 12px;
  outline: none !important;
  display: flex;
  gap: 10px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  -moz-box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  padding: 6px 20px;
  align-items: center;
}
.btn-white img{
  width: 15px;
}
.btn-white:hover{
  background-color: #ffffff;
}
.tabs-sty{
  border:0;
  gap: 10px;
}
.tabs-sty .nav-link{
  border:0;
  background-color: rgba(14, 41, 75, 0.28);
  border-radius: 15px 15px 0 0;
  color: rgba(14, 41, 75, 1);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
}
.tab-content-sty{
  background-color: #FFFFFF;
  border-radius: 0 30px 30px 30px;
  padding: 20px;
}
.frm-item-rw label{
  color: rgba(145, 151, 179, 1);
  font-size: 16px;
  font-weight: 600;
}
.frm-value{
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(14, 41, 75, 1);
}
.frm-value p{
  margin-bottom: 0;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
}
.frm-value a{
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline !important;
  display: block;
}
.box-email-content{
  background-color: rgba(14, 41, 75, 0.15);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  -moz-box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.15);
  padding: 20px;
  border-radius: 30px;
}
.email-content-body h3{
  color: rgba(14, 41, 75, 1);
  font-size: 16px;
  font-weight: 600;
}
.email-content-body p{
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
}
.email-content-head{
  margin-bottom: 20px;
}
.email-content-head h3{
  color: rgba(145, 151, 179, 1);
  font-size: 18px;
  font-weight: 600;
}
.box-sender{
  background-color: rgba(226, 236, 249, 0.5);
  margin-left: 80px;
}
.box-recive{
  margin-right: 80px;
}
.form-sty .form-control{
  border-radius: 0;
  border:0;
  border-bottom: 1px solid rgba(14, 41, 75, 1);
  box-shadow: none;
  outline: none;
  height: 38px;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  background-color: rgba(217, 217, 217, 0.3);
}

.form-sty .select2-container{
  width: 100% !important;
}
.form-sty .select2-container--default .select2-selection--single{
  border:0;
  border-bottom: 1px solid #0E294B;
  border-radius: 0;
  -webkit-box-shadow: 0px 10px 60px 0px #E2ECF980;
  -moz-box-shadow: 0px 10px 60px 0px #E2ECF980;
  box-shadow: 0px 10px 60px 0px #E2ECF980;
  height: 38px;
  background-color: rgba(217, 217, 217, 0.3);
}
.form-sty .select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: 36px;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  padding-right: 40px;
}
.form-sty .select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 36px;
  width: 40px;
}
.form-sty .select2-container--default .select2-selection--single .select2-selection__placeholder{
  color: #9197B3;
  font-size: 20px;
  font-weight: 600;
}
.form-sty .select2-selection__arrow{
  background-image: url(../images/arrow-select.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.form-sty .select2-selection__arrow b{
  display: none;
}
.form-sty textarea.form-control{
  height: 150px;
  background-color: rgba(217, 217, 217, 0.3);
  resize: vertical;
  resize: none;
}
.title-page h2{
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}
.box-content-white{
  background-color: #ffffff;
  border-radius: 30px;
  padding: 25px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.5);
  -moz-box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.5);
  box-shadow: 0px 10px 60px 0px rgba(226,236,249,0.5);
}
.title-group{
  color: #9197B3;
  font-size: 20px;
  font-weight: 600;
}
.group-checkbox-list{
  padding-bottom: 10px;
  border-bottom: 1px solid #0E294B;
}
.checkbox-item-select{
  position: relative;
  background-color: rgba(217, 217, 217, 0.3);
  padding: 3px 5px;
  margin-bottom: 5px;
  cursor: pointer;
}
.checkbox-label-item{
  color: #000000 !important;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  display: block;
  width: 100%;
  position: relative;
  padding-right: 25px;
}
.checkbox-squre{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0
}
.checkbox-label-item:before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #0E294B;
  background-color: #ffffff;
}
.checkbox-label-item:after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: #E4184A;
  opacity: 0;
}
.checkbox-item-select input:checked ~ .checkbox-label-item:after{
  opacity: 1;
}
.note-textarea{
  color: #9197B3;
  font-size: 14px;
  font-weight: 600;
}
.flex-none > div{
  flex: none;
}
.box-title-white{
  color: #9197B3;
  font-size: 14px;
  font-weight: 600;
}
.box-state-skin{
  background-color: rgba(14, 41, 75, 0.09);
  border-radius: 15px;
  padding: 15px;
}
.box-state-skin h3{
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.state-list-txt{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.state-list-txt p{
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  font-size: 14px;
}
.state-list-txt p span{
  display: block;
  font-size: 20px;

}
.item-progress h3{
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.progress-bk{
  display: flex;
  gap: 20px;
  align-items: center;
}
.progress-bk-number{
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-weight: 600;
  width: 50px;
  flex: 50px 0 0;
  text-align: right;
}
.progress-bk-line{
  width: 100%;
}
.progress-bk-line .progress{
  background: rgba(14, 41, 75, 0.2);
  height: 20px;
  border-radius: 100px;
}
.progress-bar{
  background: linear-gradient(143.13deg, #D91B5B 5.36%, rgba(217, 27, 91, 0.52) 94.64%);
  border-radius: 100px;
}
.hiy-full{
  height: calc(100% - 1rem);
}
.chart-lines{
  display: flex;
  height: calc(100% - 100px);
  gap: 20px;
  justify-content: end;
}
.chart-line-item{
  display: flex;
  flex-direction: column;
  flex-direction: column-reverse;
  gap: 20px;
  text-align: center;
  align-items: center;
  justify-content: end;
  flex: auto;
}
.chart-line-pic{
  background: linear-gradient(143.13deg, #D91B5B 5.36%, rgba(217, 27, 91, 0.52) 94.64%);
  width: 20px;
  border-radius: 100px;
}
.title-chart-line{
  text-align: center;
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  margin-top: 30px;
}
input[readonly] {
  background-color: #c1c1c1bf !important;
  color: #737373 !important;
  cursor: not-allowed;
}
/* Styles for both readonly inputs and disabled select boxes */
input[readonly],
select.form-control[disabled] + .select2-container .select2-selection {
  background-color: #c1c1c1bf !important;
  color: #737373 !important;
  cursor: not-allowed !important;
  border-color: #a0a0a0 !important;
}

/* Specific styles for Select2 when the select is disabled */
select.form-control[disabled] + .select2-container .select2-selection {
  
}

/* Style for the Select2 arrow when disabled */
select.form-control[disabled] + .select2-container .select2-selection .select2-selection__arrow b {
  border-color: #737373 transparent transparent transparent !important;
}

/* Style for the Select2 placeholder text when disabled */
select.form-control[disabled] + .select2-container .select2-selection .select2-selection__rendered {
  color: #737373 !important;
}

/* Remove hover effects on disabled Select2 */
select.form-control[disabled] + .select2-container .select2-selection:hover,
select.form-control[disabled] + .select2-container .select2-selection:focus {
  outline: none !important;
  box-shadow: none !important;
}