ul {
    list-style: none !important;
}
.lcf_container {
    align-items: center;
    justify-content: center;
    border: 1px solid #0865A8;
	border-radius: 10px;
	background-color:#EDF7FF
}

.lcf_container .lcf_row {
    display: flex;
    justify-content: center;
}

#lcf-form {
    width: 92%;
}

.lcf_main_flex_div {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.lcf_form_control {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.lcf_form_control .parsley-required {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 600 !important;
    color: #FF0000 !important;
}

.lcf_form_control>label {
    margin-bottom: 6px;
    font-weight: 600;
    width: 100%;
}

.lcf_form_control>select {
    height: 33px;
    width: 100%;
    padding: 0 !important;
}

.lcf_form_control>input {
    height: 33px !important;
    width: 100% !important;
}

.lcf_form_control>input[type='date'] {
    height: 33px !important;
    width: 100% !important;
}

.lcf_form_control .lcf_required_sign {
    color: rgb(255, 1, 1);
}

.submit_btn_div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.submit_btn_div #submit_form {
    font-size: 1em;
    padding: 10px 15px;
    background-color: #0D86C4 !important;
    border-color: #0D86C4 !important;
    color: #fff !important;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .lcf_main_flex_div {
      display: block;
      margin-top: 0;
    }

    .lcf_form_control {
        margin-top: 6px;
    }
    .lcf_form_control>label {
        margin-bottom: 0;
    }
  }

