* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html {
  width: 100%;
}

a:focus,
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

a,
button {
  color: var(--blue-col);
  font-size: 14px;
  line-height: 17px;
  text-decoration: none;
  transition: .5s;
  cursor: pointer;
}

a:hover {
  color: var(--blue-col);
}

button:focus {
  outline: none;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--text_black);
}

h1 {
  margin-bottom: 32px;
  font-family: var(--family_font);
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  margin: 0 0 24px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--text_black);
  margin: 0 0 24px;
}

h2 {
  margin: 0 0 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 74px;
  color: var(--text_black);
}

h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 37px;
  color: var(--text_white);
  margin-bottom: 32px;
}

h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

img {
  max-width: 100%;
}


/* custom spacings */
.mt-7 {
  margin-top: 7px;
}

.mt-40 {
  margin-top: 40px;
}

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

.mt-50 {
  margin-top: 50px;
}

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

:root {
  --black-txt: #000000;
  --white-txt: #ffffff;
  --bg-purple: linear-gradient(180deg, #6987E9 0%, #6190D7 100%);
  --bg-gray: #E2E2E2;
  --blue-col: #324B9D;
  --sidebar-txt: #DCE4FF;
  --sidebar-hover: #4D67BD;
  --inp-bg: #F9F9F9;
  --inp-txt: #888888;
  --border: #cccccc;
  --lightgray-txt: #F9F9F9;
  --darkgray-text: #6F6F6F;
  --head-txt: #11142D;
  --dd-bg: #FBFBFB;
  --gray-txt: #888888;
  --lightgreen-txt: #42BDA1;
  --tog-bg: #D9E2FF;
  --dot-bg1: #324B9D;
  --dot-bg2: #7BB0FF;
  --dot-bg3: #2E62B0;
  --dot-bg4: #3883F2;
  --dot-bg5: #54B7FF;
  --thead-bg: #F9F9FF;
  --table-bor: #EBEBEB;
  --togbg-dis: #F3F3F3;
  --tog-dis: #D9D9D9;
  --br-col: #EEEEEE;
  --arr: #777777;
  --main-bg: #F8F7FD;
  --blu-lt: #F5F8FF;
  --red-star: #ff0000;
  --purple-cardbg1: #566EBD;
  --purple-cardbg2: #6DA6FA;
  --purple-cardbg3: #2E62B0;
  --purple-cardbg4: #588AD5;
  --lt-purple-border: #e1e1fb;
}

body {
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  overflow-x: hidden;
  color: var(--black-txt);
  background-color: var(--white-txt);
  position: relative;
  margin: 0;
}

.form-control:focus {
  box-shadow: none;
}

.blu-btn {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--white-txt);
  background: var(--blue-col);
  border: 1px solid var(--blue-col);
  border-radius: 8px;
  display: block;
  height: 60px;
  padding: 18px 30px;
  text-align: center;
  width: 100%;
}

.blu-btn:hover {
  text-decoration: none;
  color: var(--blue-col);
  background: var(--white-txt);
}

.white-btn {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  background: var(--white-txt);
  color: var(--blue-col);
  border: 1px solid var(--blue-col);
  border-radius: 8px;
  display: block;
  height: 60px;
  padding: 18px 30px;
  text-align: center;
  width: 100%;
}

.white-btn:hover,
.bluelt-btn:hover {
  text-decoration: none;
  color: var(--white-txt);
  background: var(--blue-col);
}

.bluelt-btn {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  background: var(--blu-lt);
  color: var(--blue-col);
  border: 1px solid var(--blue-col);
  border-radius: 8px;
  display: block;
  height: 60px;
  padding: 18px 30px;
  text-align: center;
  width: 100%;
}

.blu-btn-head {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-txt);
  background: var(--blue-col);
  border: 1px solid var(--blue-col);
  border-radius: 8px;
  padding: 6px 20px;
  height: 45px;
}

.blu-btn-head:hover {
  text-decoration: none;
  color: var(--blue-col);
  background: var(--white-txt);
}

.btn-inline{
  display: inline-block;
  width: auto;
}

.form-group .form-control {
  background: var(--inp-bg);
  color: var(--inp-txt);
  border-color: var(--border);
  height: 60px;
  border-radius: 8px;
}

.input-group .form-control {
  background: var(--inp-bg);
  color: var(--inp-txt);
  border-color: var(--border);
  height: 45px;
}

.input-group.search-input {
  position: relative;
}

.form-group label {
  font-size: 17px;
  margin-bottom: 13px;
}

.form-wrapper {
  /* background: var(--bg-purple); */
  background: url("../images/sgi-bg-image.png");
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
}
.main-wraper.wrap2 .form-wrapper {
  min-height: 0;
  background: none;
}

.star_red {
  color: var(--red-star);
}

form .form-group.select-input , div .form-group.select-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.logo-img {
  text-align: center;

}

.pg-title {
  text-align: center;
  margin-top: 15px;
}

.pg-title p {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  margin: 0;
}

.table {
  border: 0;
  border-radius: 10px;
  margin: 0;
}

.table thead th {
  background: var(--thead-bg);
  color: var(--head-txt);
  height: 64px;
  vertical-align: middle;
  font-weight: 600;
  border: none;
}

.table tbody tr:first-child td {
  border-top: 0;
}

.table tbody tr td {
  padding: 20px 12px;
  text-align: center;
  color: var(--inp-txt);
  background: var(--white-txt);
}

.table-bordered td,
.table-bordered th {
  border-right: 1px solid var(--table-bor);
  border-left: 0;
  border-bottom: 0;
}

.table-bordered td:last-child,
.table-bordered th:last-child {
  border-right: 0;

}

.table tbody tr td a {
  font-weight: 500;
}

.table-overflow {
  box-shadow: 3px 3px 22px rgba(0, 0, 0, 0.08);
  overflow: auto;
  border-radius: 6px;
}

.table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.table thead th:last-child {
  border-radius: 0 10px 0 0;
}
.d-flexx{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* custom toggle */
.custom-toggle .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 21px;
  margin: 0;
}

.custom-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 2px;
  right: 0;
  bottom: 0;
  background-color: var(--togbg-dis);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
  width: 40px;
}

.custom-toggle .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 2px;
  bottom: 2px;
  background-color: var(--tog-dis);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.custom-toggle input:checked+.slider {
  background-color: var(--tog-bg);
  border-radius: 34px;
}


.custom-toggle input:checked+.slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
  background-color: var(--blue-col);
}

/* custom-checkbox */
.chkbox-lbl {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
}

.chkbox-lbl input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 14px;
  height: 22px;
  width: 22px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.chkbox-lbl:hover input~.checkmark {
  background-color: rgba(229, 229, 229, 1);
}

/* When the checkbox is checked, add a blue background */
.chkbox-lbl input:checked~.checkmark {
  background-color: rgba(37, 104, 203, 1);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chkbox-lbl input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.chkbox-lbl .checkmark:after {
  left: 8px;
  top: 3px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.search-dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 45px 0 30px;
}

.search-dropdown-row .form-group.select-input select {
  height: 45px !important;
}

.input-group.search-input {
  /* width: 365px; */
  /* change */
  width: 100%;
  position: relative;
}

.input-group.search-input input {
  padding-right: 42px;
  border-radius: 8px !important;
}

.input-group.search-input .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;

}

.form-group.select-input {
  width: 224px;
}

.form-group.select-input select {
  height: 60px !important;
  appearance: none;
  border-radius: 8px;
}

.form-group.select-input {
  position: relative;
  margin: 0;
}

.form-group.select-input .dd-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.btn-group {
  width: 100%;
}

.btn-group>a {
  width: 100%;
}

.btn-group>button:first-child {
  margin-right: 24px;
}

.main-wraper {
  width: calc(100% - 260px);
  min-height: calc(100vh - 85px);
  /* background: var(--main-bg); */
  background-image: url('../images/sgi-bg-image.png');
  /* change by yr */
  position: relative;
  left: 260px;
  top: 85px;
  padding: 28px 48px;
}

h2.card_row-head,
.card-box>h2 {
  font-weight: 600;
  font-size: 21px;
  line-height: 1.20;
  letter-spacing: 0.005em;
  color: var(--head-txt);
  margin-bottom: 22px;
}

.card-box {
  background: var(--white-txt);
  box-shadow: 3px 3px 22px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  width: 100%;
  min-height: 135px;
  padding: 25px 22px 22px 24px;
}

.card-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.card-box-head p {
  font-size: 18px;
  line-height: 22px;
  color: var(--gray-txt);
  margin: 0;
  min-height: 40px;
}

.card-box-head span {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--lightgreen-txt);
  margin-left: 15px;
}

.card-box-bottom {
  margin-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-box-bottom h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--black-txt);
  margin: 0;
  display: inline-block;
}

.card-box-bottom span {
  min-width: 50px;
  height: 50px;
  background: rgba(50, 75, 157, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.card-box>h2 {
  padding: 0 16px;
}

.card-child {
  display: flex;
}

.pie-chart {
  text-align: center;
}

.chart-row .card-box>h2 {
  margin-bottom: 28px;
}

.chart-row .table tbody tr td {
  text-align: left;
}

.head-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
}

.head-search-row h2.card_row-head {
  margin-bottom: 0;
  margin-right: 15px;
}

.btn-grp,
.fl-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-grp.report_popup{
  flex-wrap: nowrap;
}

.btn-grp button.blu-btn,
.btn-grp button.bluelt-btn {
  width: auto;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

.btn-grp button:last-child {
  margin-right: 0 !important;
}

.rt-head {
  display: flex;
  align-items: center;
}

.rt-head>:not(:last-child) {
  margin-right: 30px;
}

.pcd {
  padding: 5px 20px !important;
}

.inner-wrapper {
  border-radius: 6px;
  background: var(--light-system-background-primary, #FFF);
  box-shadow: 3px 3px 22px 0px rgba(0, 0, 0, 0.08);
}

.inner-wrapper .table thead th {
  padding: 10px 20px;

}

.inner-wrapper .table tbody tr td {
  padding: 20px;
  text-align: left;
  /* change by yr */
  text-align: center;
}

.blu-btn-head.btn-lt {
  background: var(--blu-lt);
  color: var(--blue-col);
}

.blu-btn-head.btn-lt:hover {
  background: var(--blue-col);
  color: var(--white-txt);
}

.btn-grp button:first-child {
  margin-right: 15px;
}

.cus-inp input,
.cus-inp select,
.cus-inp .cus-btn {
  border-radius: 6px;
  border: 1px solid #E1E0E0;
  background: #F8F8F8;
  /* width: 100%;
  change */
  width: 100%;
  height: 35px;
  padding: 5px 8px;
  color: #CCC;
  text-align: left;
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.075px;
  appearance: none;
   min-width: 90px;
  /*change */
  /* min-width: 130px; */
}

.cus-inp {
  position: relative;
}
.sel-grp .cus-inp::after{
  content: "";
  position: absolute;
  top: 13px;
  /* right: 20px;
  change */
  right: 10%;
  /* display: none; */
  padding-right: 3px;
  border-right: 1px solid var(--gray-txt);
  border-bottom: 1px solid var(--gray-txt);
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}

.cus-inp .cal-tog {
  position: absolute;
  right: 5px;
  top: 8px;
}

.cus-inp button.mdc-icon-button.mat-mdc-icon-button.mat-unthemed.mat-mdc-button-base {
  padding: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cus-inp .mat-mdc-icon-button .mat-mdc-button-touch-target {
  padding: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cus-inp .mat-mdc-icon-button svg {
  width: 16px;
}

.fl-wrap .cis-calendar {
  margin-bottom: 0;
}

.sel-grp {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:10px;
}

.cus-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-txt);
  background: var(--blue-col);
  border: 1px solid var(--blue-col);
  border-radius: 8px;
  padding: 6px 20px;
  height: 35px;
}

.cus-btn:hover {
  background: var(--blu-lt);
  color: var(--blue-col);
}

.fl-wrap>div,
.sel-grp>div {
  margin-right: 15px;
}

.dialogStyle-1 .mdc-dialog__surface,
.dialogStyle-2 .mdc-dialog__surface {
  overflow: visible !important;
}

.title-20 {
  font-size: 20px;
  color: #11142D;
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}


.dialogStyle-2 .mat-mdc-dialog-container,
.dialogStyle-1 .mat-mdc-dialog-container {
  margin: 40px 0;
}

.cdk-overlay-container .cdk-global-overlay-wrapper {
  overflow: auto;
}

/* .dialogStyle-1 {
  width: 520px;
}

.dialogStyle-2 {
  width: 700px;
} */

.dialogStyle-2 .mat-mdc-dialog-container .mdc-dialog__surface {
  background-image: url(../images/modal-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.mat-mdc-dialog-surface.mdc-dialog__surface{
  background-image: url(../images/modal-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}


.dialogStyle-2 .cis-field-wrap {
  max-width: 440px;
  margin: 0 auto;
}

.cis-calendar {
  margin-bottom: 25px;
}

.cis-calendar .cis-calendar-wrap {
  margin: 0 auto;
}

.cis-calendar .cis-calendar-wrap .mat-calendar {
  background-color: #FAFBFF;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.title-15 {
  font-size: 15px;
  color: #11142D;
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.modal-wrap {
  padding: 30px 20px;
}

.modal-wrap .mat-calendar-body-cell-content {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

.cis-calendar .cis-calendar-wrap .title-15 {
  background: #F7F7F7;
  padding: 16px 20px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.modal-content-wrap {
  padding: 0 7%;
}


.modal-content-wrap h2.title-20 {
  margin-bottom: 20px;
}

.cis-calendar .cis-calendar-wrap .mat-calendar-table-header th span {
  font-weight: 500;
}

button[mat-icon-button]:focus {
  outline: none;
}

/* change by yr */
.cis-calendar .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: var(--bg-blue);
  color: var(--black-txt);
  box-shadow: 0 4px 4px 0 rgba(96, 91, 255, .25);
}


.cis-calendar .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical):hover {
  background-color: var(--blue-col) !important;
}

.cis-field-wrap .title-20 {
  margin-bottom: 15px;
  font-weight: 400;
}

button.mat-mdc-raised-button {
  box-shadow: none;
}

.cis-field-wrap .mat-mdc-form-field {
  width: 100% !important;
}

.cis-btn {
  font-size: 20px;
  height: 60px !important;
  font-family: 'Inter', sans-serif;
}

.cis-btn.mdc-button--raised {
  background-color: #324B9D !important;
}

.cis-btn.mdc-button--outlined {
  border-color: #324B9D !important;
}

.mat-calendar-body-cell:focus {
  outline: none !important;
}

.modal-close {
  position: absolute !important;
  top: -15px;
  right: -15px;
  z-index: 1;
}

.cis-calendar .mat-calendar-previous-button,
.mat-calendar-next-button {
  -webkit-transform: translateY(-66px);
  transform: translateY(-66px);
}

.cis-calendar .mat-calendar-period-button {
  font-size: 14px !important;
}

.mat-primary:focus {
  outline: none;
}

.cis-calendar-wrap .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  background: var(--blue-col);
  width: 25px;
  height: 25px;
}

.cis-calendar-wrap button.mat-calendar-previous-button.mdc-icon-button.mat-mdc-icon-button.mat-unthemed.mat-mdc-button-base {
  margin-right: 8px;
}

.cis-calendar-wrap .mat-calendar-previous-button::after,
.cis-calendar-wrap .mat-calendar-next-button::after {
  border: 0;
}

.cis-calendar-wrap .mat-calendar-next-button::after,
.cis-calendar-wrap .mat-calendar-previous-button::after {
  border: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  margin: 0;
  transform: none;
  display: flex;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.cis-calendar-wrap .mat-calendar-next-button::after {
  background-image: url('../images/arrow-right.svg');
}

.cis-calendar-wrap .mat-calendar-previous-button::after {
  background-image: url('../images/arrow-left.svg');
}

.blue-add {
  margin-left: 10px;
}

.blu-btn-head .blue-add svg path {
  transition: .5s;
}

.blu-btn-head:hover .blue-add svg path {
  fill: var(--blue-col);
}

/* add-invite-modal */
/* div#cdk-overlay-2 {
  width: 815px;
} */


.add_invite-form .form-group {
  margin-bottom: 35px;
  width: 102%;
}

.dialogStyle-2 .mat-mdc-dialog-container#mat-mdc-dialog-2 .mdc-dialog__surface {
  background-image: none;
}

.modal-content-wrap.invite-list-wrap h2.title-20 {
  margin-bottom: 30px;
}

.head-search-row.stats {
  padding: 0 0 30px 0;
}

.head-table-row {
  padding: 18px 20px;
  background: var(--white-txt);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.head-table-row h2.card_row-head {
  margin-bottom: 0;
  font-weight: 500;
}

.inr-wrapper {
  box-shadow: 3px 3px 22px 0px rgba(0, 0, 0, 0.08);
  overflow: auto;
}


.inr-wrapper .table-overflow {
  box-shadow: none;
}

.inr-wrapper .table-overflow,
.inr-wrapper .table {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.lt-bg {
  background: var(--thead-bg);
}

.report-form .form-group{
  margin-bottom: 20px;
}
div#cdk-overlay-5 {
  width: 896px;
}
.rep-btns{
  margin-top: 34px;
}
.rep-btns .blu-btn-head.btn-lt{
  /* height: 60px; */
  /* change */
  max-height: 43px;
  padding: -1px 28px;
}
.rep-btns .blu-btn-head.btn-lt>span{
  margin-left: 8px;
}
.property-form a.btn-full-width {
  margin-top: 0;
}
.rep-wrapper{
  border-radius: 6px;
  background: var(--white-txt);
  box-shadow: 3px 3px 22px 0px rgba(0, 0, 0, 0.08);
  position: relative;
}
.rep-wrapper .head-table-row{
  text-align: center;
  min-height: 80px;
}
.wrap-logo{
  position: absolute;
  left: 15px;
  top: 18px;
}
.wrap-logo img{
  width: 60px;
}
.ep-head{
  padding: 20px;
  background: var(--thead-bg);
}
.ep-head p{
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08px;
  color: var(--head-txt);
}
.ep-head p.active{
  color: var(--lightgreen-txt);
}
.head-h2-row{
  padding: 20px;
}
.head-h2-row h2.card_row-head{
  margin-bottom: 30px;
}
.flx-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}




.modal-wrap.calendar-wrap{
  padding: 30px 70px;
  width: 580px;
}
.modal-wrap.add-guest-wrap{
  width: 813px;
}

.modal-wrap.add-hg-group-wrap{
  width: 645px;
  height: 380px;
}

.modal-wrap.edit-hg-group-wrap{
  width:1200px;
  overflow: auto;
  max-width: 100%;
}

.modal-wrap.invite-wrap{
  width: 813px;
  /* padding: 30px 110px; */
  /* change yr */
  padding: 30px 70px;
}

.modal-wrap.reports-wrap{
  width: 896px;
  padding: 30px 50px;
}

/* expansion */
.modal-wrap.add-area-wrap{
  width: 645px;
  min-height: 380px;
}

.modal-wrap.confirm-wrap{
  width: 645px;
}

.modal-wrap.area-split-wrap {
  width: 1295px;
  overflow: auto;
  max-width: 100%;
}

.modal-wrap.area-split-wrap>.row{
  width: 100%;
  margin: 0 auto;
}
.modal-wrap.area-split-wrap>.row .col-12{
  padding: 0;
}
.mat-mdc-dialog-surface.mdc-dialog__surface{
  overflow: hidden;
}

.mat-mdc-dialog-container .mdc-dialog__surface{
  overflow: visible;
}

.main-wraper2{
  border-radius: 6px;
  background: var(--light-system-background-primary, var(--white-txt));
  box-shadow: 3px 3px 22px 0px rgba(0, 0, 0, 0.08);
  padding: 120px 70px 40px;
}
.h-mainbox{
  width: 550px;
  padding: 20px;
  margin: 0 auto 40px ;
  text-align: center;
}
.h-mainbox h2{
  color: var(--black-txt);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 30px 15px 15px 15px;
  position: relative;
}
ul.h-mainbox-list, .h-childbox-list{
  text-decoration: none;
  padding-left: 0;
}
ul.h-mainbox-list li {
  display: inline-block;
  color: var(--gray-txt);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
ul.h-mainbox-list li:not(:last-child){
  margin-right: 15px;
}
.h-childbox{
  width: 180px;
  padding: 20px;
  margin: 0 25px 50px 25px;
  position: relative;
}
.h-childbox::before{
  content: "";
  background-image: url(../images/hie-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -25px;
  left: 50%;
  width: 20px;
  height: 23px;
  transform: translateX(-50%);
}
.h-childbox h3{
  color: var(--black-txt);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  text-align: left;
  margin-bottom: 6px;
}
.h-childbox-list{
  text-decoration: none;
  padding-left: 0;
  list-style-type: none;
  text-align: left;
  margin-bottom: 0;
}
.h-childbox-list li{
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}
.h-childbox-parent{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.h-mainbox-head {
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-mainbox-head .dd-icon{
  margin-top: 13px;
}
.h-child-pr{
  position: relative;
}
.h-child-pr::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  background: #000000;
  height: 1px;
  width: 100%;
}
.national .h-childbox.active{
  background: var(--purple-cardbg1);
  color: var(--white-txt);
}
.national .h-childbox.active h3{
  color: var(--text_white)
}
.national, .area, .chapter{
  margin-bottom: 60px;
}
.national .h-childbox-parent .h-child-pr:first-child:after {
  content: "";
  position: absolute;
  top: -27px;
  left: 0;
  background: #ffffff;
  height: 3px;
  width: 114px;
}
.national .h-childbox-parent .h-child-pr:nth-child(6):after {
  content: "";
  position: absolute;
  top: -27px;
  right: 0;
  background: #ffffff;
  height: 3px;
  width: 114px;
}
.national .h-childbox-parent .h-child-pr:nth-child(7):after {
  content: "";
  position: absolute;
  top: -27px;
  left: 0px;
  background: #ffffff;
  height: 3px;
  width: 114px;
}
.national .h-childbox-parent .h-child-pr:last-child:after {
  content: "";
  position: absolute;
  top: -27px;
  right: 0;
  background: #ffffff;
  height: 3px;
  width: 114px;
}
.area .h-childbox.active{
  background: var(--purple-cardbg2);
  color: var(--white-txt);
}
.area .h-childbox.active h3{
  color: var(--text_white)
}
.area .h-childbox, .chapter .h-childbox{
  margin: 0 50px 50px 50px;
}
.area .h-childbox-parent .h-child-pr:first-child:after, .chapter .h-childbox-parent .h-child-pr:first-child:after {
  content: "";
  position: absolute;
  top: -27px;
  left: 0;
  background: #ffffff;
  height: 3px;
  width: 139px;
}
.area .h-childbox-parent .h-child-pr:nth-child(5):after, .chapter .h-childbox-parent .h-child-pr:nth-child(5):after {
  content: "";
  position: absolute;
  top: -27px;
  right: 0;
  background: #ffffff;
  height: 3px;
  width: 139px;
}
.chapter .h-childbox.active{
  background: var(--purple-cardbg3);
  color: var(--white-txt);
}
.chapter .h-childbox.active h3{
  color: var(--text_white)
}
.disrict .h-childbox{
  width: 160px;
  margin: 0 7px 50px 7px;
  background: var(--purple-cardbg4);
  color: var(--white-txt);
}
.disrict .h-childbox h3{
  color: var(--text_white);
}
.disrict .h-childbox-parent .h-child-pr:nth-child(1):after {
  content: "";
  position: absolute;
  top: -27px;
  left: 0px;
  background: #ffffff;
  height: 3px;
  width: 86px;
}
.disrict .h-childbox-parent .h-child-pr:nth-child(8):after {
  content: "";
  position: absolute;
  top: -27px;
  right: 0;
  background: #ffffff;
  height: 3px;
  width: 86px;
}
.main-wraper2{
  position: relative;
}
.hierarchy-select{
  position: absolute;
  top: 20px;
  left: auto;
  right: 50px;
}
.hierarchy-select label{
  color: var(--text_black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.hierarchy-select .cus-inp select{
      color: var(--gray-txt);
  }
.hierarchy-select .cus-inp::after{
      content: "";
      position: absolute;
      top: 13px;
      right: 20px;
      border-right: 1px solid var(--gray-txt);
      border-bottom: 1px solid var(--gray-txt);
      width: 5px;
      height: 5px;
      transform: rotate(45deg);
  }

.hierarchy-select .cus-inp select{
  width: 140px;
}
button:disabled,
button[disabled]{
/* border: 1px solid #999999; */
/* background-color: #cccccc; */
/* color: #666666; */
cursor: not-allowed;
/* background-color: rgb(229, 229, 229) !important; */
}


.head-search-row.comm-head{



  border-bottom: 1px solid var(--lt-purple-border);
  padding: 30px 20px 20px;
  margin: 0 15px;
}
.cm-pad-wrap{
  padding: 40px 35px;
}
.cm-pad-wrap .form-group .form-control{
  width: 490px;
}
.cm-pad-wrap .form-group{
  margin-bottom: 35px;
}
.cm-pad-wrap .row{
  align-items: center;
}
.contact-img>img{
  max-width: 80%;
}
.cm-pad-wrap button.blu-btn{
  margin-top: 15px;
}
.section-wrapper {
  border-bottom: 1px solid var(--lt-purple-border);
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.section-wrapper:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.section-wrapper .sub-head{
  color: var(--head-txt);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08px;
}
.section-wrapper p{
  color: var( --inp-txt);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.075px;
}
.main-wraper .register-form{
  width: 100% !important;
  margin: 0 !important;
}
.main-wraper.wrap2{
  min-height: 0;
  height: 100%;
}
.main-wraper.wrap2 .form-wrapper{
  min-height: 0;
  overflow-y: hidden;
}
.main-wraper.wrap2 .form-wrapper .register-form{
  border-radius: 0;
}
.inner-overflow-wrap{
  max-height: 65vh;
  overflow: auto;
  padding: 0px 15px;
}
.modal-wrap.calendar-wrap .cis-calendar-wrap button.mat-calendar-previous-button.mdc-icon-button.mat-mdc-icon-button.mat-unthemed.mat-mdc-button-base, .cis-calendar-wrap .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  position: relative;
  top: -20px;
}

/* .success-snackbar {
  background: rgb(45, 91, 192);
  color: white;
  font-size: 20px;
}

.fail-snackbar {
  background: #F44336;
  color: white;
} */

/* .mat-mdc-snack-bar-container.mdc-snackbar__surface {
  border-radius: var(--mdc-snackbar-container-shape);
  background-color: green;
} */
/* .mat-mdc-snack-bar-container {
  &.blue-snackbar {
    --mdc-snackbar-container-color: #2196f3;
    --mat-mdc-snack-bar-button-color: #fff;
    --mdc-snackbar-supporting-text-color: #fff;
  }
} */


/* Responsive */
/* @media only screen and (max-width: 1600px) {
  .main-wraper {
      padding: 25px 30px;
  }

} */

/* @media only screen and (max-width: 1440px) {
  .card-box {
      padding: 22px 15px 22px 15px;
  }

  .card-box-head p {
      font-size: 16px;
      line-height: 20px;
  }

  .card-box-bottom h3 {
      font-size: 21px;
      line-height: 26px;
  }

  .card-child {
      padding: 0 8px;
  }
} */

/* @media only screen and (max-width: 1199px) {
  .main-wraper {
      padding: 25px 20px;
  }

  .card-child {
      margin-bottom: 15px;
  }

  .card-box {
      padding: 18px 12px 18px 12px;
  }
}

@media only screen and (max-width: 991px) {
  .main-wraper {
      width: 100%;
      left: 0;
  }
} */



/* @media only screen and (max-width: 767px) {

  .blu-btn,
  .white-btn {
      font-size: 15px;
      height: 50px;
      line-height: 30px;
      padding: 10px;
  }

  .btn-group>button:first-child {
      margin-right: 10px;
  }
} */

/* @media only screen and (max-width: 576px) {
  .btn-group {
      flex-direction: column;
  }

  .btn-group>button:first-child {
      margin: 0 0 10px 0;
  }
  .head-search-row.comm-head {
      padding: 25px 0px 15px;
  }
  .cm-pad-wrap {
      padding: 25px 20px;
  }

} */

/* .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full, .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #4046ff;
} */

.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full, .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #324b9d !important;
}

/* .mat-mdc-select-placeholder{
  background: var(--inp-bg);
  color: var(--inp-txt) !important;
  border-color: var(--border);
  height: 60px;
  border-radius: 8px;
}
.mat-mdc-select-value {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 10px;
  font-weight: 500;
  color:gray !important;
}

.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 0 !important;
  padding-bottom:0 !important;
} */

.multiselect-input .mat-mdc-select-trigger{
  padding-top: 0.7rem;
  font-weight: 500;
  color: #a3a3a3 !important;
}
.multiselect-input .mat-mdc-select-placeholder{
  /* color: #a3a3a3 !important; */

      background: var(--inp-bg);
      color: var(--inp-txt) !important;
      border-color: var(--border);
      height: 60px;
      border-radius: 8px;

}

.multiselect-input .mat-mdc-select-min-line{
  color: #a3a3a3;
}

.main_rowOuter{
  margin-bottom: 50px;
}


/* .mat-calendar-previous-button{
  position: absolute !important;
  left: 50%;
  top: 1%;
}
.mat-calendar-next-button{
  position: absolute !important;
  left: 80%;
  top : 20%;
} */
#mat-datepicker-0 > mat-calendar-header > div > div > button.mat-calendar-previous-button.mdc-icon-button.mat-mdc-icon-button.mat-unthemed.mat-mdc-button-base{
  position: absolute !important;
  left: 50%;
  top: 1%;
}

#mat-datepicker-0 > mat-calendar-header > div > div > button.mat-calendar-next-button.mdc-icon-button.mat-mdc-icon-button.mat-unthemed.mat-mdc-button-base{
  position: absolute !important;
  left: 80%;
  top : 20%;
}





.outer_container{
  /* height: 100vh; */
  /* margin: 10% auto; */
}
.bg-image {
  background-image: url('../images/sgi-bg-image.png');
  background-size: cover;
  background-attachment: fixed;
  margin: 0; /* Remove default margin to ensure full coverage */
  padding: 0; /* Remove default padding */
  height: 100%;
}


.validation-input-popup{
  margin: 10px auto;
}

/* spinner */
.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle, .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic {
  stroke: white !important;
}


#dynamic_division_chart,#dynamic_division_bar,#member_attendance_bar , #division_bar ,#bar,
#bar1,#bar2,#bar3{
    display: block;
    box-sizing: border-box;
    height: 200px;
    width: 341px;
}
