@charset "UTF-8";

/* Area of interest checkbox */
.dropdown-v3 {
  position: relative;
  font-size: 14px;
  color: #333;
}
.dropdown-v3 .dropdown-list {
  padding: 12px;
  background: #fff;
  position: absolute;
  top: 30px;
  left: 2px;
  right: 2px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
  transform-origin: 50% 0;
  transform: scale(1, 0);
  transition: transform 0.15s ease-in-out 0.15s;
  max-height: 66vh;
  overflow-y: scroll;
}
.dropdown-v3 .dropdown-option {
  display: block;
  padding: 8px 12px;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}
.dropdown-v3 .dropdown-label {
  display: block;
  height: 30px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  line-height: 1;
  cursor: pointer;
}
.dropdown-v3 .dropdown-label:before {
  content: "▼";
  float: right;
}
.dropdown-v3.on .dropdown-list {
  transform: scale(1, 1);
  transition-delay: 0s;
}
.dropdown-v3.on .dropdown-list .dropdown-option {
  opacity: 1;
  transition-delay: 0.2s;
}
.dropdown-v3.on .dropdown-label:before {
  content: "▲";
}
.dropdown-v3 [type=checkbox] {
  position: relative;
  top: -1px;
  margin-right: 4px;
}


.selectBox {
  position: relative;
}
.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.mbm-dropdown-checkboxes {
  display: none;
  border: 1px #dadada solid;
  padding-top: 15px;
}
.mbm-dropdown-checkboxes  label {
  display: inline-block;
  font-size: 15px;
  margin-right: 10px;
}
.confirmationModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.confirmationModal .modal-content {
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    background-color: #4CAF50;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 16px;
    position: relative;
    color: white;
    border-radius: 8px;
    padding: 20px;
}

.confirmationModal .close {
    font-size: 28px;
    font-weight: bold;
    top: 0px;
    position: absolute;
    color: #fff;
    right: 15px;
}

.confirmationModal .close:hover,
.confirmationModal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}