.tmcs-container {
  width: 100%;  
  padding: 20px 0;
  margin: auto;  
}
.tmcs-container h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.tmc-search {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
}
.tmc-search > i {
  position: absolute;
  top: 16px;
  left: 14px;
}
.tmc-search-icon {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(1);
  width: 12px;
  height: 12px;
  border: 2px solid;
  border-radius: 100%;
}
.tmc-search-icon::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 2px;
  height: 6px;
  background: currentColor;
  transform: rotate(-45deg);
  top: 7px;
  left: 9px
}
.tmc-search-input {
  width: 100% !important;
  height: 47px !important;
  padding: 12px 20px 12px 40px !important;
  border: 1px solid #ededed !important;
  border-radius: 6px !important;
  font-size: 1rem !important;
  outline: none !important;
  -webkit-box-shadow: 0px 1px 10px 0px rgb(0 0 0 / 8%);
  box-shadow: 0px 1px 10px 0px rgb(0 0 0 / 8%);
}         
.tmc-search-input:focus-visible {
  border-color: #a0a0a0;
}          
.tmcs-result-list {
  position: absolute;
  width: 100%;
  max-width:870px;                
  overflow-y: auto;
  max-height: 300px;
  box-sizing: border-box;
  z-index: 1001;
  list-style: none;
  padding: 2px 0;
  margin: -1px 0 0 0;
  background-color: #ffffff;
  border: 1px solid #ededed;
  border-radius: 6px;
  scrollbar-color: #5e5e5e #F5F5F5;
  scrollbar-width: thin;
  -webkit-box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
}
.tmcs-result-list li {
  font-size: 0.9rem;
  padding: 6px 20px;            
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ededed;  
}
.tmcs-result-list li:hover {
 background-color: #deebfb;
}
.tmcs-result-list li span{
  color: #ffffff;
  border: 1px solid #eb8d15;
  background-color: #eb8d15;
  border-radius: 20px;
  padding: 4px 6px;
  margin-left: 7px;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: .5px;
  min-width: fit-content;
  cursor: pointer;
}
.tmcs-result-list li span:hover{
  background-color: #931a25;
  border-color: #931a25;
}
.tmcs-result-list::-webkit-scrollbar-track {
  border-radius: 10px;                
  background-color: #F5F5F5;
}
.tmcs-result-list::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.tmcs-result-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #5e5e5e;
}
@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@-webkit-keyframes rotate360 {
  from { -webkit-transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); }
}
.spinner {
  display:inline-block;
  border-radius: 50px;
  border-style: solid;
  border-bottom-color: #931a25;
  border-top-color: #931a25;
  border-left-color: #d7d7d7;
  border-right-color: #d7d7d7;
  text-align: center;
  vertical-align: middle;            
  animation: rotate360 1s linear infinite;
  -webkit-animation: rotate360 1s linear infinite;
  border-width: 3px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 11px;
  top: 14px;
  background-color: #fff;
}