/* profile.css */
.dl_2deck_bold {
    margin: 0 0 32px;
    padding: 0 0 32px;
    border-bottom: 1px dotted #ccc;
}
.dl_2deck_bold dt {
    position: relative;
    flex: 0 0 8rem; /* https://coliss.com/articles/build-websites/operation/css/making-width-and-flexible-items.html */
}
.dl_2deck_bold dt::after {
    position: absolute;
    top: 18px;
    left: 0;
    z-index: -10;
    content: "";
    width: 6rem;
    border-bottom: 2px solid rgba(239, 0, 128, .6);
}
.dl_2deck_label {
    /*position: absolute;
    left: 2px;
    z-index: 100;*/
    width: 6rem;
}
@media screen and (min-width: 768px) {
    .heading_bot_green::after {
        width: 28rem;
    }  
}
@media screen and (max-width: 767px) {
    .heading_bot_green::after {
        width: 80vw;
    }  
}
