.bootstrap-select .dropdown-menu li {
	visibility:visible !important;
	opacity:1 !important
}

.bootstrap-select .dropdown-menu.show {
	visibility:visible !important;
	opacity:1 !important;
}

.sepet.custom-checkbox .custom-control-indicator {
width: 124px !important;
padding: 14px 0 14px 0 !important;
border-radius: 5px !important;
text-align: center !important;
background-color: #f5633e !important;
color: #FFF !important;
height: unset !important;
}

.sepet.custom-checkbox .custom-control-indicator:after {
	padding: 14px 0 14px 0 !important;
	width: 124px !important;
	text-align: center !important;
	content: 'Sepete Eklendi' !important;
	color: #FFF !important;
	background-color: #1d9404 !important;
	border-radius: 5px !important;
	top: 0 !important;
	left: 0px !important;
	box-shadow: unset !important;
	height: unset !important;;
}

/*!
 * CUSTOM CHECKBOX
 */
 
 .custom-control.sepet {
	 display:inline-block !important
 }

.custom-checkbox {
  min-height: 1rem;
  padding-left: 0;
  margin-right: 0;
  cursor: pointer; 
}
  .custom-checkbox .custom-control-indicator {
    content: "";
    display: inline-block;
    position: relative;
    width: 30px;
    height: 10px;
    background-color: #818181;
    border-radius: 15px;
    margin-right: 10px;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    vertical-align: middle;
    margin: 0 16px;
    box-shadow: none; 
  }
  
  .sepet.custom-checkbox .custom-control-indicator:after {
	  opacity:0;
	transition-property: opacity;
  }
    .custom-checkbox .custom-control-indicator:after {
      content: "";
      position: absolute;
      display: inline-block;
	  transition-property: opacity;
      width: 18px;
      height: 18px;
      background-color: #f1f1f1;
      border-radius: 21px;
      box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
      left: -2px;
      top: -4px;
      -webkit-transition: left .3s ease, background .3s ease, box-shadow .1s ease;
      transition: left .3s ease, background .3s ease, box-shadow .1s ease; 
    }
  .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-color: #84c7c1;
    background-image: none;
    box-shadow: none !important; 
	transition-property: opacity;
  }
  .sepet.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator:after {
	  opacity:1 !important;
	  transition-property: opacity;
  }
    .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator:after {
      background-color: #84c7c1;
      left: 15px; 
    }
  .custom-checkbox .custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: none !important; 
  }
