/* The container <div> - needed to position the dropdown content */
.ws-dropdown {
	position: relative;
	display: inline-block;
	color:#1F284C;
}
.ws-dropdown-btn {
	cursor: pointer;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	top:52px;
	left:-94px;
	padding: 8px 0;
	min-width: 165px;
	background-color: #fff;
	border-radius:10px;
	border: 1px solid #C8C8C8;
	z-index: 12;
}
.dropdown-content.right{
	left: auto;
    right: 0;
}
.dropdown-content.left{
	left: 0;
    right: auto;
}
.dropdown-content.top{
	top: auto;
    bottom: 78px;
}
.dropdown-content.block{
	top: 50px;
	left: 0;
    right: 0;
}
.dropdown-content .scrolled{
	max-height: 400px;
	overflow-y: auto;
}
/* .dark .dropdown-content{
	background-color:#5D626C;
	box-shadow: 0 7px 20px -10px rgba(136,141,150);
} */
/* Links inside the dropdown */
.dropdown-content .dd-item {
	display: flex;
	/* padding: 12px 16px; */
	margin: 0 8px;
	line-height: 1;
	border-radius:8px;
}
.dropdown-content .dd-item:hover{
	background-color: #F1ECFC;
}
.dropdown-content .dd-item a{
	display: inline-block;
	padding: 16px 8px;
	text-decoration: none;
	width:100%;
	color:#1F284C;
}

.dropdown-content .dd-item .checkbox{
	padding-left: 0;
	line-height: 1;
}

.dropdown-content .dd-item .checkbox label{
	width:100%;
	margin-bottom: 0;
	padding-left: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.dropdown-content .checkbox label::before {
	top: 0;
	left:27px;
}
.dropdown-content .checkbox input[type="checkbox"]:checked + label::after{
	top: 8px;
	left:37px;
}

.dropdown-content .dd-item.active,.dropdown-content .dd-item:hover {
	background-color: #ffd9e6;
}
/* .dark .dropdown-content .dd-item.active {
	background-color: #888D96;
} */
.dropdown-content a {
	color:rgba(30,36,49,0.7);
}
.dropdown-content a {
	color:#1f1f1f;
}
/* .dark .dropdown-content a {
	color:#fff;
} */
.dropdown-content a span{
	padding-left:10px;
}
.dropdown-content .icon{
	width: 24px;
	height: 24px;
}
.dropdown-content .inputbox-sm .icon{
	width: 20px;
	height: 20px;
}
.card .dropdown-content .icon,.card-list .dropdown-content .icon{
	vertical-align: -0.25em;
}
.dropdown-content .icon-512{
	width: 20px;
	margin: 0 2px;;
}
.dropdown-content .dd-item.hs{
	display: none;
}
.dropdown-content.l2 .dd-item{
	display: none;
}
.dropdown-content.l2 .dd-item.hs{
	display: block;
}
.dropdown-content .dd-item.btn-item{
	padding:0;
}
.dropdown-content .dd-item.btn-item .icon{
	margin-right:5px;
}
.dropdown-content .dd-item .btn{
	display:inline-block;
	margin:0;
	padding: 11px 16px;
	width:100%;
	text-align:left;
}
.dropdown-content .dd-item .btn:hover,.dropdown-content .dd-item .btn:active,.dropdown-content .dd-item .btn:focus{
	background-color:rgba(255,255,255,0.05);
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.ws-dropdown.show{
	z-index: 13;/*+1 to modal footer z-index*/
}
.ws-dropdown.show > .dropdown-content{
	display:block;
}
.ws-dropdown.show > .inputbox .down .icon{
	transform: rotate(180deg);
}

/* Radio */

.radio {
  padding-left: 20px;
}
/* .radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  top: 3px;
  margin-left: -20px;
  border: 1px solid #1E2431;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 6px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #1E2431;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
} */
.radio.radio-inline {
  margin-top: 0;
}
.card-service .dropdown-content, .card-user-service .dropdown-content{
	min-width: 180px;
}