﻿
/*checkbox in sm*/
@keyframes click-wave-child {
  0% {
    height: 30px;
    width: 30px;
    opacity: 0.35;
    position: relative;
      border-radius: 50%;
  }
  100% {
    height: 150px;
    width: 150px;
    margin-left: -60px;
    margin-top: -60px;
    opacity: 0;
      border-radius: 50%;
  }
}

.option-input-child {
       direction: ltr!important;
    border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;

  right: 0;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 30px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  /*z-index: 1;*/
}
.option-input-child:hover {
  background: #9faab7;
}
.option-input-child:checked {
 background: #207ea8;
}
.option-input-child:checked::before {
  height: 30px;
  width: 30px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 20.66667px;
  text-align: center;
  line-height: 30px;
}
.option-input-child:checked::after {
  -webkit-animation: click-wave-child 0.2s;
  -moz-animation: click-wave-child 0.2s;
  animation: click-wave-child 0.2s;
 background: #207ea8;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

/*checkbox in lg*/
@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
      border-radius: 50%;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
      border-radius: 50%;
  }
}

.option-input {
       direction: ltr!important;
    border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  /*top: 13.33333px;*/
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  /*z-index: 1;*/
}
.option-input:hover {
  background: #9faab7;
}
.option-input:checked {
background: #207ea8;
}
.option-input:checked::before {
  height: 40px;
  width: 40px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 40px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.4s;
  -moz-animation: click-wave 0.4s;
  animation: click-wave 0.4s;
 background: #207ea8;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}



/*checkbox in tree xs*/

@keyframes click-wave-tree {
  0% {
    height: 17px;
    width: 17px;
    opacity: 0.35;
    position: relative;
      border-radius: 50%;
  }
  100% {
    height: 85px;
    width: 85px;
    margin-left: -34px;
    margin-top: -34px;
    opacity: 0;
      border-radius: 50%;
  }
}

.option-input-tree {
        direction: ltr!important;

    border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 17px;
    width: 17px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    /*z-index: 1;*/
}
.option-input-tree:hover {
  background: #9faab7;
}
.option-input-tree:checked {
background: #207ea8;
}
.option-input-tree:checked::before {
    color:#fff!important;
    height: 17px;
    width: 17px;
    position: absolute;
    content: '✔';
    display: inline-block;
    font-size: 12.66667px;
    text-align: center;
    line-height: 17px;
}
.option-input-tree:checked::after {
   -webkit-animation: click-wave-child 0.2s;
  -moz-animation: click-wave-child 0.2s;
  animation: click-wave-child 0.2s;
background: #207ea8;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
