label.eligible-label{padding: 0}
label {
  display: inline-block;
  position: relative;
  padding-left: 45px;
  cursor: pointer;
  margin: 0 15px 0 0;
}

input[type="radio"], input[type="checkbox"]{
  height: 1px;
  width: 1px;
  opacity: 0;
}

.outside {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 45%;
  margin-top: -10px;
  width: 35px;
  height: 35px;
  border: 2px solid #fb6701;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
}

.inside {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  /*background: #fb6701;*/
  left: 3px;
  top: 3px;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
}
.no-transforms .inside {
  left: auto;
  top: auto;
  width: 0;
  height: 0;
}

input {
  /*  &:focus, &:active {
        + .outside {
          border-color: $almost-black;
        }
      }*/
}
input:checked + .outside .inside {
  -webkit-animation: radio-select 0.1s linear;
          animation: radio-select 0.1s linear;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.no-transforms input:checked + .outside .inside {
  width: 10px;
  height: 10px;
}


/* The container */
.accept-chekcbox  {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.accept-chekcbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.accept-chekcbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background: transparent;
    border:1px solid #929292;
    border-radius: 5px;
    top: 5px;
}

/* On mouse-over, add a grey background color */
.accept-chekcbox:hover input ~ .checkmark {
    background-color: transparent;
    border:1px solid #929292;
}

/* When the checkbox is checked, add a blue background */
.accept-chekcbox input:checked ~ .checkmark {
    /*background: #2196F3;*/
    border-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.accept-chekcbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.accept-chekcbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (max-width: 991px) and (min-width: 768px)   {
  .outside{width: 25px;height: 25px}
  .inside{height: 15px;width: 15px;}
}
@media only screen and (max-width: 1024px) and (min-width: 992px){
 .outside{width: 25px;height: 25px}
  .inside{height: 15px;width: 15px;}
}
@media only screen and (max-width: 767px){
   .outside{width: 25px;height: 25px}
  .inside{height: 15px;width: 15px;}
  .opening .apply-block .btn-resume input, .opening .apply-block .btn-resume{width: 100%;height: auto; line-height: 40px;}
  .accept-chekcbox .checkmark{top: 0}
  label{padding-left: 30px;}
}