.info {
  padding: 2px 10px;
  margin: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border-radius: 20px;
  position: absolute;
  z-index: 999;
  color: #fff;
  background-color: #2196f359;
  border: 1.5px solid #2196f3;
  box-shadow: 3px 2px 3px 0px #1f1f1f38;
  text-decoration: none;
}
.info:hover {
  background-color: #2196f3;
}
.quitter {
    right: -10px;
    border-radius: 50px 0 0 50px;
    padding: 3px 7px;
    margin: 20px 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    position: absolute;
    z-index: 999;
    color: #fff;
    background-color: #e6e6e691;
    border: 1.5px solid #fff;
    border-right:0;
    transition: all 0.2s ease-in-out;
    box-shadow: 2px 3px 2px 2px #1f1f1f47;
}
.quitter:hover {
  background-color: #FF9800;
  padding: 6px 13px;
  margin: 15px 10px;
  transition: all 0.2s ease-in-out;
}
.ball {
  transition: all 0.2s ease-in-out;
}
.ball:hover {
  transform: scale(1.2);
  transition: all 0.2s ease-in-out;
}
.ok {
  background: #666;
  color: #fff;
  position: relative;
  padding: 1px 5px;
  top: 0;
  border-radius: 5px;
  margin-top: 15px;
}
.propulsed {
  padding: 2px 6px;
    margin: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    position: absolute;
    z-index: 999;
    bottom: 10px;
    right: 10px;
    color: #fff;
    background-color: #e6e6e600;
     transition: transform .2s;
}
.propulsed:hover {
  transform: scale(1.05);
}

#wrapper {
  width: 100px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border: 10px solid #aaa;
  border-radius: 15px;
  background-clip: padding-box;
  text-align: center;
}

.button2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  padding: 5px 10px;
  border: 1px solid #aaa;
  background-color: #eee;
  background-image: linear-gradient(top, #fff, #f0f0f0);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  color: #666;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.button2:hover {
  border-color: #999;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.button2:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
}
.overlay.light {
  background: rgba(255, 255, 255, 0.5);
}
.overlay .cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 999;
}

.popup {
  margin: 75px auto;
  padding: 20px;
  background: #ffffffd6;
  border: 2px dashed#95c845;
  width: 320px;
  box-shadow: 0 0 50px rgb(0 0 0 / 50%);
  position: relative;
  border-radius: 0 20px 0 0;
  border-bottom: 5px solid #95c845;
}
.light .popup {
  border-color: #aaa;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.popup h2 {
  margin-top: 0;
  color: #666;
  text-align: center;
  font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 5px;
  padding: 0px 0px 7px 7px;
  border-radius: 50px;
  border: 1px solid #8bc34a;
  right: 8px;
  opacity: 0.8;
  transition: all 200ms;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #8bc34a;
}
.popup .close:hover {
  opacity: 1;
}
.popup .content {
  max-height: 400px;
  overflow: auto;
}
.popup p {
  margin: 0 0 1em;
}
.popup p:last-child {
  margin: 0;
}
