.sidebar nav {
  border: 0;
}

a {
  cursor: pointer;
  text-decoration: none !important;
}

.default-btn {
  background: var(--primary);
  border-radius: 0.5rem;
  text-align: center;
  width: 100%;
  max-width: 226px;
  height: 52px;
  line-height: 52px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: var(--white) !important;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.default-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 5px rgba(14, 73, 122, 0.2);
  color: var(--white);
}
.default-btn:active {
  background: #0C3C65;
  transform: translate(0);
  color: var(--white);
}

.delete-modal .modal-dialog {
  max-width: 340px;
}
.delete-modal .modal-content {
  padding: 60px 20px;
  text-align: center;
}
.delete-modal .modal-content .close-btn {
  background: #F1F8FD;
  box-shadow: inset 0px -1px 0.5px rgba(14, 14, 44, 0.4);
  border-radius: 8px;
  position: absolute;
  font-size: 25px;
  top: 10px;
  right: 10px;
  padding: 4px;
  width: 32px;
  height: 32px;
  color: var(--primary);
  opacity: 1;
}
.delete-modal .modal-content .delete-img {
  margin-bottom: 30px;
}
.delete-modal .modal-content .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  margin-bottom: 10px;
}
.delete-modal .modal-content .text {
  margin-bottom: 30px;
}

.white-btn {
  background: var(--white);
  border-radius: 0.5rem;
  text-align: center;
  width: 100%;
  max-width: 226px;
  height: 52px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 52px;
  color: var(--primary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 5px rgba(14, 73, 122, 0.2);
}
.white-btn:active {
  background: var(--secound);
  transform: translate(0);
}

.skip-btn {
  background: var(--secound);
  border-radius: 0.5rem;
  text-align: center;
  width: 100%;
  max-width: 226px;
  height: 52px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 52px;
  color: var(--primary);
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.skip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 5px rgba(14, 73, 122, 0.2);
}
.skip-btn:active {
  background: var(--secound);
  transform: translate(0);
}

.delete-btn {
  background: var(--alert);
  border-radius: 0.5rem;
  text-align: center;
  width: 100%;
  max-width: 226px;
  height: 52px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 52px;
  color: var(--white);
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.delete-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 3px 5px rgba(14, 73, 122, 0.2);
}
.delete-btn:active {
  background: var(--alert);
  transform: translate(0);
}

.link-head {
  background: var(--secound);
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  padding: 10px 30px;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
  font-weight: 500;
}
.link-head i {
  margin-right: 20px;
}

.sidebar-collapse .link-head span {
  display: none;
}

.cust-check {
  float: left;
  width: 100%;
  color: #555555;
}
.cust-check .repeat-check {
  float: left;
  display: inline-block;
  position: relative;
  line-height: 1;
  margin: 5px 2px 5px 0;
  width: 100%;
}
.cust-check .repeat-check input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 100%;
  cursor: pointer;
  margin: 0;
  z-index: 9;
}
.cust-check .repeat-check .check-btn {
  border: 2px solid var(--primary);
  width: 16px;
  height: 16px;
  padding: 1px;
  opacity: 1;
  cursor: pointer;
  float: left;
  margin-right: 10px;
  border-radius: 5px;
}
.cust-check .repeat-check .check-btn span {
  width: 10px;
  height: 10px;
  display: block;
  position: relative;
}
.cust-check .repeat-check .check-btn span i {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  opacity: 0;
  margin: 0 !important;
  padding: 0 4px !important;
  color: var(--primary);
}
.cust-check .repeat-check input:checked ~ .check-btn {
  border: 2px solid var(--primary);
}
.cust-check .repeat-check input:checked ~ .check-btn span {
  color: var(--border);
}
.cust-check .repeat-check input:checked ~ .check-btn span i {
  opacity: 1;
}
.cust-check .repeat-check .policy {
  float: left;
  font-size: 14px;
  line-height: 20px;
  width: 90%;
}
.cust-check .repeat-check .policy a {
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--caution);
}

.custom-radio {
  position: relative;
}
.custom-radio input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.custom-radio .radio {
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border: 2px solid var(--border);
  padding: 3px;
  margin-right: 20px;
  float: left;
}
.custom-radio .radio .check {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: var(--primary);
  opacity: 0;
}
.custom-radio input[type=radio]:checked ~ .radio .check {
  opacity: 1;
  border-color: var(--primary);
}
.custom-radio input[type=radio]:checked ~ .radio {
  border-color: var(--primary);
}
.custom-radio .text {
  float: left;
  width: calc(100% - 40px);
}

.modal-custom .modal-dialog {
  max-width: 640px;
}
.modal-custom .modal-content {
  min-width: 640px;
  background: #FFFFFF;
  border: 1px solid rgba(14, 14, 44, 0.05);
  box-shadow: 0px 20px 36px -8px rgba(14, 14, 44, 0.1), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 40px;
}
.modal-custom .modal-content .close-btn {
  background: #F1F8FD;
  box-shadow: inset 0px -1px 0.5px rgba(14, 14, 44, 0.4);
  border-radius: 8px;
  position: absolute;
  font-size: 25px;
  top: 10px;
  right: 10px;
  padding: 4px;
  width: 32px;
  height: 32px;
  color: var(--primary);
  opacity: 1;
}
.modal-custom .modal-content .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.modal-custom .modal-content .title .gren {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  color: var(--success);
  display: inline-block;
}
.modal-custom .modal-content .title i {
  margin-right: 10px;
}
.modal-custom .modal-content .text {
  font-size: 16px;
  line-height: 26px;
  margin: 10px 0 30px 0;
}
.modal-custom .modal-content .text label {
  font-weight: normal !important;
  font-size: 14px;
  line-height: 20px;
}
.modal-custom .modal-content .text .form-control {
  height: 52px;
}
.modal-custom .modal-content .text .delete-attr {
  position: relative;
  margin-bottom: 10px;
}
.modal-custom .modal-content .text .delete-attr .delete {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.switch-wrap .switch-btn {
  float: right;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
.switch-wrap .switch-btn .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 24px;
}
.switch-wrap .switch-btn .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-wrap .switch-btn .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F1F8FD;
  /* Field/Inset */
  box-shadow: inset 0px 2px 2px -1px rgba(74, 74, 104, 0.1);
  border-radius: 24px;
  transition: 0.4s;
}
.switch-wrap .switch-btn .slider:before {
  position: absolute;
  content: "OFF";
  color: var(--disabled);
  font-weight: bold;
  font-size: 7px;
  line-height: 16px;
  letter-spacing: -0.02em;
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  text-align: center;
  background: #FFFFFF;
  /* Border */
  border: 1px solid #D5DDE4;
  box-sizing: border-box;
  border-radius: 44px;
  transition: 0.4s;
  top: 3px;
}
.switch-wrap .switch-btn input:checked + .slider {
  background-color: var(--success) !important;
}
.switch-wrap .switch-btn input:checked + .slider::before {
  content: "ON";
  color: var(--success);
}
.switch-wrap .switch-btn input:checked + .slider:before {
  transform: translateX(12px) !important;
}
.switch-wrap .switch-btn .slider.round {
  border-radius: 34px;
}
.switch-wrap .switch-btn .slider.round:before {
  border-radius: 50%;
}

.add-newfields {
  border: 1px solid #D5DDE4;
  box-sizing: border-box;
  border-radius: 5px;
  background: var(--secound);
  padding: 18px;
  margin-bottom: 10px;
}
.add-newfields input {
  background-color: transparent;
  height: 52px;
}

.pointer {
  cursor: pointer;
}

.export-file {
  float: right;
  margin-right: 25px;
}
.export-file label {
  font-weight: normal !important;
  font-size: 14px;
  line-height: 20px;
  margin-right: 15px;
}

.h52 {
  height: 52px !important;
}

.w190 {
  width: 190px !important;
}

.th10 th,
.th10 td {
  padding: 8px;
  font-weight: normal;
}
.th10 .check-btn {
  border-color: var(--border) !important;
}
.th10 .check-btn span i {
  top: 50% !important;
}

.v-top th,
.v-top td {
  vertical-align: top;
}

.profile-wrap {
  padding: 24px;
}
.profile-wrap label {
  font-weight: normal !important;
  font-size: 14px;
  line-height: 20px;
}
.profile-wrap .form-group {
  margin-bottom: 25px;
}
.profile-wrap .form-control {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
}
.profile-wrap .theme {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
}
.profile-wrap .theme-choose {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 5px;
}
.profile-wrap .theme-choose .name-wrap {
  border-bottom: 1px solid var(--border);
}
.profile-wrap .theme-choose .name-wrap .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  padding: 18px 24px;
}
.profile-wrap .theme-choose .name-wrap .selected {
  border: 2px solid var(--primary);
  width: 14px;
  height: 14px;
  border-radius: 100px;
  padding: 2px;
}
.profile-wrap .theme-choose .name-wrap .selected span {
  background-color: var(--primary);
  width: 6px;
  height: 6px;
  border-radius: 100px;
  display: block;
}
.profile-wrap .theme-choose .color-pallet {
  padding: 24px;
  margin: 0;
}
.profile-wrap .pro-pic {
  width: 120px;
  height: 120px;
  overflow: hidden;
}
.profile-wrap .pro-pic img {
  width: 100%;
}

.theme-clr {
  width: 100%;
  height: 28px;
}

.name-icon {
  background-image: url(../img/profile-icon/user.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.country-icon {
  background-image: url(../img/profile-icon/globe.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.email-icon {
  background-image: url(../img/profile-icon/mail.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.city-icon {
  background-image: url(../img/profile-icon/home.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.state-icon {
  background-image: url(../img/profile-icon/state.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.phone-icon {
  background-image: url(../img/profile-icon/phone.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.address-icon {
  background-image: url(../img/profile-icon/map-pin.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.organisation-icon {
  background-image: url(../img/profile-icon/building.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.time-icon {
  background-image: url(../img/profile-icon/map.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.designation-icon {
  background-image: url(../img/profile-icon/id-card.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.password-icon {
  background-image: url(../img/profile-icon/lock.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  display: block !important;
  padding-left: 30px !important;
}

.profile-wrap-edit {
  padding: 24px;
}
.profile-wrap-edit .pro-pic {
  position: relative;
  float: left;
}
.profile-wrap-edit .pro-pic .file-select {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.profile-wrap-edit .pro-pic .file-select input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.profile-wrap-edit .pro-pic .file-select span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.profile-wrap-edit label {
  font-weight: normal !important;
  font-size: 14px;
  line-height: 20px;
}
.profile-wrap-edit .form-group {
  margin-bottom: 25px;
}
.profile-wrap-edit .form-control {
  border-color: var(--border);
  height: 52px;
}
.profile-wrap-edit .theme {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
}
.profile-wrap-edit .theme-choose {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 5px;
  margin-bottom: 25px;
}
.profile-wrap-edit .theme-choose .name-wrap {
  border-bottom: 1px solid var(--border);
}
.profile-wrap-edit .theme-choose .name-wrap .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  padding: 18px 24px;
}
.profile-wrap-edit .theme-choose .name-wrap .custom-radio {
  width: 20px;
  height: 20px;
}
.profile-wrap-edit .theme-choose .name-wrap .selected {
  border: 2px solid var(--primary);
  width: 14px;
  height: 14px;
  border-radius: 100px;
  padding: 2px;
}
.profile-wrap-edit .theme-choose .name-wrap .selected span {
  background-color: var(--primary);
  width: 6px;
  height: 6px;
  border-radius: 100px;
  display: block;
}
.profile-wrap-edit .theme-choose .color-pallet {
  padding: 24px;
  margin: 0;
}
.profile-wrap-edit .pro-pic {
  width: 120px;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.profile-wrap-edit .pro-pic img {
  width: 100%;
}

.card-title a {
  color: var(--body);
}

.user-role .user {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  float: left;
}
.user-role .user a {
  color: var(--body);
}
.user-role .user figure {
  width: 36px;
  height: 36px;
  background-color: var(--secound);
  text-align: center;
  border-radius: 5px;
  margin: 0 0 10px 0;
  padding: 5px;
  float: left;
  margin-right: 20px;
}
.user-role .user figure img {
  width: 100%;
}
.user-role .user .content {
  float: left;
  width: calc(100% - 60px);
}
.user-role .user .content .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  float: left;
}
.user-role .user .content .txt {
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  clear: both;
  color: #000;
}

.tooltip-inner {
  background: rgba(241, 248, 253, 0.2);
  border-radius: 8px;
  color: var(--primary);
  text-align: center;
  padding: 10px;
  line-height: 18px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 9;
  min-width: 100%;
}

.tooltip.bs-tooltip-right .arrow:before {
  border-right-color: rgb(241, 248, 253) !important;
  border-width: 0.5rem;
}

.tooltip.bs-tooltip-left .arrow:before {
  border-left-color: rgb(241, 248, 253) !important;
  border-width: 0.5rem;
}

.tooltip.bs-tooltip-bottom .arrow:before {
  border-bottom-color: rgb(241, 248, 253) !important;
  border-width: 0.5rem;
}

.tooltip.bs-tooltip-top .arrow:before {
  border-top-color: rgb(241, 248, 253) !important;
  border-width: 0.5rem;
}

.white-btn {
  background: #FFFFFF;
  border: 1px solid #D5DDE4;
  box-sizing: border-box;
  border-radius: 5px;
  width: 150px;
  height: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 48px;
  display: inline-block;
  transition: all 0.3s;
}
.white-btn:hover {
  transform: translateY(-2px);
}

.added-text {
  color: var(--success);
  font-weight: 600;
}
.added-text img {
  margin-right: 5px;
}
.added-text:hover {
  color: var(--success);
}

.disable {
  background: var(--disabled);
}

.search-wrap {
  position: relative;
}
.search-wrap .form-control {
  padding-left: 35px;
  width: 290px;
  border-color: var(--border);
  border-radius: 5px;
}
.search-wrap button {
  position: absolute;
  top: 5px;
  left: 5px;
  background: transparent;
  border: 0;
  color: var(--border);
}

.custum-filed {
  color: var(--primary);
  background: var(--secound);
  padding: 10px 15px;
  font-weight: normal !important;
  font-size: 12px;
  line-height: 16px;
  border-radius: 5px;
  width: 100%;
}

.dashboard-tab .nav-tabs {
  background: #FFFFFF;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.06);
  border-radius: 5px 5px 0px 0px;
  border: 0;
}
.dashboard-tab .nav-tabs li {
  width: 20%;
}
.dashboard-tab .nav-tabs li:last-child a {
  border: 0;
}
.dashboard-tab .nav-tabs li a {
  border: 0;
  padding: 24px 0px;
  border-right: 1px solid var(--border);
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  color: var(--body);
  border-radius: 0;
  text-align: center;
}
.dashboard-tab .nav-tabs li:hover,
.dashboard-tab .nav-tabs li .active {
  background: var(--disabled);
  color: var(--primary);
}

.dashboard-graph {
  padding: 24px;
}
.dashboard-graph .graph {
  padding: 24px 20px;
  border: 1px solid #D5DDE4;
  border-radius: 5px;
  margin-bottom: 15px;
  min-height: 360px;
}
.dashboard-graph .graph .ttl {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 24px;
}

.sidebar-mini .wrapper .full-width nav.main-header {
  margin-left: 0 !important;
}
.sidebar-mini .wrapper .full-width .container {
  display: block !important;
  max-width: 1220px;
}
.sidebar-mini .wrapper .full-width nav.main-header a {
  border: 0;
}
.sidebar-mini .wrapper .full-width .content-wrapper {
  margin-left: 0 !important;
}
.sidebar-mini .wrapper .full-width .upload-text {
  color: var(--body);
  font-size: 12px;
  padding-top: 30px;
}
.sidebar-mini .wrapper .full-width .upload-text p {
  margin: 0;
}
.sidebar-mini .wrapper .full-width .upload-text p span {
  color: #C1CDD7;
}
.sidebar-mini .wrapper .full-width .file-field {
  border: 1px solid var(--border) !important;
  height: 52px;
  border-radius: 5px !important;
}
.sidebar-mini .wrapper .full-width .select-theme .steps {
  float: right;
  width: 240px;
  margin: 0;
}
.sidebar-mini .wrapper .full-width .select-theme .steps ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.sidebar-mini .wrapper .full-width .select-theme .steps ul li {
  list-style: none;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: var(--disabled);
  border: 2px dashed var(--border);
  line-height: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  position: relative;
}
.sidebar-mini .wrapper .full-width .select-theme .steps ul li:last-child::before {
  display: none;
}
.sidebar-mini .wrapper .full-width .select-theme .steps ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  background: var(--border);
  height: 2px;
  width: 80px;
  left: 75px;
}
.sidebar-mini .wrapper .full-width .select-theme .steps ul li span {
  display: inline-block;
}
.sidebar-mini .wrapper .full-width .select-theme .steps ul .active {
  border-color: var(--primary);
  color: var(--primary);
}
.sidebar-mini .wrapper .full-width .select-theme .steps ul .complete {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid;
}
.sidebar-mini .wrapper .full-width .select-theme .steps ul .complete:before {
  background-color: var(--primary);
}
.sidebar-mini .wrapper .full-width .select-theme .labels {
  font-weight: normal !important;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}
.sidebar-mini .wrapper .full-width .select-theme .select {
  height: 52px;
}
.sidebar-mini .wrapper .full-width .select-theme .theme-choose {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 5px;
  margin-bottom: 15px;
}
.sidebar-mini .wrapper .full-width .select-theme .theme-choose .name-wrap {
  border-bottom: 1px solid var(--border);
}
.sidebar-mini .wrapper .full-width .select-theme .theme-choose .name-wrap .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  padding: 11px;
}
.sidebar-mini .wrapper .full-width .select-theme .theme-choose .name-wrap .custom-radio {
  width: 18px;
  height: 18px;
  margin-top: 0;
}
.sidebar-mini .wrapper .full-width .select-theme .theme-choose .name-wrap .selected {
  border: 2px solid var(--primary);
  width: 14px;
  height: 14px;
  border-radius: 100px;
  padding: 2px;
}
.sidebar-mini .wrapper .full-width .select-theme .theme-choose .name-wrap .selected span {
  background-color: var(--primary);
  width: 6px;
  height: 6px;
  border-radius: 100px;
  display: block;
}
.sidebar-mini .wrapper .full-width .select-theme .theme-choose .color-pallet {
  padding: 12px;
  margin: 0;
}
.sidebar-mini .wrapper .full-width .theme-preview .logo-prev {
  position: absolute;
  left: 10px;
  max-width: 70px;
  height: 25px;
}
.sidebar-mini .wrapper .full-width .theme-preview .logo-prev img {
  height: 100%;
}
.sidebar-mini .wrapper .full-width .theme-preview .profile-prev {
  float: right;
  right: 0;
  position: absolute;
}
.sidebar-mini .wrapper .full-width .theme-preview .profile-prev .profile-blk {
  display: flex;
  justify-content: end;
  min-width: 180px;
}
.sidebar-mini .wrapper .full-width .theme-preview .profile-prev .profile-blk figure {
  width: 20px;
  height: 20px;
  height: auto;
  overflow: visible;
}
.sidebar-mini .wrapper .full-width .theme-preview .profile-prev .profile-blk .text .name {
  font-size: 12px !important;
  line-height: 1 !important;
}
.sidebar-mini .wrapper .full-width .theme-preview .profile-prev .profile-blk .text .email {
  font-size: 10px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-data {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}

.powered-logo {
  position: fixed;
  bottom: 0;
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  width: 100%;
  background: #fff;
  overflow-x: hidden;
  max-width: 250px;
}

.brand-logo {
  max-width: 90px;
  margin-bottom: 15px;
}

.sidebar-collapse .powered-logo {
  width: 73px;
}
.sidebar-collapse .powered-logo .brand-logo {
  display: none;
}

aside:hover .powered-logo {
  width: 250px;
}
aside:hover .powered-logo .brand-logo {
  display: inline-block !important;
}
aside:hover .link-head span {
  display: inline-block !important;
}

.custom-files {
  position: relative;
}
.custom-files input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.custom-files .file-chose {
  position: relative;
  border: 1px solid var(--border);
  height: 52px !important;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
}
.custom-files .file-chose span {
  font-size: 16px;
  line-height: 26px;
  color: var(--disabled);
}
.custom-files .file-chose .upload {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  display: inline;
  float: right;
  color: var(--primary);
  border-bottom: 2px solid var(--caution);
}

.disbale-btn {
  background: var(--disabled);
}

.primary-btn {
  background: var(--primary);
  color: var(--white) !important;
}
.primary-btn:hover {
  color: var(--white);
}
.primary-btn:active {
  color: var(--primary);
}

.u-no {
  color: var(--success);
}

.row-grey td {
  color: var(--disabled);
}

.adduser-action {
  float: right;
  display: flex;
  align-items: center;
}

.serach-wrap .search-block {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.fillter-block {
  margin: 0 0 30px 0 !important;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
.fillter-block .nav-pills a {
  background-color: var(--secound);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 10px;
  border-left: 5px solid transparent;
  transition: all 0.3s;
}
.fillter-block .nav-pills a:hover {
  background-color: #fff;
  border-left: 5px solid var(--primary);
  color: var(--primary) !important;
}
.fillter-block .nav-pills .active {
  background-color: #fff;
  border-left: 5px solid var(--primary);
  color: var(--primary);
  margin: 4px 0;
}

ul.listing {
  margin: 0;
  padding: 0;
}
ul.listing li {
  list-style: none;
  border-bottom: 1px solid var(--border);
  float: left;
  width: 100%;
  margin-bottom: 5px;
  padding: 10px 0;
}
ul.listing li span.text {
  display: inline;
  margin: 0 !important;
  line-height: 1 !important;
  float: left;
}
ul.listing li .number {
  float: right;
  color: var(--success);
  font-weight: 600;
}
ul.listing li .check-btn {
  border-color: var(--border) !important;
}

.mandatory {
  border-color: var(--alert);
}

.scan {
  color: var(--caution);
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
}
.scan img {
  float: left;
  margin-right: 10px;
  width: 24px;
}
.scan span {
  float: left;
  width: calc(100% - 34px);
  margin-bottom: 10px;
}

.virus {
  color: var(--alert);
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
}
.virus img {
  float: left;
  margin-right: 10px;
  width: 24px;
}
.virus span {
  float: left;
  width: calc(100% - 34px);
  margin-bottom: 10px;
}

.suc-upload {
  color: var(--success);
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
}
.suc-upload img {
  float: left;
  margin-right: 10px;
  width: 24px;
}
.suc-upload span {
  float: left;
  width: calc(100% - 34px);
  margin-bottom: 10px;
}

/*THEME 1*/
.theme1 .link-head {
  color: #0e497a;
}

.theme1 .link-head svg path {
  stroke: #0e497a;
}

.theme1 a.active p {
  color: #0e497a !important;
}

.theme1 a.active path {
  stroke: #0e497a !important;
}

.theme1 a.active .svg-fill path {
  fill: #0e497a !important;
  stroke: transparent !important;
}

.theme1 a.active::before {
  background: #0e497a !important;
}

.theme1 a.active sup {
  color: #0e497a !important;
}

/*THEME 2*/
.theme2 .link-head {
  color: #5344f6;
}

.theme2 .link-head svg path {
  stroke: #5344f6;
}

.theme2 a.active p {
  color: #5344f6 !important;
}

.theme2 a.active path {
  stroke: #5344f6 !important;
}

.theme2 a.active .svg-fill path {
  fill: #5344f6 !important;
  stroke: transparent !important;
}

.theme2 a.active::before {
  background: #5344f6 !important;
}

.theme2 a.active sup {
  color: #5344f6 !important;
}

/*THEME 3*/
.theme3 .link-head {
  color: #188198;
}

.theme3 .link-head svg path {
  stroke: #188198;
}

.theme3 a.active p {
  color: #188198 !important;
}

.theme3 a.active path {
  stroke: #188198 !important;
}

.theme3 a.active .svg-fill path {
  fill: #188198 !important;
  stroke: transparent !important;
}

.theme3 a.active::before {
  background: #188198 !important;
}

.theme3 a.active sup {
  color: #188198 !important;
}

/*THEME 4*/
.theme4 .link-head {
  color: #007148;
}

.theme4 .link-head svg path {
  stroke: #007148;
}

.theme4 a.active p {
  color: #007148 !important;
}

.theme4 a.active path {
  stroke: #007148 !important;
}

.theme4 a.active .svg-fill path {
  fill: #007148 !important;
  stroke: transparent !important;
}

.theme4 a.active::before {
  background: #007148 !important;
}

.theme4 a.active sup {
  color: #007148 !important;
}

/*THEME 5*/
.theme5 .link-head {
  color: #f7c3a5;
}

.theme5 .link-head svg path {
  stroke: #f7c3a5;
}

.theme5 a.active p {
  color: #f7c3a5 !important;
}

.theme5 a.active path {
  stroke: #f7c3a5 !important;
}

.theme5 a.active .svg-fill path {
  fill: #f7c3a5 !important;
  stroke: transparent !important;
}

.theme5 a.active::before {
  background: #f7c3a5 !important;
}

.theme5 a.active sup {
  color: #f7c3a5 !important;
}

/*THEME 6*/
.theme6 .link-head {
  color: #752902;
}

.theme6 .link-head svg path {
  stroke: #752902;
}

.theme6 a.active p {
  color: #752902 !important;
}

.theme6 a.active path {
  stroke: #752902 !important;
}

.theme6 a.active .svg-fill path {
  fill: #752902 !important;
  stroke: transparent !important;
}

.theme6 a.active::before {
  background: #752902 !important;
}

.theme6 a.active sup {
  color: #752902 !important;
}

/*THEME 7*/
.theme7 .link-head {
  color: #c6a78b;
}

.theme7 .link-head svg path {
  stroke: #c6a78b;
}

.theme7 a.active p {
  color: #c6a78b !important;
}

.theme7 a.active path {
  stroke: #c6a78b !important;
}

.theme7 a.active .svg-fill path {
  fill: #c6a78b !important;
  stroke: transparent !important;
}

.theme7 a.active::before {
  background: #c6a78b !important;
}

.theme7 a.active sup {
  color: #c6a78b !important;
}

/*THEME 8*/
.theme8 .link-head {
  color: #c42034;
}

.theme8 .link-head svg path {
  stroke: #c42034;
}

.theme8 a.active p {
  color: #c42034 !important;
}

.theme8 a.active path {
  stroke: #c42034 !important;
}

.theme8 a.active .svg-fill path {
  fill: #c42034 !important;
  stroke: transparent !important;
}

.theme8 a.active::before {
  background: #c42034 !important;
}

.theme8 a.active sup {
  color: #c42034 !important;
}

/*THEME 9*/
.theme9 .link-head {
  color: #ffba00;
}

.theme9 .link-head svg path {
  stroke: #ffba00;
}

.theme9 a.active p {
  color: #ffba00 !important;
}

.theme9 a.active path {
  stroke: #ffba00 !important;
}

.theme9 a.active .svg-fill path {
  fill: #ffba00 !important;
  stroke: transparent !important;
}

.theme9 a.active::before {
  background: #ffba00 !important;
}

.theme9 a.active sup {
  color: #ffba00 !important;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/admin-icons/select-arrow.svg) !important;
  background-position: right 12px center;
  background-repeat: no-repeat;
}

.serach-wrap input[type=text] {
  background-image: url(../img/admin-icons/search.svg) !important;
}

.popover {
  background: rgba(241, 248, 253, 0.68);
  border-radius: 8px;
  color: var(--primary);
  text-align: center;
  padding: 10px;
  line-height: 18px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 9991;
  margin: 0;
  top: -15px !important;
  border: 0;
}

.popover-arrow.arrow {
  display: none;
}

::-webkit-scrollbar {
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.simple-notification.info {
  background: var(--primary) !important;
  min-height: auto;
  border-radius: 10px;
}

simple-notification.ng-tns-c3-11.ng-star-inserted {
  display: block;
  position: relative;
  z-index: 9;
}

.simple-notification .icon {
  width: 40px !important;
  height: auto !important;
}

.simple-notification-wrapper.bottom {
  top: 20px;
  right: 30px !important;
  z-index: 9999;
  bottom: inherit !important;
  left: inherit !important;
}

.simple-notification .sn-progress-loader {
  display: none;
}

.upload-msg {
  float: left;
  width: 100%;
  margin: 40px 0 0 0 !important;
}
.upload-msg .suc-upload {
  margin-top: 5px;
}
.upload-msg a.float-left.mr-2.ml-2 {
  margin-right: 20px !important;
}

.step2 {
  width: 150px !important;
}

.my-org {
  margin: 18px 18px 0 18px !important;
  color: var(--body) !important;
  display: block;
}

.w620 {
  max-width: 620px !important;
}

.w920 {
  max-width: 920px !important;
}

.gray {
  color: var(--disabled) !important;
}

/* 28-2-2022 */
.cus-date {
  height: 51px;
  display: block;
  border-radius: 3px;
}
.cus-date .mydp {
  height: 48px;
}
.cus-date .selectiongroup {
  height: 46px;
}
.cus-date .selectiongroup .selection {
  height: 46px !important;
}

.filter-select .selected-list .c-list {
  display: none;
}

.filter-select .dropdown-list .list-grp li.pure-checkbox figure img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 100px;
  float: left;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.filter-select .dropdown-list .list-grp li.pure-checkbox figure {
  float: left;
  clear: both;
  margin: 0;
  background: #f7f7f7;
  border-radius: 100px;
}

.filter-select .dropdown-list .list-grp li.pure-checkbox {
  float: left;
  width: 100%;
}

.filter-select .dropdown-list .list-grp li.pure-checkbox .text {
  margin-top: 8px;
  display: inline-block;
}

.repeats .pic {
  background: #f7f7f7;
}

.cus-repeat {
  display: flex;
}
.cus-repeat .pic img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cus-repeat .test-group-block {
  width: calc(100% - 50px);
}

.custom-role th {
  padding: 10px 5px !important;
}
.custom-role .cust-check {
  width: auto !important;
  float: inherit !important;
}
.custom-role .repeat-check {
  margin: 5px 0 !important;
  width: auto !important;
  float: inherit !important;
}

.sn-content {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.simple-notification.error {
  background: var(--primary) !important;
  border-radius: 5px;
  padding: 10px;
  margin: 0;
}

.simple-notification.error .sn-content p {
  margin: 0;
}

.simple-notification.error .sn-content .table {
  margin: 10px 0;
}

.simple-notification.error .sn-content .table th {
  border: 0;
}

.simple-notification.error .sn-content .table th {
  font-weight: 600;
}

.simple-notification.error .sn-content .table td {
  font-weight: normal;
  padding: 10px !important;
  color: #fff !important;
}

.simple-notification.error .sn-content p i {
  width: 20px;
}

.simple-notification.error .sim-text {
  width: calc(100% - 20px);
}

.custom-toast {
  background: var(--primary);
  max-width: 550px;
  border-radius: 5px;
  padding: 20px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
}

.custom-toast .icon {
  margin-right: 10px;
}

.custom-toast .content .table th,
.custom-toast .content .table td {
  border: 0;
  color: #fff !important;
  padding: 5px;
}

.custom-toast .content .table {
  margin: 0;
}

.custom-toast .content p {
  margin: 0 0 5px 0;
}

.txt-label {
  font-weight: 400 !important;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.03em;
}/*# sourceMappingURL=admin-dashboard.css.map */


.custom-audio {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  height: 38px;
  width: 240px;
}

.custom-audio::-webkit-media-controls-panel {
  background-color: white;
  border-radius: 0;
}