/* Custom styles for the select element */
.select-type {
  display: inline-block;
  position: relative;
  width: 150px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer;
}

.select-type::after {
  content: '\25BC';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Styles for the dropdown options */
.select-type select {
  position: absolute;
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 1;
}

/* Styles for the selected option */
.select-type select option[selected] {
  background-color: #e0e0e0;
}

/* Styles for the dropdown arrow icon on hover */
.select-type:hover::after {
  color: #333;
}

/* Styles for the dropdown options on hover */
.select-type select:hover {
  background-color: #f0f0f0;
}

/* Styles for the dropdown options when opened */
.select-typeselect:valid {
  background-color: #f0f0f0;
}
#none{
	display:none !important;
}
.bus-select{
  display:flex;
  align-items:center;
  max-width:100%;
	margin-bottom:10px;
}
.bus-type-title{
  margin-right:10px;
	font-weight:bold;
	color:rebeccapurple;
}
#trainCount{
margin: 0 0 0 10px !important;	
	color:#993333 !important;
	font-weight:bold;
}
.disnone{
	display:none !important;
}


*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
input[type="date"]{
    background-color: #fff;
    padding: 5px;
   position:relative;
    font-family: "Roboto Mono",monospace;
    color: #111;
    font-size: 15px;
    border: 1px solid #111;
    outline: none;
    border-radius: 5px;
}
::-webkit-calendar-picker-indicator{
    background-color: #fff;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
}
.busTimeBox .square{
	    background: #ff4eb4;
}

 
.busTimeBoxGrid.fadeup {
    opacity: 1; 
    transform: translateY(0);
		filter:blur(0px);
  }
.busTimeBoxGrid {
    opacity: 0; 
	filter:blur(5px);
	transform:translateY(-100%);
    transition: opacity 0.5s ease, transform 0.8s ease; 

} 
#notAvailableContainer .busTimeBoxGrid{
	opacity: 1; 
    transform: translateY(0);
		filter:blur(0px);
	
}