
/* selectbox wrapper */
.styled-select {
  display:inline-block;
  margin:0 2px;
  height:auto;
  color:black;
  position:relative;
  margin-left: -10px;
}

.styled-select,
.styled-select .curr {padding:0;
	margin-bottom: 37px;
	width: 100%;
}

/* select element inside the custom selectbox */
.styled-select select {
  padding:0 0;
  margin:0 0;
  height:0;
  visibility:hidden;
}

/* selectbox button (current value holder) */
.styled-select .curr {
  display:block;
  position:absolute;
  top:0;
  right:0;
  left:0;
  cursor:pointer;
  
  padding-left:10px;
  padding-bottom: 10px;
  color: #353f4f;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0;  
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.35;
  font-size: 1.375rem;  
  border-bottom:1px solid #fff;
}

/* arrow down */
.styled-select .curr:after{
  content:"";
  display:block;
  width:0;
  height:0;
  border:5px solid transparent;
  border-top-color:black;
  position:absolute;
  top:15px;
  right:8px;
}

/* drop down menu (fake option list) */
.styled-select ul {
	border:none;
  background-color:white;
  margin:0 0;
  padding:0 0;
  position:absolute;
  top:148%;
  right:0px;
  left:0px;
  z-index:99;
}

/* option item (fake option item) */
.styled-select li {
  list-style:none;
  cursor:pointer;
  padding:5px 10px;
  margin:0 0;
  
  color: #353f4f;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 0;  
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.35;
	font-size: 1.375rem;  
  
}

.styled-select li:hover {
  background-color:#39f;
  color:white;
}

/* selected option */
.styled-select li.selected,
.styled-select li.selected:hover {
  color:black;
  opacity: 0.5;
}

/* disabled option */
.styled-select li.disabled,
.styled-select li.disabled:hover {
  color:#bbb;
  font-style:italic;
  background:none;
  cursor:text;
}

/* focused selectbox */
.styled-select .curr.focused {
  border-bottom:1px solid #efefef;
}

.o-0{
	opacity:1 !important;
}
.o-0.selected{
	opacity:0.5 !important;
}

h5.falseswitch{
  border:1px solid #dadada;
  padding:4px 10px 6px 15px;
  margin-top:-5px;
  border-radius: 7px;
  margin-bottom:22px !important;
  position: relative;
}

h5.falseswitch.clicked, h5.falseswitch:hover{
  border-color:#1680fb;
}

h5.falseswitch.clicked:after{
  border-bottom-color:black;
  border-top-color: #fff;
  top:18px;
}

h5.falseswitch{
  cursor: pointer;
}

h5.falseswitch:after {
  content:"";
  display:block;
  width:0;
  height:0;
  border:5px solid transparent;
  border-top-color:black;
  position:absolute;
  top:25px;
  right:10px;
}

.falseswitch i{
  font-style: normal;
  font-size: 1rem;
  display:inline-block;
  float:right;
  color:#1680fb;
  border:2px solid #1680fb;
  border-radius:7px;
  padding:0px 7px;
  margin-top:5px;
  margin-right:32%;
}

.falseswitch .opts{
  display:none;
  position:absolute;
  top:100%;
  left:0px;
  width:100%;
  border:1px solid #dadada;
  background:#fff;
  z-index:100;
  margin-top:5px;
  border-radius:7px;
  padding:5px;
  box-shadow: 0px 10px 40px #dadada;
}

.opts .optval{
  padding:2px 9px;
  margin-bottom: 5px;
  border-bottom: 1px solid #efefef;
}

.opts .optval:hover{
  cursor:pointer;
  background:#efefef;
}

.opts .optval:last-child{
  margin-bottom: 0px;
  border-bottom: none;
}

.opts .optval h5{
  margin-bottom: 5px;
}

@media (max-width: 1400px) { 
  .falseswitch i{margin-right:20%;}
}

@media (max-width: 991px) { 
  .falseswitch i{margin-right:0%;}
}


@media (max-width: 767px) { 
  .falseswitch i{margin-right:20%;}
}
