.left_one {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.left_one_div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 40px;
    gap: 20px;
}

.left_one_div a {
    color: #a2a1a1dc;
    text-decoration: none;
}

.hold_the_right {
    background: #ff9b00;
    width: 65vw;
    border-radius: 4px;
    height: 630px;
    margin-bottom: 15px;
}

.profile-con {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.hold_the_left {
    width: 30vw;
}

.small_field_input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.small_field {
    width: 330px;
    height: 50px;
    outline: none;
    border: none;
    border-radius: 4px;
}

.small_field::placeholder {
    font-size: 15px;
}

.right_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.hold_small_input {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.big_field {
    width: 100%;
    height: 50px;
    outline: none;
    border: none;
    border-radius: 4px;    
}

.big_field::placeholder {
    font-size: 15px;
}

.big_field_input {
    width: 90%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.save_but {
    padding: 16px 48px 16px 48px;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    background: #ff7800;
    color: white;
    cursor: pointer;
}

.cancel_but {
    padding: 16px 48px 16px 48px;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    background: transparent;
    color: black;
    cursor: pointer;
}

.thebbus {
    display: flex;
    margin-top: 20px;
    width: 90%;
    justify-content: end;
}

.profile_roadmap_line {
    width: 100%;
    border-bottom: 0px;
    border-style: solid;
}

.profile_roadmap {
    width: 100%;
    /*display: flex;*/
    /*flex-direction: column;*/
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.profile_roadmap::-webkit-scrollbar {
  display: none; 
}

.stt {
    /*display: flex;*/
    width: 100%;
    flex-direction: row;
    gap: 10px;
}

@media (max-width: 576px) {
    .hold_the_right {
        width: 100%;
    }
    .profile-con {
        flex-direction: column;
    }
    .hold_the_left {
        width: 100%;
    }
}