.holder {
    display: block;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 22px;
    line-height: 28px;
}
input[type=checkbox] {
    width: 25px;
    height: 25px;
}
input[type="checkbox"][name="admn_category"]{
    visibility: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #676fff;
    border-radius: 6px;
}
.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #676fff;
    border-radius: 20px;
    padding: 4px;
}
.radiomark span{
    display: block;
    height: 15px;
    width: 15px;
    background: #676fff;
    border-radius: 20px;
    opacity: 0;
}
.holder:hover input ~ .checkmark{
    background-color: #676fff;
    transition: .5s;
}
.holder:hover input ~ .radiomark span, .holder input:checked ~ .radiomark span, .holder input:active ~ .radiomark span{
    background-color: #676fff;
    transition: .5s;
    opacity: 1;
}
.holder input:active ~ .checkmark {
    background-color: #676fff;
}
.holder input:checked ~ .checkmark {
    background-color: #676fff;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.holder input:checked ~ .checkmark:after {
    display: block;
}
.holder .checkmark:after {
    left: 8px;
    bottom: 6px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Tab */
/*headings*/
h2{
  font-size: 30px;
}
h3{
  font-size: 25px;
}
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #ee0979;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

/* Style the form */

#infoCon{
  margin: 35px auto;
  width: 70%;
  min-width: 300px;
}

/* Style the input fields */
input, select, textarea {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  border: 1px solid #ccc;
}

/* Mark input boxes that gets an error on validation: */
input.invalid, textarea.invalid, select.invalid, .custom-file-upload input.invalid + span{
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 35px;
  width: 35px;
  margin: 0 2px;
  background-color: #9c27b0;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  line-height: 35px;
  font-size: 25px;
  color: #fff;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
  opacity: 1;
}
input:focus, textarea:focus{
    border-color:#9c27b0!important;
}
input[type="file"] {
    display: none;
}
.custom-file-upload {
    border: 1px solid #ccc;
    display: block;
    cursor: pointer;
}
.custom-file-upload span{
    padding: 6px 12px;
}