.gssb-tabs {
    margin: 32px 0;
}
.gssb-tabs__container {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.gssb-tabs__btn {
    display: block;
    width: 100%;
    font-weight: 500;
    margin: 0 0;
    padding: 17px 23px;
    color: #434343;
    font-family: 'Basis Grotesque';
    font-size: 16px;
    line-height: 26px;
    background-color: #FFF;
    border: 1px solid #171717;
}

@media all and (max-width: 768px){
    .gssb-tabs__btn {
        font-size: 20px;
        line-height: 24px;
    }
}

.gssb-tabs__btn:first-child {
    margin-left: 0;
}

.gssb-tabs__btn:last-child {
    margin-right: 0;
}

.gssb-tabs__icon {
    display: none;
    width: auto;
    height: 14px;
}

.gssb-tabs__btn[aria-selected="true"] {
    color: #FFF;
    background-color: black;
}

.gssb-tabs__btn[aria-selected="true"] .gssb-tabs__icon {
    display: none;
    fill: #FFF;
}

.gssb-tabs-panel {
    display: none;
    margin: 0 0 60px 0;
}

.gssb-tabs-panel[aria-hidden="false"] {
    display: block;
}

.gssb-tabs-panel[aria-hidden="true"] {
    display: none;
}

.gssb-tabs-header {
    position: relative;
    /*padding-bottom: 56px;*/
    padding: 60px 0;
}

/*.gssb-tabs-header::after {*/
    /*content: '';*/
    /*position: absolute;*/
    /*display: block;*/
    /*height: 40px;*/
    /*width: 1px;*/
    /*background-color: #007FC3;*/
    /*bottom: 0;*/
    /*left: calc(50% - 0.5px)*/
/*}*/

.gssb-tabs-header__title {
    margin-bottom: 16px;
    color: #171717;
    font-family: 'GS Sans Condensed';
    font-size: 44px;
    line-height: 44px;
    letter-spacing: -0.6px;
    text-align: left;
    font-weight: 400;
}

.gssb-tabs-header__body {
    color: black;
    font-family: 'Basis Grotesque';
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
}

@media all and (max-width: 768px){
    .gssb-tabs-header__body {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (min-width: 768px) {
    .gssb-tabs {
        margin: 72px 0;
    }

    .gssb-tabs-header {
        max-width: 75%;
        padding: 120px 0 60px;
        /*padding-bottom: 78px;*/
    }

    .gssb-tabs-header::after {
        height: 60px;
    }

    .gssb-tabs-header__title {
        margin-bottom: 20px;
        font-size: 64px;
        line-height: 64px;
        letter-spacing: -0.6px;
        text-align: left;
    }

    .gssb-tabs-header__body {
        font-size: 20px;
        line-height: 30px;
        text-align: left;
    }
}

@media screen and (min-width: 992px) {

    .gssb-tabs__container {
        max-width: 649px;
        margin: 0 auto;
    }

    .gssb-tabs__btn {
        margin: 0 1px;
        padding: 16px 24px;
        font-size: 20px;
        line-height: 24px;
    }

    .gssb-tabs__panel {
        display: block;
        margin: 0 0 80px 0;
    }

}