.radio-wrapper{
  display: inline-flex;
  background: #fff;
  height: 40px;
  width: 95%;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  padding: 20px 15px;
  box-shadow: 5px 5px 30px rgba(0,0,0,0.2);
  margin: 20px auto;
}
.radio-wrapper .option{
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
/*    border: 2px solid lightgrey; */
  transition: all 0.3s ease;
}
.radio-wrapper .option .dot{
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.radio-wrapper .option .dot::before{
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #0069d9;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2{
  border-color: #0069d9;
  background: #0069d9;
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot{
  background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before{
  opacity: 1;
  transform: scale(1);
}
.radio-wrapper .option span{
  font-size: 14px;
  color: #808080;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span{
  color: #000000;
}
.search-result{      
  z-index: 999;
	width: 100%;
	height: 40vh;
	overflow-y: scroll;
	overflow-x: none;
  background-color: #ffffff;
}
.search-result p{
    margin: 0;
    padding: 5px 10px;
    border-bottom: 1px solid #CCCCCC;
    cursor: pointer;
	  font-size: 14px;
  	text-align: left;
}
.search-result p:hover{
   background: #f2f2f2;
}
.search-result-mobile{      
  z-index: 999;
	width: 100%;
  background-color: #ffffff;
}
.search-result-mobile p{
    margin: 0;
    padding: 5px 10px;
    border-bottom: 1px solid #CCCCCC;
    cursor: pointer;
	  font-size: 14px;
  	text-align: left;
}
.search-result-mobile p:hover{
   background: #f2f2f2;
}
.search-area-wrap-mobile{
  height: 60vh;
  overflow-y: scroll;
	overflow-x: none;
}
.locationpoint {
  position: relative; width: 250px;
  -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
margin: 0 auto 10px auto;
}
.locationpoint-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.locationpoint-label {
  display: block; overflow: hidden; cursor: pointer;
  border: 2px solid #8DC63F; border-radius: 12px;
}
.locationpoint-inner {
  display: block; width: 200%; margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}
.locationpoint-inner:before, .locationpoint-inner:after {
  display: block; float: left; width: 50%; height: 33px; padding: 0; line-height: 33px;
  font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
  box-sizing: border-box;
}
.locationpoint-inner:before {
  content: "ใช้ตำแหน่งอื่น";
  padding-left: 10px;
  background-color: #8DC63F; color: #FFFFFF;
}
.locationpoint-inner:after {
  content: "ใช้ตำแหน่งปัจจุบัน";
  padding-right: 10px;
  background-color: #FFFFFF; color: #8DC63F;
text-align: right;
}
.locationpoint-switch {
  display: block; width: 24px; margin: 4px;
  background: #FFFFFF;
  position: absolute; top: 0; bottom: 0;
  right: 214px;
  border: 2px solid #8DC63F; border-radius: 12px;
  transition: all 0.3s ease-in 0s; 
}
.locationpoint-checkbox:checked + .locationpoint-label .locationpoint-inner {
  margin-left: 0;
}
.locationpoint-checkbox:checked + .locationpoint-label .locationpoint-switch {
  right: 0px; 
}