
/*=================*/
/* Popover Control */ 
/*=================*/
ui-popover {
  width: 280px;
  background-color: #e7e9ee;
  border-radius: 10px;
  height: 250px;
  max-height: 300px;
  position: absolute;
  padding-bottom: 40px;
  z-index: 111111;
  display: none;
}
ui-popover.opened {
  display: block;
}
ui-popover::before {
  display: block;
  content: '';
  width: 15px;
  height: 15px;
  background-color: #f5f5f6;
  -webkit-transform: rotate(45deg);
  margin: 0 auto;
  position: absolute;
  top: -7px;
  left: 49%;
  z-index: -1;
}
ui-popover header {
  background-color: #f5f5f6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 1px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  display: flex;
}
ui-popover header h1 {
  font-size: 12pt;
  text-align: center;
}
ui-popover > section {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 60px;
  position: absolute;
  height: 230px;
  top: 40px;
  bottom: 0;
  left: 0;
  right: 0;
}