.form-search-sidebar .btn-search-sidebar {
	display: block;
	width: 25rem;
	overflow: hidden;
	position: relative;
	background: var(--main-button-color);
	color: var(--black-color);
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	font-size: 20px;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	padding: 10px;
	margin: 0 auto;
}
.form-search-sidebar .btn-search-sidebar:hover {
	box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
	background-color: #d5d5d5;
}
.form-search-sidebar .btn-search-sidebar:active {
	box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
	background-color: #d5d5d5;
	color: var(--white-color);
}

.wgquantity {padding: 0 5px !important;}
.wgquantity label,
.form-group-icon-left label {
  font-size: 13px;
  font-weight: 600;
  color: var(--title-color);
  line-height: 16px;
  text-transform: capitalize;
  margin-bottom: 3px;
}
.direction-sidebar-wrap {
  display: inline-flex;
  height: 80px;
  width: 300px;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  padding: 20px 15px 20px 0;
}
.direction-sidebar-wrap .option-label {
  background: var(--white-color);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 10px;
  cursor: pointer;
  padding: 0 5px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
  margin: 0;
}
.direction-sidebar-wrap .option__oneway {margin-right: 20px;}
.direction-sidebar-wrap .option-label .dot {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.direction-sidebar-wrap .option-label .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: var(--saphire-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.direction-sidebar-wrap input[type="radio"] {display: none;}
.direction-sidebar-wrap .option-label span {
  font-size: 14px;
  color: #808080;
}
#wgoneway:checked:checked~.option__oneway,
#wgroundtrip:checked:checked~.option__roundtrip {
  background: var(--white-color);
  border-color: var(--saphire-color);
}
#wgoneway:checked:checked~.option__oneway .dot, #wgroundtrip:checked:checked~.option__roundtrip .dot {background: #fff;}
#wgoneway:checked:checked~.option__oneway .dot::before, #wgroundtrip:checked:checked~.option__roundtrip .dot::before {
  opacity: 1;
  transform: scale(1);
}
#wgoneway:checked:checked~.option__oneway span, #wgroundtrip:checked:checked~.option__roundtrip span {color: var(--saphire-color);}
