#live-results {
	position: absolute;
	top: 50%;
	left: 12px;
	padding-top: 30px;
	width: calc(100% - 22px);
	height: 84px;
	border-radius: 0 0 19px 19px;
	background-color: #1b232e;
	color: white;
	z-index: 0;
	border: 2px solid;
	display: none;
	z-index: 101;
}
.single-result {
	border-top: 2px solid;
	padding: 10px;
	cursor: pointer;
	display: none;
	z-index: 0;
	transition: background-color 0.2s ease-in-out;
}
.title-text, .search-label, .price-tag {
	color: white;
	transition: color 0.2s ease-in-out;
}
.single-result:hover {
	background-color: white;
}
.single-result:hover .title-text {
	color: #1b232e;
}
.single-result:hover .search-label {
	color: #1b232e;
}
.single-result:hover .price-tag {
	color: #1b232e;
}
.background-image {
	position: absolute;
	width: 100%;
	margin-top: -10px;
	margin-left: -10px;
	background-size: cover;
	background-position: center center;
	z-index: -1;
}
.bottom-background-image {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}
.bottom-result {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
#loader-container {
	position: absolute;
	left: 129px;
	top: 10px;
}
.title-text {
	margin-bottom: 5px;
}
.search-label {
	font-size: 12px;
}
.single-table {
	width: 100%;
	z-index: 1;
}
.single-table td:first-of-type {
	width: 100%;
}
.btn-live-search-submit {
	width: 100%;
	background-color: #ff6457;
	color: white;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	padding-top: 6px;
	padding-bottom: 5px;
	display: none;
}
.btn-live-search-submit:hover {
	background-color: #ff6457!important;
}
.lds-ellipsis {
  display: inline-block;
  position: flex;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/* Mobile Specific */
#live-results-mob {
	position: absolute;
	left: 15px;
	width: calc(100% - 75px);
	height: 84px;
	top: 24px;
	padding-top: 30px;
	border-bottom-left-radius: 19px;
	border-bottom-right-radius: 19px;
	background-color: #1b232e;
	color: white;
	z-index: 100;
	border: 2px solid;
	display: none;
}
#loader-container-mob {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}
/* Adjusted */
#adjusted-search-container {
	z-index: 101;
}
#adjusted-live-results {
	position: absolute;
	top: 34px;
	right: 77px;
	width: var(--adjusted-searchbar-width);
	height: 84px;
	padding-top: 30px;
	border-bottom-left-radius: 19px;
	border-bottom-right-radius: 19px;
	background-color: #1b232e;
	color: white;
	z-index: 100;
	border: 2px solid;
	display: none;
}
#adjusted-loader-container {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}