@use "../../../../styles/abstracts/variables";
@use "../../../../styles/abstracts/mixins";  

.opportunities{
    @include mixins.pageBase;
    &{
        width: 100%;
        overflow-x: hidden;
        background:
        radial-gradient(
        circle at top right,
        rgba(255, 140, 66, 0.05),
        transparent 35%
        ),
        #101012;
    }

     //Tab section
     &__tab{
        background: variables.$col-active-btn-bg;
        border: 1px solid variables.$col-border-lining;
        border-radius: 6px;
        margin-bottom: .8rem;
        display: flex;
        // justify-content: space-between;
        width: 100%;
        padding: .5rem .5rem !important;
        align-items: center;
        font-size: .8rem;
        font-weight: 600;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;
        margin-top: 2rem;

        &--item{
            text-align: center;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            flex: 0 0 170px;
            color: variables.$col-white;

            @media only screen and (max-width: 1000px) {
                flex: 0 0 150px; 
                width: 100%;
                font-size: .75rem;
            }
            &--active{
                background: variables.$col-orange;
                color: variables.$col-dark;
                border-radius: 6px;
                padding: .5rem 1rem;
                cursor: pointer;
                font-size: .85rem;
                font-weight: 600;
                flex: 0 0 170px;
                text-align: center;

                @media only screen and (max-width: 1000px){
                    width: 100%;
                    flex: 0 0 180px; 
                    text-align: center;
                    font-size: .75rem;
                }
            }
        }
    }

    //Content 
    &__content{
        // border: 1px solid variables.$col-border-lining;
        // padding: 1.5rem 1.6rem;
        // border: 1px solid variables.$col-border-lining;
        // background: #19191b;
        border-radius: 10px;
    }
}