body{
	background-color: #FCFCFC;
	height: 100vh;
}

.container{
	background-color: #FFF;
	height: 100%;
}

.noselect{
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

#main, #side {
  display: inline-block;
	vertical-align: top;
}

#info{
  background-color: #bfefec;

}


#searchBox{
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 1em 1em 1em 1em;
	border: 1px solid grey;
	border-radius: 5px;
	vertical-align: top;
}

#searchText{
 background: transparent;
 border:none;
}

#searchBtn{
	background-color: #2196F3;
	color: white;
	font-weight: 600;
}
#resetBtn{
  background-color: #DA5A3F;
  color: white;
  font-weight: 600;
  margin-left: 10px;
}

#navigation{
	margin-top: 20px;
	padding: 0.5em 0 0.5em 0;
	border: 1px solid grey;
	border-radius: 5px;
}

#resultsContainer{
	margin-top: 1em;
	padding: 1em 1em 1em 1em;
	border: 1px solid grey;
	border-radius: 5px;
	width: 100%;
}

#resultsBox{
	width:100%;
	max-height: 55vh;
	overflow-y: scroll;
}

#iterationHistoryBtn{
	margin-left: 1em;
	background-color: #CFD8DC;
	color: black;
	font-weight: 600;

}

.searchItem{
  display: inline-block;
	background-color: #B3E5FC;
	padding: 0.1em 0.25em 0.1em 0.25em;
	margin: 0.1em 0.1em 0.1em 0.1em;
	border-radius: 0.2em;
	cursor: pointer;

}

.searchItem:hover{
	opacity: 0.5;
}

.resultItem{
  display: block;
	cursor: pointer;
}

.resultItem:hover{
  background-color:#E1F5FE;
}

.prevItem{
  display: inline-block;
	background-color: #B3E5FC;
	padding: 0.1em 0.25em 0.1em 0.25em;
	margin: 0.1em 0.1em 0.1em 0.1em;
	border-radius: 0.2em;

}


[hidden]{
  display:none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* LOADING MODAL CSS HERE */

/** SPINNER CREATION **/

.loader {
  position: relative;
  text-align: center;
  margin: 15px auto 35px auto;
  z-index: 9999;
  display: block;
  width: 80px;
  height: 80px;
  border: 10px solid rgba(0, 0, 0, .3);
  border-radius: 50%;
  border-top-color: #000;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}


/** MODAL STYLING **/

.modal-content {
  border-radius: 10px;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.loader-txt {
  p {
    font-size: 13px;
    color: #666;
    small {
      font-size: 11.5px;
      color: #999;
    }
  }
}

#output {
  padding: 25px 15px;
  background: #222;
  border: 1px solid #222;
  max-width: 350px;
  margin: 35px auto;
  p.subtle {
    color: #555;
    font-style: italic;
  }
  h4 {
    font-weight: 300 !important;
    font-size: 1.1em;
  }
  p {
    font-size: 0.9em;
    b {
      text-transform: uppercase;
      text-decoration: underline;
    }
  }
}
