* {
  box-sizing: border-box;
  outline: none;
  font-family: vazir !important;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/webfonts/Vazirmatn[wght].woff2') format('woff2 supports variations'),
       url('fonts/webfonts/Vazirmatn[wght].woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.top-part .count,
.top-part,
.item,
body {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
}

body {
  flex-direction: column;
  overflow: auto;
  width: 100%;
  height: 100vh;
  font-size: 16px;
}

ul {
  list-style-type: none;
  padding: 0;
  direction: rtl;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.task-manager {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.left-bar {
  background-color: #fff;
  /* width: 230px; */
  /* border-right: 1px solid #e3e7f7; */
  position: relative;
  border-radius: 20px;
  margin: 30px;
}

.left-content {
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}

.item {
  color: var(--main-color);
  margin: 0 5px 6px 5px;
  font-weight: 500;
  width: -webkit-fill-available !important;
  padding: 20px 19px !important;
  opacity: 1;
}

.item svg {
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.category-list {
  margin-top: 0;
}

.category-list .item {
  color: #9eacbf;
}

.actions {
  padding: 12px;
  display: flex;
  justify-content: space-between;
}

.circle {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #fe4d46;
  box-shadow: 14px 0 0 0 #fbc023, 28px 0 0 0 #7dd21f;
}

.circle-2 {
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: #d5d7e3;
  box-shadow: -6px 0 0 0 #d5d7e3, 6px 0 0 0 #d5d7e3;
}

.right-bar {
  width: 320px;
  /* border-left: 1px solid #e3e7f7; */
  display: flex;
  flex-direction: column;
  margin: 30px;
  background: #ffff;
  border-radius: 20px;
}

.right-bar .header {
  font-size: 20px;
  color: var(--main-text-color);
  margin-left: 30px;
}

.top-part {
  padding: 30px;
  align-self: flex-end;
}

.top-part svg {
  width: 14px;
  height: 14px;
  color: var(--main-color);
  margin-right: 14px;
}

.top-part .count {
  font-size: 12px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: #623ce8;
  color: #fff;
  justify-content: center;
}

.right-content {
  padding: 10px 40px;
  overflow-y: auto;
  flex: 1;
}

.task-box {
  position: relative;
  border-radius: 12px;
  width: 100%;
  margin: 20px 0;
  padding: 16px;
  cursor: pointer;
  box-shadow: 2px 2px 4px 0px #ebebeb;
}

.task-box:hover {
  transform: scale(1.02);
}

.time {
  margin-bottom: 6px;
  opacity: 0.4;
  font-size: 10px;
}

.task-name {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
}

.yellow {
  background-color: var(--box-color);
}

.blue {
  background-color: var(--box-color-2);
}

.red {
  background-color: var(--box-color-3);
}

.green {
  background-color: var(--box-color-4);
}

.more-button {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #8e92a4;
  box-shadow: 0 -4px 0 0 #8e92a4, 0 4px 0 0 #8e92a4;
  opacity: 0.4;
  right: 20px;
  top: 30px;
  cursor: pointer;
}

.members {
  display: flex;
  margin-top: 14px;
}

.members img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 4px;
  object-fit: cover;
}

.page-content {
  display: flex;
  flex: 1;
  direction: rtl;
  height: 100%;
  /* padding: 40px; */
  /* margin: 30px 0 30px 30px; */
  /* background: #ffff; */
  border-radius: 30px;
  flex-direction: column;
}

.page-content .header {
  font-size: 26px;
  color: var(--main-color);
  margin-top: 30px;
}

.content-categories {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.nav-item {
  display: none;
}

.category {
  font-weight: 500;
  color: var(--secondary-color);
  border-bottom: 1px solid #ddd;
  transition: 0.4s ease-in;
  padding: 20px 30px;
  cursor: pointer;
}

#opt-1:checked+label,
#opt-2:checked+label,
#opt-3:checked+label,
#opt-4:checked+label {
  color: var(--checkbox-color);
  border-bottom: 2px solid var(--checkbox-color);
}

.task-item {
  display: none;
}

.tasks-wrapper {
  padding: 30px 0;
  flex: 1;
  overflow-y: auto;
  height: 100%;
  padding-right: 8px;
}

.task {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 16px;
  padding-left: 30px;
  color: var(--task-color);
  font-size: 13px;
  font-weight: 500;
}

.task:hover {
  transform: translatex(2px);
}

.task label {
  cursor: pointer;
}

label .label-text {
  position: relative;
}

label .label-text:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
  left: -24px;
  transition: 0.2s ease;
}

.task-item:checked+label .label-text:before {
  background-color: var(--checkbox-color);
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  border: 1px solid var(--checkbox-color);
}

.tag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 20px;
}

.tag.approved {
  background-color: var(--tag-color-one);
  color: var(--tag-color-text-one);
}

.tag.progress {
  background-color: var(--tag-color-two);
  color: var(--tag-color-text-two);
}

.tag.review {
  background-color: var(--tag-color-three);
  color: var(--tag-color-text-three);
}

.tag.waiting {
  background-color: var(--tag-color-four);
  color: var(--tag-color-text-four);
}

.upcoming {
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 900px) {
  .left-bar {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .task-manager {
    flex-direction: column;
    overflow-y: auto;
  }

  .right-bar,
  .page-content {
    width: 100%;
    display: block;
  }

  .tasks-wrapper {
    height: auto;
  }
}

@media screen and (max-width: 520px) {
  .page-content {}

  .right-content {
    padding: 10px 16px;
  }

  .category {
    padding: 20px;
  }
}


#inputbox {
  width: calc(100% - 399px);
  bottom: 42px !important;
  margin: auto 0;
  left: 80px;
  position: absolute;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}


#input-text {
  width: -webkit-fill-available;
  border: 0;
  outline: none;
  border-radius: 20px 0 0 20px;
  padding: 15px;
  max-width: 900px;
  direction: rtl;
  height: 50px;
}

.submit-btn {
  height: 50px;
  border: 0;
  background: #ffffff;
  color: #606060;
  right: 0;
  border-radius: 0 20px 20px 0;
  /* margin-left: 10px; */
  display: flex;
  align-items: center;
}



:root {
  --primary-color: #185ee0;
  --secondary-color: #e6eef9;
}


.switch-container {
  /* position: absolute; */
  /* left: 0; */
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}

.tabs {
  display: flex;
  position: relative;
  background-color: #2C3641;
  padding: 6px;
  border-radius: 10px;
  direction: ltr;
}

.tabs * {
  z-index: 2;
}

input[type=radio] {
  display: none;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 100px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  overflow: hidden;
  color: #8b8a8a;
  cursor: pointer;
  transition: color 0.15s ease-in;
  padding: 15px;
}

.notification {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: 0.75rem;
  border-radius: 50%;
  background-color: var(--secondary-color);
  transition: 0.15s ease-in;
}

input[type=radio]:checked+label {
  color: #ffffff;
  font-weight: bold;
}

input[type=radio]:checked+label>.notification {
  background-color: var(--primary-color);
  color: #fff;
  display: none;
}

input[id=radio-1]:checked~.glider {
  transform: translateX(0);
}

input[id=radio-2]:checked~.glider {
  transform: translateX(100%);
}

input[id=radio-3]:checked~.glider {
  transform: translateX(200%);
}

.glider {
  position: absolute;
  display: flex;
  height: 30px;
  width: 100px;
  /* background-color: #1a2025; */
  z-index: 1;
  border-radius: 5px;
  transition: 0.2s ease-out;
  padding: 20px;
}

@media (max-width: 700px) {
  .tabs {}
}


.content {}

.content>div {
  display: none;
  animation: fade .3s ease;
  height: 100%;
}

.content>div.show {
  display: block
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}



.outputtext {
  display: none;
  overflow: hidden;
  max-width: 900px;
  margin: auto;
}


.active {
  background-color: #3c4a5a;
}



#chat-container {
  overflow: auto;
  margin: 0px auto 0px auto;
  /* max-height: calc(100vh - 292px); */
  /* padding: 45px 0; */
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* -webkit-mask: -webkit-linear-gradient(bottom, transparent, white 0%, white 10%, white 90%, transparent 98%); */
}

.message-container {
  margin-bottom: 10px;
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: center;
  align-items: stretch;
}

.user-message {
  background-color: #60c1da;
  border-radius: 20px 20px 0 20px;
  padding: 20px;
  max-width: 580px;
  margin-top: 20px;
  width: fit-content;
  color: #fff;
}

.bot-message {
  background-color: #ffffff;
  border-radius: 20px 20px 20px 0;
  padding: 20px;
  /* margin: 15px; */
  width: fit-content;
  max-width: 720px;
  align-self: end;
  color: #555555;
}

.typing-animation {
  display: inline-block;
  animation: typing 1s infinite;
}

@keyframes typing {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}




.question-btn {
  /* background: #2C3641; */
  padding: 15px;
  margin: 6px;
  border: #505c68 solid 1px;
  border-radius: 10px;
  color: #ffffff;
  /* font-weight: bold; */
}

.upper-container {
  display: flex;
  align-items: center;
  width: calc(100% - 437px);
  max-width: 900px;
  margin: auto;
}

#btn-container {
  transition: opacity 0.3s ease;
  position: absolute;
  max-width: 540px;
  width: 100%;
  bottom: 76px !important;
  margin: auto;
  /* height: 210px; */
  direction: rtl;
  display: flex;
  scale: 0.8;
  overflow: hidden;
  right: -36px;
  align-items: center;
  flex-wrap: wrap;
  align-content: flex-end;
}

.hide {
  opacity: 0;
  pointer-events: none;
}
















/* Add CSS styling as needed */
body {
  margin: 0;
  padding: 0;
  background: #1A2025;
}

* {
  font-family: vazir !important;
}

.sidenav {
  height: -webkit-fill-available;

  /* Default width for desktop */
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 1;
  overflow-x: hidden;
  transition: opacity 0.1s, width .5s;
  padding: 0;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

#main {
  transition: .5s;
  margin-left: 65px;
  /* Start with open margin on desktop */
  margin-top: 80px;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  overflow: hidden;
  border: #505c68 solid 1px;
}

@media screen and (max-width: 768px) {

  /* Adjust the max-width as needed */
  .sidenav {
    width: 0;
    /* Closed by default on mobile */
  }

  #main {
    margin-right: 0;
    /* Content is not pushed on mobile */
  }
}

.chat-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.message-container {
  /* margin: 10px 0; */
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between;
  align-items: stretch;
}

.user-message {
  background-color: #11171c;
  border-radius: 10px;
  padding: 15px;
  max-width: 580px;
  margin-top: 20px;
  width: fit-content;
  color: #fff;
}

.bot-message {
  background-color: #2c3641;
  border-radius: 10px;
  padding: 15px;
  /* margin: 20px; */
  width: fit-content;
  max-width: 720px;
  align-self: end;
  color: #ffffff;
}

.bot-actions {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.action-button {
  padding: 5px 10px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  /* margin-right: 10px; */
  /* background-color: #1a2025; */
  color: #ffffff;
}

.like-icon,
.dislike-icon,
.regenerate-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

.like-icon {
  background: url('like.png') no-repeat center center;
}

.dislike-icon {
  background: url('dislike.png') no-repeat center center;
}

.regenerate-icon {
  background: url('regenerate.png') no-repeat center center;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f7f7f7;
}

#input-text {
  padding: 13px 8px;
  border: none;
  max-width: 800px;
  height: 60px;
  border-radius: 10px 0 0 10px;
  outline: none;
  background: #2c3641;
  /* border: 1px solid #505c68; */
  color: #ddd !important;
}

#send-button,
#stop-button {
  padding: 30px 5px;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  outline: none;
  display: flex;
  background-color: #2C3641;
  color: #ffffff;
  transition: background-color 0.3s;
  align-items: center;
}


#input-container {
  /* background: #313233; */
  /* position: fixed; */
  bottom: 0;
  width: -webkit-fill-available;
  padding: 0px 20px 20px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  z-index: 10;
  /* direction: ltr; */
  /* justify-content: center; */
}

#main-center {
  padding: 20px;
  width: 100%;
  margin: auto;
  display: flex;
  height: calc(100vh - 225px);
  overflow: auto;
  -webkit-mask: -webkit-linear-gradient(bottom, transparent, white 2%, white 10%, white 90%, transparent 98%);
}

#chat-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  direction: rtl;
}



.item img {
  width: 17px;
  /* margin: 10px; */
  filter: contrast(0) brightness(2);
}



.navbar {
  overflow: hidden;
  top: 0;
  z-index: 3;
  right: 0;
  position: fixed;
  font-size: 30px;
  cursor: pointer;
  background: #313233;
  width: 240px;
  padding: 5px;
  margin: 30px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  justify-content: space-between;
}


#nav-text {
  font-size: 16px;
  padding: 0 15px;
}

#nav-span {
  font-size: 20px;
  cursor: pointer;
  background: #313233;
  width: 40px;
  height: 40px;
  padding: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}


.chathalf {
  width: 500px;
  height: 100%;
  overflow: hidden;
  left: 0;
  border-left: #505c68 solid 1px;
  display: flex;
  flex-direction: column-reverse;
}

.maphalf {
  width: calc(100% - 582px);
  height: 100%;
}




#topnavbar {
  position: fixed;
  width: calc(100% - 65px);
  right: 0;
  top: 0;
  overflow: hidden;
  height: 80px;
  padding: 10px 15px;
  border-left: #505c68 solid 1px;
}

.topbar button img {
  width: 23px;
  filter: contrast(0) brightness(2);
  margin: 3px;
  opacity: 0.6;
}




.topbar button {
  text-align: center;
  display: flex;
  flex-direction: row;
  /* margin-right: 10px; */
  color: #fff;
  align-items: center;
}


.topbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding: 1px;
  width: 907px;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 100%
}


.layersidenav {
  position: unset;
  width: 210px;
  height: 100%;
  border-right: #505c68 solid 1px;
}




#calculated-area {
  display: flex;
  align-items: center;
}



#calculated-area a {
  color: #fff;
  text-decoration: none;
}



p {
  font-family: 'Open Sans';
  margin: 0;
  font-size: 13px;
}

#menuMapStl {
  background: #efefef;
  padding: 5px;
  border: 0;
  position: fixed;
  border-radius: 10px;
  background-color: #e5dfda;
  margin: 15px;
  color: #444;
  /* box-shadow: 0 0 0 1px rgb(224 225 209); */
  z-index: 10;
  text-align: right;
  font-family: vazir;
  font-size: 10px;
  bottom: 0;
  font-weight: bold;
  filter: invert(1) brightness(1.5);
}

#menuMapload {
  background: #efefef;
  padding: 0px 10px;
  border: 0;
  display: flex;
  position: fixed;
  border-radius: 10px;
  background-color: #fff0;
  margin: 5px;
  color: #fff;
  z-index: 10;
  right: 0;
  text-align: right;
  font-family: vazir;
  font-size: 14px;
  top: 0;
  align-items: center;
  /* box-shadow: 0 0 0 1px rgb(224 225 209); */
  outline: 0;
  /* filter: invert(1) contrast(0.81) brightness(1.5); */
}


.mapboxgl-ctrl-scale {
  background-color: #1a2025;
  border: 0px solid #fff;
  border-top: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 0 1px rgb(75 74 93);
  border-radius: 0 0 10px 10px;
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  white-space: nowrap;
  margin: 5px 15px !important;
}

.mapboxgl-ctrl-top-right {
  right: 0;
  top: 7px;
}

.mapboxgl-ctrl-group:not(:empty) {
  bottom: 40%;
  z-index: 120;
  left: 5px;
  margin: 5px;
  z-index: 10;
  border-radius: 40px;
}

.mapboxgl-ctrl-group {
  margin: 5px;
  z-index: 10;
  padding: 5px;

}


.mapboxgl-ctrl-group button+button {
  border-top: 0px solid #ddd;
  border-radius: 40px;
}



.mapboxgl-ctrl-icon {
  border-radius: 40px;
}

.mapboxgl-ctrl-geocoder--icon-search {
  visibility: hidden;
}



.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
  margin: 5px 15px;
  border-radius: 7px;
  border: 0;
  box-shadow: 0 0 0 1px rgb(224 225 209);
  outline: 0;
  filter: invert(1) brightness(1.5);
  background: #e5dfda;
  /* color: #fff; */
}

.mapboxgl-ctrl-geocoder--input {
  border: 0;
  background-color: #0000;
  margin: 0;
  height: 40px;
  color: #404040;
  color: #000000bf;
  padding: 6px 45px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: right;
  z-index: 10;
}

.mapboxgl-ctrl-geocoder {
  width: 80%;
  height: 40px;
  position: fixed;
  border-radius: 50px;
  background-color: #fff;
  margin: 15px 15px;
  color: #444;
  z-index: 10;
  left: 0px;
  text-align: right;
  font-family: vazir;
  font-size: 15px;
}



/* Styling for the radio buttons and labels */
input[type="radio"] {
  display: none;
}

label {
  cursor: pointer;
  padding: 0px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

input[type="radio"]:checked+label {
  background-color: #1a2025;
  color: #fff;
}

/* Styling for the image button */
#file-input {
  display: none;
}

#file-label {
  cursor: pointer;
  padding: 10px;
  border-radius: 40px;
  transition: background-color 0.3s ease;
}


#file-label img {
  vertical-align: middle;
}

#dataset-save-label {
  cursor: pointer;
  padding: 10px;
  border-radius: 40px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;

}

.mapboxgl-ctrl-attrib-inner {
  display: none;
}

div.mapboxgl-ctrl-bottom-left>div.mapboxgl-ctrl a.mapboxgl-ctrl-logo {
  display: none;
}

.mapboxgl-ctrl-logo {
  display: none !important;
}



.row {
  display: flex;
  flex-direction: column;
}

#mySearch {
  width: -webkit-fill-available;
  font-size: 14px;
  padding: 5px 10px;
  border: 1px solid #62707f;
  border-radius: 8px;
  outline: none;
  background: #ddd0;
  color: #fff;
}

#myMenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#myMenu li a {
  padding: 5px;
  text-decoration: none;
  color: white;
  display: block;
  font-size: 14px;
  border-radius: 8px;
}

#myMenu li a:hover {
  background-color: #2C3641;
}


#info {
  position: absolute;
  color: #fff;
  z-index: 300;
  bottom: 48px;
  left: 0;
  font-size: 12px;
  font-family: sans-serif !important;
  text-align: left;
  padding: 0 15px;
  opacity: 0.8;
  text-shadow: 0px 0px 10px black;
}



.collapsible-item {
  margin-bottom: 10px;
}

.collapsible-button {
  cursor: pointer;
  padding: 10px;
  margin: 10px 0px;
  width: 100%;
  text-align: right;
  background: #fff0;
  border: none;
  outline: none;
  transition: 0.4s;
  position: relative;
  color: #fff;
  font-weight: bold;
  /* border-bottom: 2px solid #2c3641; */
}

.collapsible-button::before {
  content: "+";
  position: absolute;
  left: 5px;
}

.collapsible-button.active::before {
  content: "-";
}

.collapsible-content {
  /* padding: 0 18px; */
  display: block;
  /* Open by default */
  overflow: hidden;
  color: #f1f1f1;
  font-size: 14px;
}

.collapsible-content input,
select {
  margin-bottom: 14px;
  width: calc(100% - 10px);
  padding: 5px 10px;
  border: none;
  background: #2f3c49;
  color: #fff !important;
  border-radius: 8px;
}

.collapsible-content label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
  padding: 0;
}

.collapsible-content label input[type="radio"],
.collapsible-content label input[type="checkbox"] {
  margin: 4px 10px;
  width: 25px;
  height: 25px;
  color: #2196F3 !important;
  padding: 0;
}


.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  background: #2c3641;
  padding: 4px !important;
  outline: none;
  border-radius: 10px;
  -webkit-transition: .2s;
  transition: opacity .2s;
}


.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #03a9f4;
  border-radius: 20px;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #03a9f4;
  cursor: pointer;
}


[type=checkbox],
[type=radio] {
  width: 1.5rem;
  height: 1.5rem;
  color: dodgerblue;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 10px;
  background-color: #ddf7f5;
  transition: background 300ms;
  cursor: pointer;
}


/* Pseudo element for check styling */

[type=checkbox]::before,
[type=radio]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: background: #e9e9e9;
  ;
  background-size: contain;
}


/* Checked */

[type=checkbox]:checked,
[type=radio]:checked {
  background-color: currentcolor;
}

[type=checkbox]:checked::before,
[type=radio]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}


/* Disabled */

[type=checkbox]:disabled,
[type=radio]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}


/* IE */

[type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

[type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}





    .addMarkerBtn {top: 10px;padding: 5px 10px;cursor: pointer;}
    .mapboxgl-popup { max-width: 250px; text-align: center; }
    .mapboxgl-popup-content { font-family: 'Arial', sans-serif; }
    .mapboxgl-canvas-container-crosshair { cursor: crosshair; }
    .mapboxgl-marker {
    background-size: 45px auto;
    background-repeat: no-repeat;
}
.mgrs-icon {
    left: 0;
    display: flex;
    z-index: 30;
    position: absolute;
    background: #273037;
    color: #fff;
    margin: 10px;
    border-radius: 7px;
    padding: 2px 7px;
    flex-direction: column;
    align-items: flex-end;
}

.context-menu {
position: absolute;
background-color: #fff;
border: 1px solid #ccc;
padding: 5px;
display: none;
}
.context-menu-item {
cursor: pointer;
padding: 5px;
}


    .addMarkerBtn { top: 10px; padding: 10px; cursor: pointer; }
    .mapboxgl-popup { max-width: 250px; text-align: center; }
    .mapboxgl-popup-content { font-family: 'Arial', sans-serif; }
    .mapboxgl-canvas-container-crosshair { cursor: crosshair; }
    .mapboxgl-marker {
    background-size: 45px auto;
    background-repeat: no-repeat;
}
.mgrs-icon {
      display: flex;
    z-index: 30;
    position: absolute;
}
.context-menu {
position: absolute;
background-color: #fff;
border: 1px solid #ccc;
padding: 5px;
display: none;
}
.context-menu-item {
cursor: pointer;
padding: 5px;
}