/*
* Theme Name: Exit
* File name: style.css
* Theme URL: exit.mordorthemes.com
* Description: Exit - Beautiful Under Construction template
* Author: Mordorthemes
* Author URL: http://www.mordorthemes.com
* Support: support@mordorthemes.com
* Version: 1.0
*/

/*------------------------------------------------------

	CSS Table Of Contents: 

	1. MULTISELECT VARIETIES
		
---------------------------------------------------------*/

/* ==============================================
	Multiselect Varieties
=============================================== */


input[type="checkbox"][id^="cb"] {
  display: none;
}

label {
  display: block;
  position: relative;
  cursor: pointer;
}

label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -32px;
  left: 40px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

label img {
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

:checked + label {
  border-color: #ddd;
}

:checked + label:before {
  content: "✓";
  background-color: #9eba30;
  transform: scale(1);
}

:checked + label img {
  transform: scale(0.9);
  z-index: -1;
}