/*popup window*/
#ask_modal_overlay {
  position: relative;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100001;
}

#ask_modal_inner {
  position: fixed;
  bottom: 0;
  left: 0;
}

#ask_modal_content {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  padding: 13px 20px;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

#ask_modal_text {
  width: 100%;
  height: 100%;
  font-size: 15px;
}

#ask_modal_text b {
  font-size: 18px;
  text-transform: uppercase;
  padding: 20px 0px;
  display: block;
}

#ask_modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 150%;
}

#ask_modal_buttons {
  position: relative;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 5px 0px;
}

#ask_modal_yes, #ask_modal_no {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  margin: 0px 10px;
  cursor: pointer;
}

#ask_modal_yes {
  background: #4CAF50;
}

#ask_modal_no {
  background: #F44336;
}