.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input, .small_switch input, .tiny_switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.small_switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  bottom: 0px;
}

.small_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.small_slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.tiny_switch {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 14px;
}

.tiny_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.tiny_slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #21f392;
}

input:focus + .slider {
  box-shadow: 0 0 0px #21f392;
}

input:checked + .small_slider {
  background-color: #21f392;
}

input:focus + .small_slider {
  box-shadow: 0 0 0px #21f392;
}

input:checked + .tiny_slider {
  background-color: #21f392;
}

input:focus + .tiny_slider {
  box-shadow: 0 0 0px #21f392;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

input:checked + .small_slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

input:checked + .tiny_slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
















/* The container */
.custom_checkmark,
.custom_small_checkmark, 
.custom_medium_checkmark, 
.custom_large_checkmark,
.custom_catalog_checkmark {

  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 22px;

}

.custom_checkmark{
  padding-left: 31px;
  margin-bottom: 31px;
}

.custom_small_checkmark{
  padding-left: 22px;
  margin-bottom: 22px;
}

.custom_medium_checkmark{
  padding-left: 26px;
  margin-bottom: 26px;
}

.custom_large_checkmark{
  padding-left: 38px;
  margin-bottom: 38px;
}

.custom_catalog_checkmark{
  padding-left: 18px;
}





/* Hide the browser's default radio button */
.custom_checkmark input, .custom_small_checkmark input, .custom_medium_checkmark input, .custom_large_checkmark input, .custom_catalog_checkmark input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}



/* Create a custom radio button */
.custom_checkmark .checkmark {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 25px;
  width: 25px;
  background-color: #FFF;
  border: 3px solid #0072e1;
  border-radius: 50%;
}

.custom_small_checkmark .checkmark{

  position: absolute;
  top: 0px;
  left: 0px;
  height: 18px;
  width: 18px;
  background-color: #FFF;
  border: 2px solid #0072e1;
  border-radius: 50%;

}

.custom_medium_checkmark .checkmark{

  position: absolute;
  top: 0px;
  left: 0px;
  height: 22px;
  width: 22px;
  background-color: #FFF;
  border: 2px solid #0072e1;
  border-radius: 50%;

}

.custom_large_checkmark .checkmark{

  position: absolute;
  top: 0px;
  left: 0px;
  height: 34px;
  width: 34px;
  background-color: #FFF;
  border: 2px solid #0072e1;
  border-radius: 50%;

}

.custom_catalog_checkmark .checkmark{

  position: absolute;
  top: 12px;
  right: 12px;
  height: 12px;
  width: 12px;
  background-color: #FFF;
  border: 1px solid #888;
  border-radius: 2px;

}

.custom_catalog_checkmark:hover{

  background-color: #fafafa;

}







/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom_checkmark input:checked + .checkmark:after {
  display: block;
}

/* Show the indicator (dot/circle) when checked */
.custom_small_checkmark input:checked + .checkmark:after {
  display: block;
}

/* Show the indicator (dot/circle) when checked */
.custom_medium_checkmark input:checked + .checkmark:after {
  display: block;
}

/* Show the indicator (dot/circle) when checked */
.custom_large_checkmark input:checked + .checkmark:after {
  display: block;
}

/* Show the indicator (dot/circle) when checked */
.custom_catalog_checkmark input:checked + .checkmark:after {
  display: block;
}





/* Style the indicator (dot/circle) */
.custom_checkmark .checkmark:after {
  
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #0072e1;

}

/* Style the indicator (dot/circle) */
.custom_small_checkmark .checkmark:after {
  
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0072e1;

}

/* Style the indicator (dot/circle) */
.custom_medium_checkmark .checkmark:after {
  
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0072e1;

}

/* Style the indicator (dot/circle) */
.custom_large_checkmark .checkmark:after {
  
  top: 6px;
  left: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0072e1;

}

/* Style the indicator (dot/circle) */
.custom_catalog_checkmark .checkmark:after {
  
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #2d3d5a;

}