.habo-addon.habo-business-plan-widget-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.habo-addon > .tab-content {
    padding-top: 0;
    padding-bottom:0;
    padding-left:60px;
    padding-right:60px;
    opacity: 0;
    max-height: 0;
    overflow:hidden;
    border-left: 1px solid black;
    transition:padding-top 0.4s ease, padding-bottom 0.4s ease, opacity 0.4s ease, max-height 0.4s ease;
}

.habo-addon > .tab-content.active {
    padding-top: 20px;
    padding-bottom: 20px;
    opacity: 1;
    max-height: 999px;
}

.habo-addon.habo-business-plan-tab {
    position: relative;
    width: 70%;
}

.habo-addon.habo-business-plan-tab h3{
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 35px;
}

.habo-addon.habo-business-plan-button {
    position: relative;
    width: 30%;
    display:flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: flex-start;
}


nav.habo-addon.habo-business-plan-button>button {
    border: none;
    color: inherit;
    background: none;
    position:relative;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
    padding-right:30px;
    
    transition:all 0.1s ease;
}


nav.habo-addon.habo-business-plan-button>button:hover,
nav.habo-addon.habo-business-plan-button>button.active{
    font-weight:500;
    padding-right:5px;
}

nav.habo-addon.habo-business-plan-button>button:focus{
    outline:none;
}

nav.habo-addon.habo-business-plan-button>button:before{
    content:"";
    display:inline-block;
    height:2px;
    background:black;
    margin-bottom:4px;
    margin-right:5px;
    width:0;
    transition:width 0.1s ease;

}

nav.habo-addon.habo-business-plan-button>button:hover:before,
nav.habo-addon.habo-business-plan-button>button.active:before {
    width:20px;
}


@media screen and (max-width:767px){
    .habo-addon.habo-business-plan-widget-wrapper{
        flex-direction:column;
    }

    .habo-addon.habo-business-plan-button {
        width:100%;
    }

    .habo-addon > .tab-content{
        padding:0;
        border:none;
    }

    .habo-addon > .tab-content.active{
        padding-top:20px;
    }
}