/*
Compile SASS: olb.css
*/
.flb_overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999999;
  overflow: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flb_overlay:focus {
  outline: none;
}

.f_popup {
  z-index: 99999999;
  position: fixed;
  background-color: #F5F5F5;
  font-family: Arial;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5000px Black;
  border-radius: 2rem;
}
.f_popup * {
  box-sizing: border-box;
}
.f_popup .content {
  height: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 1.7rem;
  color: #007aff;
}
.f_popup .content .action {
  padding: 2rem;
  border-bottom: 1px solid lightGray;
  cursor: pointer;
}
.f_popup .content .action:last-child {
  border-bottom: none;
}
.f_popup .topbar {
  display: none;
}

.olb {
  z-index: 99999999;
  background-color: White;
  font-family: Arial;
  color: #3e3e3e;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  position: absolute;
  max-height: 90vh !important;
}
.olb * {
  box-sizing: border-box;
}
.olb .topbar {
  font-size: 1.5rem;
  text-align: center;
  position: absolute;
  width: 100%;
}
.olb .topbar .title {
  text-align: center;
  flex-grow: 1;
  padding: 1rem;
  padding-bottom: 0;
  font-weight: bold;
}
.olb .close {
  line-height: 1rem;
  text-align: right;
  font-size: 2.5rem;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 1.5rem 1.3rem;
  z-index: 1;
  color: #9d9d9d;
}
.olb .content {
  padding: 1rem 3rem 2rem;
  height: 100%;
  overflow: hidden;
  font-size: 1.3rem;
}
.olb .iframe_content {
  flex-grow: 1;
  height: 90%;
}
.olb .iframe_content iframe {
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 2rem;
}
.olb .form {
  text-align: center;
}
.olb .form label {
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.4rem;
}
.olb .form input {
  width: 100%;
  text-align: center;
  height: 2.5rem;
}
.olb .form textarea {
  width: 100%;
  border: 1px solid #cccccc;
}
.olb .buttons {
  width: 100%;
  padding: 1.2rem;
  padding-top: 2rem;
}
.olb .buttons button {
  border: 1px solid #cccccc;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-right: 0.7em;
  font-size: 0.9em;
  font-family: Arial;
  height: 1.7em;
  cursor: pointer;
  width: 100px;
}
.olb .autocomplete .rows {
  height: 100%;
  overflow: scroll;
  margin-top: 2rem;
}
.olb .autocomplete .rows .row {
  padding: 0.5rem;
  background-color: #eee;
  cursor: pointer;
  margin-bottom: 1rem;
}
.olb .autocomplete .rows .row.focus {
  background-color: #ddc7be;
}
.olb .autocomplete input {
  height: 40px;
  font-size: 20px;
  width: 100%;
  border: 1px solid #C1C1C1;
  padding: 0.3em;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0px;
}

@media screen and (max-width: 600px) {
  .olb {
    width: 95% !important;
  }
}
