@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

html,
body {
  margin: 0px;
  height: 99%;
  width: 99%;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

h1 {
	color: #00c8e8;
}

iframe {
  border: 0;
  height: 99%;
  width: 99%;
}

.pLeft {
  float: left;
  width: 75%;
  height: 98vh;
}


.pRight {
  float: right;
  width: 25%;
  height: 98vh;
}

.pNestedTop {
  float: left;
  width: 100%;
  height: 66vh;
}

.pNestedLeft {
  float: left;
  width: 50%;
  height: 32vh;
}


.pNestedRight {
  float: right;
  width: 50%;
  height: 32vh;
}


/* removes tap blinking on ios devices */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Search css */
::selection {
  color: #fff;
  background: #664AFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.wrapper {
  max-width: 500px;
  margin-top: 50px;
  margin-bottom: 30px;
  padding-right: 4px;
  padding-left: 10px
}

.wrapper .search-input {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input {
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.search-input.active input {
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.search-input.active .autocom-box {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
}

.autocom-box li {
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.search-input.active .autocom-box li {
  display: block;
}

.autocom-box li:hover {
  background: #efefef;
}

.search-input .icon {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #00c8e8;
  cursor: pointer;
}

#searchResultsTitle {
	max-height: calc(98vh - 150px);
	padding-right: 4px;
    padding-left: 10px;
	overflow-y: auto;
}
/*#searchResultsTitle {
	max-height: auto;
	padding-right: 4px;
    padding-left: 10px;
	overflow-y: 90vh;
}
