/* The container */
.container {
  display: block;
  position: relative;
  padding: 10px 0px 10px 0px;
  margin: 5px 0px 5px 0px;
  cursor: pointer;
  font-size: 22px;
  height:25px;
   width:25px;
   font-family: 'Roboto Slab';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
container:after
{
background: #2196F3;
}
/* Hide the browser's default checkbox */
.container input {
  position: relative;
  opacity: 0;
  cursor: pointer;
  height: 3px;
  width: 3px;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 7px;
  left: 2px;
  height: 25px;
  width: 25px;
  border:1px solid #4f86f7;
  border-radius:5px;
  background-color: #eee;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color:grey;
}
/* When the checkbox is checked, add a blue background */
.container input:checked~ .checkmark {
  background-color:#4f86f7;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position:absolute;
  background-color:#4f86f7;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*check uno*/
.container1 {
  display: block;
  position: relative;
  padding: 10px 0px 10px 0px;
  margin: 5px 0px 5px 0px;
  cursor: pointer;
  font-size: 22px;
  /*border:2px solid black;*/
  height:25px;
   width:25px;
   font-family: 'Roboto Slab';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
container1:after
{
background: #2196F3;
}
/* Hide the browser's default checkbox */
.container1 input {
  position: relative;
  opacity: 1;
  cursor: pointer;
  height: 3px;
  width: 3px;
}
.checkmark1 {
  position: absolute;
  top: 2px;
  left: 2px;
  right:5px;
  height: 25px;
  width: 25px;
  border:1px solid #4f86f7;
  border-radius:5px;
  background-color: #eee;
}
.container1:hover input ~ .checkmark1 {
  background-color:grey;
}
.container1 input:checked~ .checkmark1 {
  background-color:#4f86f7;
}
.checkmark1:after {
  content: "";
  position:absolute;
  background-color:#4f86f7;
  display: none;
}
.container1 input:checked ~ .checkmark1:after {
  display: block;
}
.container1 .checkmark1:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*end uno*/
/* Popup container - can be anything you want */
.popup {
  position: absolute;
  right:0px; 
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  display: none;
  width: 280px;
  height:300px;
  /*background-color: #555;*/
  color: #000;
  text-align:center;
  font-size:14px;
  /*border-radius: 6px;*/
  padding: 8px 0;
  position: relative;
  z-index: 10;
  /*top: 500px;*/
  /*right:20px;*/
  /*margin-left: -80px;*/
}

/* Popup arrow 
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}*/

/* Toggle this class - hide and show the popup */
.popup .show {
  display:block;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
/*PopupZ*/
.popup1 {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.popup1 .popuptext1 {
  display: none;
  width: 280px;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position:relative;
  z-index: 10;
}
.popup1 .show1 {
  display:block;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 3s;
}
/*end Zpopup*/
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}