@charset "UTF-8";
.tmjs-hidden {
  /* display: none!important; */
  left: -100% !important;
  right: auto !important;
}

.tmjs-hide-overflow {
  overflow: hidden !important;
}

.tmjs-search-input-container {
  border: 1px solid #EDEDED;
  border-radius: 3px;
  margin-bottom: 13px;
}

/*
  Simple style reset
*/
.tmjs-modal, .tmjs-modal-flat, .tmjs-container,
.tmjs-modal *, .tmjs-modal-flat *, .tmjs-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.tmjs-modal, .tmjs-modal-flat, .tmjs-container {
  font-family: 'Montserrat', Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
}

/*
  Main container
*/
.tmjs-selected-terminal {
  padding-bottom: 15px;
  font-size: 15px;
  font-weight: 800;
}

.tmjs-open-modal-btn {
  border-radius: 6px;
  background-color: #fd981a;
  padding: 13px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
}

/*
  Animated overlay
*/
div.tmvp-loading-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  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);
  }
}
/*
  Modal
*/
.tmjs-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(242, 239, 233, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

.tmjs-modal-flat {
  width: 100%;
  height: 100%;
  background-color: rgba(242, 239, 233, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tmjs-modal-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  overflow: hidden;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: column;
}

.tmjs-modal-flat .tmjs-modal-content {
  width: 100%;
  height: 100%;
}

/*
  Modal Header
*/
.tmjs-modal-header {
  padding: 1em;
  background-color: #fff;
  border-bottom: 1px solid #fefefe;
}

.tmjs-close-modal-btn {
  width: 40px;
  height: 30px;
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
}

.tmjs-close-modal-btn::before, .tmjs-close-modal-btn::after {
  content: " ";
  position: absolute;
  left: 21px;
  height: 17px;
  width: 2px;
  border-radius: 2px;
  background-color: #333;
  box-sizing: border-box;
}

.tmjs-close-modal-btn::before {
  transform: translateX(-50%) rotate(45deg);
}

.tmjs-close-modal-btn::after {
  transform: translateX(-50%) rotate(-45deg);
}

/*
  Modal body
*/
.tmjs-modal-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.tmjs-map-container {
  flex: 2;
  background-color: green;
}

.tmjs-map {
  width: 100%;
  height: 100%;
}

.tmjs-terminal-sidebar {
  position: relative;
  background-color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  padding: 15px 12px 11px 15px;
}

.tmjs-terminal-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 12px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.11));
  height: 100%;
  z-index: 1000;
}

.tmjs-search-input {
  padding: 2px 10px;
  border: none;
  border-radius: 3px;
  line-height: 30px;
  height: 36px;
  display: block;
  float: left;
  background-color: #ffffff;
  width: calc(100% - 39px);
  border-radius: 4px 0px 0px 4px;
  margin-right: -1px;
  font-size: 14px;
}

.tmjs-search-btn {
  background-size: 20px 20px;
  background-position: center center;
  /*border-radius: 3px;*/
  height: 36px;
  width: 36px;
  display: block;
  float: left;
  border-radius: 0px 4px 4px 0px;
  /*background-color: #fd981a;*/
  padding: 9px;
}

input.tmjs-search-input:focus {
  outline: 0;
}

.tmjs-d-block {
  display: flex;
  width: 100%;
  margin-bottom: 13px;
}

a:hover.tmjs-geolocation-btn a:focus.tmjs-geolocation-btn {
  color: #fd981a;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tmjs-geolocation-btn {
  /* background-size: 20px 20px; */
  /* background-position: center center; */
  /* border-radius: 3px; */
  height: 36px;
  width: 36px;
  display: block;
  float: left;
  /* border-radius: 0px 4px 4px 0px; */
  padding-top: 10px;
  /* padding-left: 10px; */
  border-left: 1px solid #EDEDED;
  text-align: center;
}

.tmjs-terminal-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dadada;
  border-radius: 3px;
  padding: 20px;
  background-color: #fbfbfb;
  margin-top: 10px;
  padding: 16px 14px 13px;
}

.tmjs-terminal-block > h3 {
  margin-bottom: 1em;
  text-align: center;
}

.tmjs-terminal-list {
  flex: 1;
  overflow: auto;
  padding: 0 0 2em;
}

.tmjs-terminal-list > li:not(.tmjs-city) {
  line-height: 1.5em;
  cursor: pointer;
  padding: 11px;
}

.tmjs-terminal-list > li:not(.tmjs-city):hover {
  background-color: #ececec;
  z-index: 2312312312312321;
}

.tmjs-city {
  font-weight: 700;
  list-style-type: none;
  font-size: 14px;
  color: #232323;
}

.tmjs-city:not(:first-of-type) {
  margin-top: 0.5em;
  margin-top: 15px;
  margin-bottom: 5px;
  list-style: none;
}

.tmjs-active {
  background-color: white;
  color: #000;
  border-radius: 4px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.tmjs-terminal-info {
  display: none;
  border-radius: 7px;
  transition: height ease-in-out 1s;
  text-align: left;
}

.tmjs-terminal.tmjs-active .tmjs-terminal-info {
  display: block;
}

.tmjs-terminal.tmjs-active .tmjs-terminal-distance {
  color: #fff;
  width: 100%;
}

.tmjs-active .tmjs-terminal-name {
  font-size: 13px;
  margin-right: 0;
  line-height: 15px;
}

.tmjs-terminal-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 13px;
  color: #232323;
}

.tmjs-terminal-comment {
  padding: 7px 0px;
  text-align: center;
  color: #8e5307;
}

a.tmjs-select-btn, a:hover.tmjs-select-btn, a:focus.tmjs-select-btn {
  color: #FFFFFF;
  background-color: #EEAB00;
  display: inline-block;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 16px;
  border-radius: 0.25rem;
  transition: color 0.15s;
  text-decoration: none;
}

.tmjs-select-btn::first-letter {
  text-transform: uppercase;
}

.tmjs-select-btn a {
  text-decoration: none;
}

/*
  Modal footer
*/
/*
  Map
*/
@keyframes tmjs-bounce {
  from {
    top: 0px;
  }
  to {
    top: -10px;
  }
}

.tmjs-active-marker {
  animation: tmjs-bounce 0.4s infinite alternate;
}

.tmjs-active-marker-hidden {
  display: none !important;
}

/*spacings or custom classes*/
.tmjs-pt-1 {
  padding-top: 0.5rem;
}

.tmjs-pt-2 {
  padding-top: 1rem;
}

.tmjs-my-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tmjs-terminal.tmjs-active {
  text-align: center;
}

.tmjs-terminal-distance {
  margin-left: 3px;
  color: #848080;
  font-style: normal;
  font-weight: normal;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .tmjs-modal-body {
    flex-direction: column;
  }

  .tmjs-terminal-sidebar {
    height: 75%;
    padding: 15px;
  }

  .tmjs-terminal-sidebar::before {
    display: none;
  }

  .tmjs-terminal-sidebar {
    flex: 3;
  }
}
/* tmjs-loading dots loader */
div.tmjs-loading {
  color: #fb9819;
  font: 2em Impact;
  text-align: center;
  width: inherit;
  margin-left: -10px;
  line-height: 5px;
}

.tmjs-loading:after {
  content: "•";
  /* https://www.toptal.com/designers/htmlarrows/punctuation/bullet/ */
  animation: tmjs-dots 1s steps(5, end) infinite;
  position: absolute;
}

@keyframes tmjs-dots {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: #fb9819;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: 0.25em 0 0 #fb9819, 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: 0.25em 0 0 #fb9819, 0.5em 0 0 #fb9819;
  }
}

#filter-container div:last-child {
  text-align: right;
}

@media (max-width: 992px) and (min-width: 768px)
{
  #filter-container label {
    width: 50%;
  }
  .tmjs-close-modal-btn {
    right: -5px;
  }
}
/**  tmjs-loading dots loader end **/
