
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/*  --------------  floating-label-inputs-css ----------------- */

.group {
    position: relative;
    margin-bottom: 15px;
    font-family: poppins;
}

.input_material {
    font-size: 14px;
    padding: 1px 10px 1px 15px;
    display: block;
    width: 100%;
    height: 40px;
    border: none;
    border: 1px solid #ccc;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.description {
    height: 70px;
    padding-top: 12px;
}

.input_material:focus {
    outline: none;
    border-color: #0177bc !important;
    box-shadow: 0px 0 1px #0177bc !important;
}

/* LABEL ======================================= */
.form-label {
    color: #999;
    font-size: 14px;
    font-weight: normal !important;
    position: absolute;
    pointer-events: none;
    top: 10px;
    left: 30px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}



/* active state -------------------------------------------- */
.input_material:focus ~ .form-label, .input_material.used ~ .form-label {
    top: -9px;
    font-size: 12px;
    color: #0177bc !important;
    background: #fff;
    left: 20px;
    padding: 0px 8px;
}



.input_material:valid.used ~ .form-label {
    color: #0177bc !important;
}


/* BOTTOM BARS ================================= */

/* .bar 	{ position:relative; display:block; width:100%; }
.bar:before, .bar:after 	{
  content:'';
  height:1px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#c28d38; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
} */

/* active state */
.input_material:focus ~ .bar:before, .input_material:focus ~ .bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.input_material:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
    }

    to {
        width: 0;
        background: transparent;
    }
}


/* table custom_checkbox */
.t_checkbox {
    display: block;
    position: relative;
    margin-bottom: 24px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkmark2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border: 2px solid #ccc;
}

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark2:after {
        content: "";
        position: absolute;
        display: none;
    }

/* Hide the browser's default checkbox */
.t_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* On mouse-over, add a grey background color */
.t_checkbox:hover input ~ .checkmark2 {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.t_checkbox input:checked ~ .checkmark2 {
    background-color: #0177bc;
    border: 2px solid #42a2da;
}

/* Show the checkmark when checked */
.t_checkbox input:checked ~ .checkmark2:after {
    display: block;
}

/* Style the checkmark/indicator */
.t_checkbox .checkmark2:after {
    left: 6px;
    top: 1px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* /End table custom_checkbox */

/* The custom_checkbox */
.custom_checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .custom_checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border: 2px solid #0177bc;
}

/* On mouse-over, add a grey background color */
.custom_checkbox:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.custom_checkbox input:checked ~ .checkmark {
    background-color: #0177bc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom_checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom_checkbox .checkmark:after {
    left: 6px;
    top: 1px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.radiobox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .radiobox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.checkmark1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 2px solid #0177bc;
}



.radiobox input:checked ~ .checkmark1 {
    background-color: #0177bc;
}

.checkmark1:after {
    content: "";
    position: absolute;
    display: none;
}

.radiobox input:checked ~ .checkmark1:after {
    display: block;
}

.radiobox .checkmark1:after {
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}
