.content-section {
  min-height: 2000px;
}

.sidebar-section {
  position: absolute;
  height: 100%;
  width: 100%;
}

.sidebar-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Position the items */
}

.make-me-sticky {
  position: sticky;
  top: 0;
  padding: 0 15px;
}


.form_section-header {
    padding-top: 40px;
    padding-bottom: 40px;
}

.form-container {
    border-left: 1px solid #dedede;
}

.form-container p {
    color: #919191;
    font-size: 16px;
    margin-top: 10px;
}

.container-header h5 {
    font-size: 24px;
    color: #F26635;
    font-weight: bolder;
    text-transform: capitalize;
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}

.container-header h5:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 20px;
    background: #60327A;
    left: 0px;
    top: 4px;
}

.form-header {
    border-bottom: 1px solid #c7c7c7;
}

.form-header h5 {
    color: #60327A;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: capitalize;
}
.form-header h5.sub-head {
    color: #60327A;
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: 25px;
    font-weight: 600;
    text-transform: capitalize;
}
.upload-element {
    display: flex;
    margin-bottom: 20px;
}

.upload-element img {
    width: 100px;
    height: 100px;
}

.upload-info {
    margin-left: 5px;
    background: #f5f5f5;
    width: 100%;
    padding: 10px 10px;
}

.upload-info h6 {
    color: black;
    font-weight: 700;
    font-size: 14px;
}

.upload-info p {
    color: #9d9d9d;
    font-size: 15px;
    margin: 0px;
}

.upload-info button {
    outline: none;
    border: none;
    background: none;
    margin-top: 10px;
    padding: 0px;
    font-size: 15px;
    color: #F26635;
    cursor: pointer;
}

.form-fields {}

.form-fields .form-elements {
    margin-bottom: 15px;
}

.form-fields .form-elements label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-transform: capitalize;
}

.form-fields .form-elements input.form-input {
    display: block;
    background: #f3f3f3;
    border-radius: 50px;
    padding: 7px 15px;
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
}

.form-fields .form-elements select.select-input {
    display: block;
    background-color: #f3f3f3 !important;
    border-radius: 50px;
    padding: 7px 15px;
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    height: auto;
    color: #3f3f3f !important;
}

.form-fields .form-elements .form-validations {
    font-size: 13px;
    font-weight: 300 !important;
}

.file-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.file-input {
    display: none;
}

.file-label {
    display: inline-block;
    background: #f3f3f3;
    border-radius: 50px;
    padding: 7px 15px;
    cursor: pointer;
    color: #555 !important;
    transition: 0.2s;
    font-size: 14px !important;
    font-weight: 300 !important;
    width: 300px;
    margin-bottom: 0px;
}

.file-label:hover {
    background: #eaeaea;
}

.file-name {
    color: #b7b7b7;
    font-size: 14px;
    font-weight: 100;
}

.form-fields .form-elements .location-wrapper {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 10px 20px;
}

.form-fields .form-elements .location-wrapper p {
    margin: 10px 0px;
}

.form-fields .form-elements .location-wrapper .location-chip {
    background: #e7e7e7;
    font-size: 14px;
    padding: 5px 20px;
    border-radius: 50px;
    color: #515151;
    font-weight: 100;
    margin-bottom: 13px;
    display: inline-block;
    cursor: pointer;
}

.form-fields hr {
    background: #dedede;
    width: 100%;
    height: 1px !important;
}

.form-fields button {
    background: #f26635;
    float: right;
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 4px 20px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

/* Stepper CSS */
.stepper {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.stepper li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #c1bfc7;
    font-size: 18px;
    font-weight: 300;
    position: relative;
}
.stepper li a {
    color: #60327A;
    font-size: 18px;
    font-weight: 300;
}

.stepper li::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid #60327A;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    background: #fff;
    position: relative;
    z-index: 2;
}

.stepper li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 24px;
    width: 2px;
    height: 100%;
    background: #e0dfe6;
    z-index: 1;
}

.stepper li:last-child::after {
    display: none;
}

.stepper li.active a{
    color: #000;
    font-weight: bold;
}
.stepper li.active::before {
    background: #f26635;
}

/*.stepper li.active::before {
    content: "✔";
    color: #ef6536;
    border: 2px solid #6b34c4;
    background: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.stepper li.active::before {
    background: #fff;
    border: 2px solid #6b34c4;
    box-shadow: inset 0 0 0 4px white;
}*/

/* Profile CSS */

.upload-element .user-data{
    margin-left: 20px;
}

.upload-element .user-data h6{
	font-size: 18px;
    color: #6b34c4;
    font-weight: 700;
    display: block;
    margin-bottom: 0px;
}
.upload-element .user-data ul{
    display: flex;
    padding-left: 14px;
    margin: 6px 0px;
}
.upload-element .user-data ul li{
    color: #7e7e7e;
    font-size: 16px;
    margin-right: 30px;
    font-weight: 600;
}
.upload-element .user-data ul li.user-link {
    color: #6b34c4;
    font-weight: 200;
    cursor: pointer;
}
.upload-element .user-data ul li i:before{
    font-size: 15px;
    padding-right: 8px;
}
.upload-element .user-data ul li i.fa.fa-envelope {
    padding-right: 0px;
}

.form-container hr{
    background: #dedede;
    width: 100%;
    height: 1px !important;
}

.text-orange{
    color: #f26635!important;
}

span.user-chip-data {
    background: #f3f3f3;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 15px;
    color: #373737;
    cursor: pointer;
}
.user-info {
    margin-bottom: 25px;
}

.user-info label{
    color: #f26635;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
}
.user-info p{
    margin: 0;
    color: #595959;
}

.user-info ul {
    padding-left: 18px;
}

.user-info ul li {
    font-size: 15px;
    color: #595959;
    margin-bottom: 5px;
}

.form-container button.btn-career{
    background: #f26635;
    float: right;
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 4px 20px;
    color: white;
    cursor: pointer;
}



@media (max-width: 575.98px) {
    .section_expert-pet img.dog_pet {
        display: none;
    }
    .content-expert-1 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
	.section_expert-pet {
        background: linear-gradient(109deg, #F26635 76%, #FFFFFF 60%);
    }
	.content-expert-2 {
        padding-left: 20px !important;
    }
}