#nc-tabbed-content {
    border: 1px solid #e5f2f4;
}
.nc-tabs {
    display: flex;

    .nc-tabbed-content__tab {
        cursor: pointer;
        padding: 1em 1em 0.25em;
        text-align: center;
        font-weight: bold;
        display: flex;
        flex-direction: column;
        flex: 1 1 0;
        justify-content: flex-end;

        img {
            display: block;
            max-width: 125px;
            height: auto;
            left: 50%;
            transform: translateX(-50%);
            position: relative;
        }

        span {
            display: block;
            padding-bottom: 1.25em;
            border-bottom: 3px solid transparent;
        }

        &.active {
            background-color: #ecf2f4;

            span {
                border-bottom-color: #204f7d;
            }
        }
    }
}
.nc-tabbed-content__content {
    background-color: #ecf2f4;

    > div {
        display: none;
        padding: 1em;

        &.active {
            display: block;
        }
    }
}
@media (max-width: 768px) {
    .nc-tabs {
        flex-direction: column;
    }
}
