@charset "utf-8";
/* CSS Document */
.containter-dropdawn-check {
  position: relative;
}
.myCheck {
  background: #fff;
  padding: 15px 40px;
  border-radius: 4px;
  width: 300px;
  position: absolute;
  top: 40px;
  left: 0;
  display: none;
  
  
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}
.box-cheking {
  display: flex;
  margin: 13px 0;
}
.myCheck label {
  width: 100%;
  cursor: pointer;
  padding-left: 10px;
}
.myCheck input {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
}
.myCheck .ok {
  display: flex;
  justify-content: right;
}
.myCheck .ok a {
  background: #19bd66;
  border-radius: 4px;
  font-size: 15px;
  border: none;
}
button#mycheck-togle {
  height: 40px;
  border-radius: 3px;
}