
/* // checkbox style */
.checbox-main{
position: relative;
display: flex;
margin-top: 20px;
padding-bottom: 40px;
border-bottom: 1px solid #E8E8E8;
}
.checkbox label {
    padding-left: 24px;
  }
  .checbox-main input[type="checkbox"] {
    display: none;
  }
  .checbox-main input[type="checkbox"] + .box:before,
  .checbox-main input[type="checkbox"] + .box:after {
    transition: all 0.3s;
  }
  .checbox-main input[type="checkbox"] + .box:after {
    position: absolute;
    left: 4px;
    top: 3px;
    margin-top: -5px;
    margin-left: -4px;
    display: inline-block;
    content: ' ';
    width: 32px;
    height: 32px;
    border: 2px solid #898989;
    border-radius: 2px;
    background-color: #fff;
    z-index: 1000;
    border-radius: 50%;
  }
  .checbox-main input[type="checkbox"]:checked + .box:after {
    background-color:#FF5A5A;
    border-color: #FF5A5A;
  }
  .checbox-main input[type="checkbox"]:checked + .box:before {
    transform: rotate(45deg);
    position: absolute;
    left: 12px;
    top: 5px;
    width: 6px;
    height: 13px;
    border-width: 2px;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    border-color: #fff;
    content: '';
    z-index: 10000;
  }
  .checbox-main h6{
    margin-left: 20px !important;
    margin-top: 7px !important;
  }
  