*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body, #viewDiv {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
#viewDiv:focus {
  outline: none;
}

.notify {
  width: 0.5rem;
  left: 0;
  top: 0;
  position: absolute;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
    background-color: red
}

:root {
  --main-color:#684e4a;
  --main-color-dark: #4b3735;
  --main-color-light: #a07d79;
  --text-color: #fff;
  --main-color-select: #c5aa67;
}

body {
  /* font-family: "Poppins", sans-serif; */
  font-family: 'Cairo', sans-serif;
  /* overflow-x: hidden; */
  background-color: #e4e2f5;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

nav {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: var(--main-color);
  width: 16rem;
  /* width: 5.4rem; */
  padding: 1.8rem 0.85rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: width 0.5s ease-in-out;
  z-index: 1;
}

nav::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 100%;
  top: 0;
  left: 100%;
}

.sidebar-top {
  position: relative;
  display: flex;
  align-items: center;

  justify-content: center;
  flex-flow: column;
}

.sidebar-top .logo {
  /* width: 2.1rem;
  margin: 0 0.8rem; */
  width: 3rem;
    margin: 0 0.4rem;
}

.sidebar-top h3 {
  padding-left: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.shrink-btn {
  position: absolute;
  top: 50%;
  height: 27px;
  padding: 0 0.3rem;
  background-color: var(--main-color);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 3px 10px -3px rgba(70, 46, 118, 0.3);
  right: -2.65rem;
  transform: translateY(-50%) translateX(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.shrink-btn i {
  line-height: 27px;
  transition: 0.3s;
}

.shrink-btn:hover {
  background-color: var(--main-color-dark);
}

nav:hover .shrink-btn,
.shrink-btn.hovered {
  transform: translateY(-50%) translateX(0px);
  opacity: 1;
  pointer-events: all;
}

.search {
  min-height: 2.7rem;
  background-color: var(--main-color-light);
  margin: 2rem 0.5rem 1.7rem;
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
}

.search input {
  height: 100%;
  border: none;
  background: none;
  outline: none;
  color: #fff;
  caret-color: #fff;
  font-family: inherit;
}

.search input::placeholder {
  color: var(--text-color);
}

.sidebar-links ul {
  position: relative;
}

.sidebar-links li {
  position: relative;
  padding: 2.5px 0;
}

.sidebar-links a {
  color: var(--text-color);
  font-weight: 400;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  height: 53px;

  justify-content: center;
}

.icon {
  font-size: 1.5rem;
  text-align: center;
  min-width: 3.7rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.icon i {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  transition: 0.3s;
}

.icon i:last-child {
  opacity: 0;
  color: #fff;
}

.sidebar-links a.active,
.sidebar-links a:hover {
  color: #fff;
}

.sidebar-links a .link {
  transition: opacity 0.3s 0.2s, color 0.3s;
}

.sidebar-links a.active i:first-child {
  opacity: 0;
}

.sidebar-links a.active i:last-child {
  opacity: 1;
}

.active-tab {
  width: 100%;
  height: 53px;
  background-color: var(--main-color-dark);
  border-radius: 10px;
  position: absolute;
  top: 2.5px;
  left: 0;
  transition: top 0.3s;
}

.sidebar-links h4 {
  position: relative;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 0.8rem;
  color: var(--text-color);
  letter-spacing: 0.5px;
  height: 45px;
  line-height: 45px;
  transition: opacity 0.3s 0.2s, height 0.5s 0s;
}

.sidebar-footer {
  position: relative;
  margin-top: auto;

  width: 100%;
  padding: 10px;
  /* height: 60px; */
}

.account {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-color);
  height: 53px;
  width: 3.7rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s 0s, color 0.3s 0s;
}

.account:hover {
  color: #fff;
}

.admin-user {
  display: flex;
  align-items: center;
}

.admin-profile {
  white-space: nowrap;
  max-width: 100%;
  transition: opacity 0.3s 0.2s, max-width 0.7s 0s ease-in-out;
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  justify-content: space-around;
}

.admin-user img {
  width: 2.9rem;
  border-radius: 50%;
  margin: 0 0.4rem;
}

.admin-info {
  padding-left: 0.3rem;
}

.admin-info h3 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}

.admin-info h5 {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-color);
  margin-top: 0.3rem;
  line-height: 1;
}

.log-out {
  display: flex;
  height: 40px;
  min-width: 2.4rem;
  background-color: var(--main-color-dark);
  color: var(--text-color);
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border-radius: 10px;
  margin: 0 0.65rem;
  transition: color 0.3s;
}

.log-out:hover {
  color: #fff;
}

.tooltip {
  background-color: var(--main-color);
  position: absolute;
  right: -1.2rem;
  top: 0;
  transform: translateX(100%) translateY(-50%);
  padding: 0 0.8rem;
  font-size: 0.85rem;
  display: none;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  height: 30px;
  align-items: center;
  border-radius: 7px;
  box-shadow: 0 3px 10px -3px rgba(70, 46, 118, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  text-align: center;
  white-space: nowrap;
}

.tooltip span {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  opacity: 0;
  transition: 0.3s;
}

.tooltip span.show {
  opacity: 1;
}

.tooltip-element:hover ~ .tooltip {
  opacity: 1;
  pointer-events: all;
}

/* When the menu shrinks */

.hide {
  transition: opacity 0.3s 0.2s;
}

body.shrink nav {
  width: 5.4rem;
}

body.shrink .hide {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0s;
}

body.shrink .shrink-btn i {
  transform: rotate(-180deg);
}

body.shrink .sidebar-links h4 {
  height: 10px;
}

body.shrink .account {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s 0.3s, color 0.3s 0s;
}

body.shrink .admin-profile {
  max-width: 0;
  transition: opacity 0.3s 0s, max-width 0.7s 0s ease-in-out;
}

body.shrink .tooltip {
  display: grid;
}
hr {
  border: 0;
  border-top: 1px solid #CCC;
  margin: 20px 0;
}
svg {
  width: 3.5rem;
    height: 2rem;
}
.title-icon {
  font-size: 1.5rem;
  text-align: center;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  background-color: #576ca4;
  color: #fff;
  border-radius: 50%;
  padding-top: 4px;
}
.operation {
  color: rgb(55,65,81);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 0;
  transition: 0.5s;
}
.operation.show {
  padding: 2rem;
  width: 40rem;
}

.operation h1 {
  margin-bottom: 1rem;
}
.operation-title {
  display: flex;
  justify-content: space-between;
}
.operation-title h2, .operation-title .title-icon {
  display: inline;
  margin-inline: 5px
}

/* search */
.input-box {
  position: relative;
  height: 76px;
  max-width: 900px;
  width: 100%;
  background: #fff;
  /* margin: 0 20px; */
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.input-box i,
.input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-box i {
  left: 20px;
  font-size: 30px;
  color: #707070;
}
.input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  border: none;
  border-radius: 6px;
  padding: 0 155px 0 65px;
  background-color: #e1e4ea;
}
.input-box .button {
  right: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  background-color: #576ca4;
  cursor: pointer;
}
.input-box .button:active {
  transform: translateY(-50%) scale(0.98);
}

.button-badge {
  background-color: #fff;
  text-decoration: none;
  padding: 5px;
  position: relative;
  display: inline-block;
  border: 1px solid #576ca4;
  border-radius: 1.2rem;
  transition: all ease 0.4s;
  width: 100px;
    margin-top: 30px;
    font-size: 15px;
}
.button-badge.active {
  width: 120px;
}

.button-badge:hover {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.badge {
  position: absolute;
  /* top: 15px;
  right: 15px; */
  font-size: .8em;
  border-radius: 50%;
  background: red;
  color: white;
  width: 20px;
  height: 20px;
  text-align: center;
}

.button-badge .bx, .btn-text {
  color: #576ca4;
  margin: 5px;
}

.detail-btn {
  /* font-weight: 600; */
  font-size: 12px;
  line-height: 24px;
  /* padding: 0.3rem 0.8rem; */
  padding: 5px;
  letter-spacing: 0.5px;
  background-color: #6777ef;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 2px 6px #acb5f6;
  margin-right: 15px;
  cursor: pointer;
}
.badge-success {
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  background-color: #54ca68;
  vertical-align: middle;
    padding: 7px 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 30px;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}
.group-list {
  overflow-y: auto;
  /* border-bottom: 1px solid #dee2e6!important; */
  border-radius: 0;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.list-item {
  border-width: 0 0 1px;
  line-height: 1.25;
  padding-top: 1rem!important;
    padding-bottom: 1rem!important;
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    /* border: 1px solid rgba(0,0,0,.125); */
    width: 100%;
    color: #495057;
    text-align: inherit;
    /* border-left: solid 5px #09c; */
    border-bottom: 1px solid #dee2e6;
}
.item-caption, .action-btn {
  align-items: center!important;
  justify-content: space-between!important;
  width: 100%!important;
  display: flex!important;
  line-height: 1.25;
}
.item-caption {
  margin-bottom: 10px;
}
.id-text {
  font-size: 20px;
    font-weight: 700;
    
}
.date-text {
  font-weight: 400;
}

.group-list::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;;
}

.group-list::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.group-list::-webkit-scrollbar-thumb
{
	background-color: var(--main-color);
}
.cts-btn {
  padding: 10px;
    background-color: #fff;
    border: solid 1px #576ca4;
    border-radius: 1.2rem;
    color: #576ca4;
    margin-right: 10px;
}
.cts-btn:hover {
  background-color:#576ca4;
  color: #fff;
  cursor: pointer;
}
.cts-btn i {
  margin-right: 2px;
}
.action-buttons {
  margin:auto;
}

.searchBar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

#searchQueryInput {
  width: 100%;
  height: 2.8rem;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 1.625rem;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 1rem;
}

#searchQuerySubmit {
  width: 3.5rem;
  height: 2.8rem;
  margin-left: -3.5rem;
  background: none;
  border: none;
  outline: none;
}

#searchQuerySubmit:hover {
  cursor: pointer;
}

.sidepanel {
  
  color: rgb(55,65,81);
  display: flex;
  flex-direction: column;

  height: 100vh;
  background-color: #fff;
  width: 0;
  position: relative;
  overflow-x: hidden;
  /* transition: 0.5s; */
}

.sidepanel2 {
  color: rgb(55,65,81);
  display: none;
  flex-direction: column;

  height: 100vh;
  background-color: #fff;
  width: 0;
  position: relative;
  overflow-x: hidden;
  transition: 0.5s;
  padding: 2rem;
  width: 40rem;
}

.sidepanel.hidden {
  padding: 2rem;
  width: 40rem;
}
.sidepanel2.hidden {
  display: flex;
}
.list-content {
  margin-right: 20px;
}
.sidepanel-info {
  display: flex;
}
.title-icon-sm {
  width: 30px;
    height: 30px;
    font-size: 17px;
    padding: 5px;
    align-self: center;
    cursor: pointer;
}

.case-info {
  overflow-y: auto;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.case-info ul.info-list > li:nth-of-type(odd) {
  background-color: #e9e9f9 ;
}
ul.info-list > li {
  border-bottom: 1px solid rgb(221,221,221);
  padding: 6px;
}
.case-info h3 {
  margin-bottom: 10px;
  color: #576ca4;
}
.info-footer {
  bottom: 0;
  position: fixed;
  margin-bottom: 30px;
}

.action-buttun {
  background-color: #6981c2;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.action-buttun:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.back-btn {
  cursor: pointer;
}

.sidepanel3 {
  color: rgb(55,65,81);
  display: flex;
  flex-direction: column;
  width: 0;
  height: 100vh;
  background-color: #fff;
  
  position: relative;
  overflow-x: hidden;
  /* transition: 0.5s; */
  
  
}
.sidepanel3.show {
  width: 42rem;
  padding: 10px;
}

/* Form */
input[type=text]:disabled {
  background: #dddddd;
}
.form-group {
  /* margin-bottom: 25px; */
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #fdfdff;
  border-color: #e4e6fc;
}
.form-control:focus {
  outline: none;
  border: 1px solid #007bff;
}
.form-group label {
  display: flex;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--main-color-dark);
  font-size: 15px;
  justify-content: end;
  letter-spacing: 0.5px;
}
.select-group {
  display: inline-flex;
  width: 100%;
}
.select-group-item {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}
.radio-item {
  box-sizing: border-box;
    padding: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.radio-btn {
  background-color: #fdfdff;
    border-color: #e4e6fc;
    border-width: 1px;
    border-style: solid;
    display: block;
    text-align: center;
    padding: 0 1rem;
    height: 35px;
    position: relative;
    cursor: pointer;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 13px;
    min-width: 2.375rem;
    line-height: 36px;
}
.radio-item:focus+.radio-btn, .radio-item:checked+.radio-btn {
  background-color: #6777ef;
  color: #fff;
  z-index: 1;
}
.input-group {
  position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
    width: 100%;
    margin-bottom: 1rem;
}
.input-group-append {
  margin-left: -1px;
  display: flex;
}
.grp-btn {
  border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--main-color);
    border-color: transparent !important;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 6px #e2cae8;
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
}
.grp {
  border-top-right-radius: 0;
    border-bottom-right-radius: 0; 
    font-weight: 600;
    color: #34395e;
    font-size: 12px;
    padding: 10px 15px;
    height: 42px;
    position: relative;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.pcp-item {
  font-weight: 600;
    color: #34395e;
    font-size: 12px;
  background-color: #e4e2f5;
  padding: 10px;
  border-left: 5px solid #576ca4;
  margin-bottom: 3px;
  /* width: 50%; */
  display: flex;
  justify-content: space-between;
}
.pcp-item i {
  cursor: pointer;
  color: red;
  align-self: center;
}
.select-btn {
  background-color: #09c;
  padding: 5px;
}
.select-btn.active-btn {
  background-color: #33cccc;
  padding: 5px;
}
.select-btn img {
  width: 32px;
}
.select-btn:hover {
  cursor: pointer;
}
.layout-form {
  display: flex;
  flex-direction: row;
}
.col1 {
  width: 50%;
}
.col2 {
  width: 50%;
  margin-left: 10px;
}
.col-1 {
  width: 70%;
}
.col-2 {
  width: 30%;
  margin-left: 10px;
}
.foot {
  display: flex;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid #CCC;
    padding-top: 10px;
}
.error-msg {
  color: red;
  font-size: 14px;
  display: none;
  float: right;
  margin-right: 10px;
}
.esri-view .esri-view-surface--inset-outline:focus::after {
  outline: none !important;
}
.esri-view .esri-view-surface--touch-none:focus::after {
  outline: none !important;
}
.form-control.grp.unvalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.grp.valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.pcp_nos {
  border: 1px solid #ced4da;
  padding: 5px;
  height: 100px;
}
.title-merge {
  font-weight: 600;
    color: #34395e;
    font-size: 12px;
    position: relative;
    top: -15px;
    margin-left: 10px;
    background-color: white;
    width: fit-content;
}


.panel-side {
  padding: 2px;
  width: 42rem;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: 0.3s;
}
.panel-side.hidden {
  width: 0;
}

#resultsDiv {
  overflow: auto;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;;
}

::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: var(--main-color);
}
.head-1 {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}
.head-2 {
  display: flex;
  padding: 5px;
}
.panel-header {
  padding: 10px;
  background-color: #fff;
  border-bottom: solid 1px #e5e7eb;
}
.cls-btn {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  cursor: pointer;
}
.page-panel {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
}
.page-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  justify-content: space-around;
  background-color: #fff;
  margin-bottom: 5px;
  border-bottom: solid 1px #e5e7eb;
}
/* .page-item:hover {
  background-color: #e5e7eb;
  cursor: pointer;
} */
.ico-con {
  font-size: 20px;
}
.col-one, .col-two, .col-three {
  display: flex;
  flex-direction: column;
}
.col-one {
  font-size: 11px;
    font-weight: 600;
    line-height: 17px;
}
.col-two {}
.col-three {}

.c-pill {
  align-items: center;
	font-family: "Open Sans", Arial, Verdana, sans-serif;
	font-weight: bold;
	font-size: 11px;
  display: inline-block;
  height: 100%;
  white-space: nowrap;
  width: auto;

  position: relative;
  border-radius: 100px;
  line-height: 1;
  overflow: hidden;
  padding: 0px 12px 0px 20px;
  text-overflow: ellipsis;
	line-height: 1.25rem;
	color: #595959;
	
    word-break: break-word;

  &:before {
    border-radius: 50%;
    content: '';
    height: 10px;
    left: 6px;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    width: 10px;
  }
  
 
}


  .c-pill--success {
    background: #b4eda0; }
    .c-pill--success:before {
      background: #6BC167; }
  .c-pill--warning {
    background: #ffebb6; }
    .c-pill--warning:before {
      background: #ffc400; }
  .c-pill--danger {
    background: #ffd5d1; }
    .c-pill--danger:before {
      background: #ff4436; }

      .foot.list-foot {
        justify-content: center;
      }
.run-btn {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #CCC;
  padding-top: 10px;
}
.loader-foot {
  flex-direction: column;
  border-top : none !important;
}

.map-behave {
  cursor: crosshair;
}

/* loader */
.result-status {
  display: none;
  font-weight: 600;
  color: #34395e;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.loader-container {
  align-items: center;
  margin-bottom: 5px;
}
.custom-loader {
  display: none;
  width:50px;
  height:50px;
  border-radius:50%;
  border:8px solid;
  border-color:#E4E4ED;
  border-right-color: #766DF4;
  animation:s2 1s infinite linear;
}
@keyframes s2 {to{transform: rotate(1turn)}}

.split-option {
  display: none;
}
.import-file {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  font-size: 1.25rem;
  background-color: #c8dadf;
  position: relative;
  padding: 15px;
}
input[type="file"] {
  display: none;
}
.upl {
  text-align: center;
}
.bx-load {
  display: block;
}
#upload-btn {
  cursor: pointer;
}
.active-draw {
  cursor: crosshair;
}

/* Right Panel */
.panel-right-side {
  font-family: 'Cairo', sans-serif;
  overflow: hidden;
  width: 0;
  height: 100vh;
  position: sticky;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: 0.3s;
  z-index: 99;
  right: 0;
  transition: width 0.5s ease-in-out;
  transition: all 1s;
}

.panel-right-side.show {
  width: 300px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.panel-right-side2 {
  font-family: 'Cairo', sans-serif;
  overflow: auto;
  width: 0;
  height: 100vh;
  position: sticky;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: 0.3s;
  z-index: 99;
  right: 0;
  transition: width 0.5s ease-in-out;
  transition: all 1s;
}

.panel-right-side2.show {
  width: 400px;
  padding: 10px;
}

.ecoPanel {
  font-family: 'Cairo', sans-serif;
  overflow: auto;
  width: 0;
  height: 100vh;
  position: sticky;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: 0.3s;
  z-index: 99;
  right: 0;
  transition: width 0.5s ease-in-out;
  transition: all 1s;
}

.ecoPanel.show {
  width: 300px;
  padding: 10px;
}

.astroPanel {
  font-family: 'Cairo', sans-serif;
  overflow: auto;
  width: 0;
  height: 100vh;
  position: sticky;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: 0.3s;
  z-index: 99;
  right: 0;
  transition: width 0.5s ease-in-out;
  transition: all 1s;
}

.astroPanel.show {
  width: 500px;
  padding: 10px;
}

.eco-accordion {
  font-family: 'Cairo', sans-serif;
  background-color: var(--acc-background-color);
  box-shadow: 0 2px 6px #e2cae8;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 15px;

  display: flex;
    justify-content: end;
    align-items: center;

  transition: all 0.5s;
}

.eco-accordion.active, .eco-accordion:hover {
  background-color: #fff;
  border: solid 2px; 
  color: var(--acc-background-color);
  border-color: var(--acc-background-color);
}

.eco-accordion i {
margin-inline: 10px;
}
.eco-accordion .bx {
  font-size: 24px;
}

.eco-accordion-min {
  font-family: 'Cairo', sans-serif;
  background-color: var(--acc-background-color);
  box-shadow: 0 2px 6px #e2cae8;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 15px;

  display: flex;
    justify-content: end;
    align-items: center;

  transition: all 0.5s;
}

.eco-accordion-min.active, .eco-accordion-min:hover {
  background-color: #fff;
  border: solid 2px; 
  color: var(--acc-background-color);
  border-color: var(--acc-background-color);
}

.eco-accordion-min i {
margin-inline: 10px;
}
.eco-accordion-min .bx {
  font-size: 24px;
}

.eco-accordion-water {
  font-family: 'Cairo', sans-serif;
  /* background-color: var(--acc-background-color); */
  box-shadow: 0 2px 6px #99ccff;
  border-radius: 3px;
  color: #fff;
  background-color:#0059b3;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 15px;

  display: flex;
    justify-content: end;
    align-items: center;

  transition: all 0.5s;
}

.eco-accordion-water.active, .eco-accordion-water:hover {
  background-color: #fff;
  border: solid 2px; 
  /* color: var(--acc-background-color);
  border-color: var(--acc-background-color); */
  color:#0059b3;
  border-color:#0059b3;
}

.eco-accordion-water i {
margin-inline: 10px;
}
.eco-accordion-water .bx {
  font-size: 24px;
}


.eco-accordion-gas {
  font-family: 'Cairo', sans-serif;
  /* background-color: var(--acc-background-color); */
  box-shadow: 0 2px 6px #d9b3ff;
  border-radius: 3px;
  color: #fff;
  background-color:#8000ff;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 15px;

  display: flex;
    justify-content: end;
    align-items: center;

  transition: all 0.5s;
}

.eco-accordion-gas.active, .eco-accordion-gas:hover {
  background-color: #fff;
  border: solid 2px; 
  /* color: var(--acc-background-color);
  border-color: var(--acc-background-color); */
  color:#8000ff;
  border-color:#8000ff;
}

.eco-accordion-gas i {
margin-inline: 10px;
}
.eco-accordion-gas .bx {
  font-size: 24px;
}

.eco-accordion-pet {
  font-family: 'Cairo', sans-serif;
  /* background-color: var(--acc-background-color); */
  box-shadow: 0 2px 6px #e6e6e6;
  border-radius: 3px;
  color: #fff;
  background-color:#333333;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 15px;

  display: flex;
    justify-content: end;
    align-items: center;

  transition: all 0.5s;
}

.eco-accordion-pet.active, .eco-accordion-pet:hover {
  background-color: #fff;
  border: solid 2px; 
  /* color: var(--acc-background-color);
  border-color: var(--acc-background-color); */
  color:#333333;
  border-color:#333333;
}

.eco-accordion-pet i {
margin-inline: 10px;
}
.eco-accordion-pet .bx {
  font-size: 24px;
}

.eco-accordion-astro {
  font-family: 'Cairo', sans-serif;
  background-color: var(--acc-background-color);
  box-shadow: 0 2px 6px #e2cae8;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 15px;

  display: flex;
    justify-content: end;
    align-items: center;

  transition: all 0.5s;
}

.eco-accordion-astro.active, .eco-accordion-astro:hover {
  background-color: #fff;
  border: solid 2px; 
  color: var(--acc-background-color);
  border-color: var(--acc-background-color);
}

.eco-accordion-astro i {
margin-inline: 10px;
}
.eco-accordion-astro .bx {
  font-size: 24px;
}

.accordion {
  font-family: 'Cairo', sans-serif;
  background-color: var(--main-color);
  box-shadow: 0 2px 6px #e2cae8;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 15px;
  transition: all 0.5s;
}

.accordion.active, .accordion:hover {
  /* background-color: #ccc; */
  background-color: var(--main-color-select);
}

.accordion:after {
  /* content: '\002B'; */
  color: #fff;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  /* content: "\2212"; */
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel canvas {
  height: 600px;
}

.map-ele {
  margin-bottom: 0 !important;
}

#map-tool {
  display: flex;
  flex-direction: column;
}
.map-btn {
  margin-bottom: 10px;
}

#infoDiv {
  background: white;
  /* padding: 10px; */
}


.header {
  position: absolute;
  z-index: 11;
  width: 100%;
}

.header-left {
  background: #c8a791;
  padding: 8px 20px;
  position: absolute;
  top: 28px;
  right: 10px;
  box-shadow: 2px 2px 10px rgb(107, 107, 107);
  -webkit-box-shadow: 2px 2px 10px rgb(107, 107, 107);
  border-radius: 5px;
}

.header .header-left .logo {
  float: right;
  height: 100%;
}

  .header .header-left .logo img {
      width: 279px;
      margin-top: 7px;
      margin-right: 13px;
  }

.quick-access-toolbar {
  float: right;
}

  .quick-access-toolbar .toolbar-item {
      float: right;
      height: 100%;
      margin-right: 10px;
  }

      .quick-access-toolbar .toolbar-item img {
          width: 25px;
          height: 25px;
      }

.header .header-left .app-title {
  float: right;
  height: 100%;
}

  .header .header-left .app-title label {
      float: right;
      font-weight: bold;
      color: white;
      font-size: 16px;
      margin-bottom: 0;
  }

.header-right {
  /* position: absolute; */
  left: 10px;
  box-shadow: none !important;
}

  .header-right .social-slider {
      background: var(--main-color);
      width: 290px;
      z-index: -1;
      padding: 10px 5px;
      padding-bottom: 13px;
      float: right;
      border-bottom-right-radius: 5px;
      border-top-right-radius: 5px;
      margin-top: 24px;
      margin-left: -13px;
      color: #fff;
      font-size: 14px;
  }

  .header-right .logo {
      float: left;
      /* background: white; */
      /* padding: 5px 20px; */
      /* box-shadow: 2px 2px 10px rgb(107, 107, 107); */
      /*border-radius: 5px; */
  }

      .header-right .logo img {
          /*height: 60px;*/
      }


  .header-right .switch-language {
      float: right;
      height: 100%;
  }

      .header-right .switch-language a {
          margin-top: 16.5px;
          margin-left: 20px;
          float: left;
          color: #3E6A41;
          font-weight: bold;
          font-family: "Sheba-Ye-regular";
      }

  .header-right .social-items {
      float: left;
      width: 100%;
      margin-left: 50px;
      font-size: 16px;
    font-weight: 600;

    display: flex;
    /* justify-content: space-between; */
  }

      .header-right .social-items .social-item {
          float: left;
          margin-left: 5px;
      }

          .header-right .social-items .social-item img {
              width: 18px;
              height: 18px;
          }

.menu-container .div-menu-container .menu-list .menu-list-items .menu-list-item label {
  margin-bottom: 0;
  margin-right: 5px;
}

.btn-primary {
  background-color: #c8a791 !important;
  border-radius: 0 !important;
  border: 1px solid #c8a791 !important;
}

.btn-secondary {
  background-color: #adadad !important;
  border-radius: 0 !important;
  border: 1px solid #adadad !important;
  color: white !important;
}

.header-right .social-items .social-item-4 a {
  margin-left: 10px;
  color: white;
  margin-top: 2px;
  float: left;
}

div#divMenuList .panel-heading {
  padding: 5px 15px !important;
}

div#divMenuList .list-group-item {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  padding-left: 45px !important;
}

.header-right .social-items .close-slider {
  float: right;
}

.sign-in-out {
  float: right;
  margin-right: 15px;
}

  .sign-in-out a {
      float: right;
      color: white;
      font-weight: bold;
      font-size: 14px;
  }

.form-control {
  height: 50px !important;
  font-size: 14px;
  color: #fff;
  border-color: var(--main-color-dark);
  background-color: var(--main-color);
}

.form-control-multiple-select {
  height: auto !important;
}

.btn-default {
  background: grey;
  color: white;
  border-radius: 0;
}

.bootstrap-dialog.type-info .modal-header {
  background-color: #c8a791;
  border-radius: 0;
}

.bootstrap-dialog-footer-buttons .btn {
  margin-left: 5px;
}

.pagination {
  display: inline-block;
  padding-right: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.footer-title {
  font-size: 14px;
  align-items: center;
  display: flex;
  margin-left: 20px;
}
.footer-title2 {
  position: absolute;
    bottom: 120px;
    left: 80px;
}
.footer-logo {
  /* width: 100px; */
  font-family: 'Almarai', sans-serif;
  color: #253A7B;
  /* position: absolute; */
  bottom: 10px;
  
    background: #fff;
    padding: 5px;
    border-radius: 10px;

}
.sidebar-footer {
  
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.map-icon i {
  display: inline-block;
  border-radius: 60px;
  box-shadow: 0 0 2px #888;
  padding: 0.5em 0.6em;
  background: var(--main-color-dark);
}
.map-icon {
  /* margin-inline: 10px; */
  margin-right: 20px;
}
.map-icon i:hover {
  cursor: pointer;
  background: #c5aa67;
}

.table-row {
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-around;
}
.table-col-name {
  background: #c5aa67;
  color: #fff;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    width: 90px;
    text-align: center;
}
.table-col-value {
  /* background: aqua; */
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    width: 50px;
    text-align: center;
}

/* custom select */
.custom-select {
  position: relative;
  text-align: end;
  font-size: 13px;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: var(--main-color);
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  left: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: var(--main-color);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: var(--main-color-dark);
}

.selection {
  display: flex;
  flex-flow: column;
}

.legend-info {
  /* direction: rtl; */
}
.legend-item {
  display: flex;
  padding: 10px;
  margin: 5px;
  box-shadow: 0 2px 6px #e2cae8;
  border-radius: 3px;
  background-color: var(--legend-background-color);
  color: #fff;
}
.legend-item i {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.btn {
  background-color: var(--main-color);
  color: #fff;
  border: none;
  padding: 12px 16px;
  margin-block: 10px;
  width: 100%;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  cursor: pointer;
}
.btn:hover {
  background-color: var(--main-color-dark);
}
.esri-legend__service {
  padding: 0% !important;
}


.earth {
  background-color: #cc2900;
}
.earth:hover, .earth.active {
  border: solid 1px #cc2900;
  color: #cc2900;
  background-color: #fff;
}

.modern {
  background-color: #3399ff;
}
.historical {
  background-color: #33cc33;
}


.modern:hover, .modern.active {
  border: solid 1px #3399ff;
  color: #3399ff;
  background-color: #fff;
}
.historical:hover, .historical.active {
  border: solid 1px #33cc33;
  color: #33cc33;
  background-color: #fff;
}


.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  direction: rtl;
}

.back-img {
  background-image: url("../images/info-back.png");
  background-repeat: no-repeat;
  background-position: center;
  /* background-color: #09c; */
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.close2 {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close2:hover,
.close2:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modal-content h4 {
  text-align: center;
  margin-bottom: 10px
}
.modal-content p {
  font-size: 14px;
}
.modal-footer {
  display: flex;
  justify-content: center;
}
.modal-footer p {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}

.esri-feature__content-node {
  text-align: end;
}

.pet-title {
  direction: rtl;
  padding: 5px;
  font-weight: 600;
}
.gas-title {
  direction: rtl;
  padding: 5px;
  font-weight: 600;
  color: #8000ff;
}

.eco-accordion-volcan {
  font-family: 'Cairo', sans-serif;
  /* background-color: var(--acc-background-color); */
  box-shadow: 0 2px 6px #99ccff;
  border-radius: 3px;
  color: #fff;
  background-color:#990000;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  /* text-align: left; */
  outline: none;
  font-size: 15px;

  display: flex;
    justify-content: end;
    align-items: center;

  transition: all 0.5s;
}

.eco-accordion-volcan.active, .eco-accordion-volcan:hover {
  background-color: #fff;
  border: solid 2px; 
  /* color: var(--acc-background-color);
  border-color: var(--acc-background-color); */
  color:#990000;
  border-color:#990000;
}

.eco-accordion-volcan i {
margin-inline: 10px;
}
.eco-accordion-volcan .bx {
  font-size: 24px;
}

#side-panel-fourth-cracks {
  background-color: #e2d0b6;
}

.esri-widget__table {
  direction: rtl;
}
.esri-widget__table tr th {
  text-align: right;
}
h2.esri-widget__heading {
  justify-content: end;
}
.content-container {
  overflow: hidden;
}
.esri-feature-content {
  overflow: hidden;
}

#side-panel {
  background-color: #e2d0b6;
}
#gas-side-panel {
  background-color: #f7e6ff;
}
#water-side-panel {
  background-color: #ccf5ff;
}
#volcan-side-panel {
  background-color: #ffe6cc;
}